Monelia-Nails/src/app/components/header.tsx

22 lines
578 B
TypeScript

import Image from "next/image"
import Link from "next/link"
const Header = () => {
return (
<header className='grid grid-cols-[1fr_auto_1fr]'>
<div className="flex h-[50px] gap-4 pl-8 my-auto">
<Image src={'/Ryo.png'} alt={"Ryo"} width={40} height={50} />
<Image src={'/Kiki.png'} alt={"Ryo"} width={40} height={50} />
</div>
<div className='my-auto text-2xl'>
Monelia Nails
</div>
<div>
</div>
</header>
)
}
export default Header