17 lines
566 B
TypeScript
17 lines
566 B
TypeScript
import { icons } from "#/assets/icons";
|
|
import Image from "next/image";
|
|
|
|
export default function Header() {
|
|
return(
|
|
<div className="w-full bg-white shadow-md py-4">
|
|
<div className="container mx-auto text-center flex items-center justify-center gap-2">
|
|
<Image
|
|
src={icons.logo}
|
|
alt="Private Docs"
|
|
className="text-red-500 h-auto"
|
|
/>
|
|
<p className="text-2xl font-bold text-black">Private Docs</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |