first commit

This commit is contained in:
2024-08-23 19:17:13 +00:00
commit d6df9f205a
23 changed files with 6009 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
"use client";
export default function Menu({name} : any) {
return (
<div>
{name}
<div>Menu</div>
</div>
);
}