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,17 @@
"use client";
import Logo from '@/components/Header/Logo';
import Menu from '@/components/Header/Menu';
export default function Header(props: any) {
return (
<header>
{props.name} {props.age} {props.isMan ? 'is a man' : 'is a woman'}
<Logo />
<div>Header item</div>
<Menu {...props} />
</header>
);
}