feat: migrate header component

This commit is contained in:
ArraysID
2025-04-27 05:28:37 +07:00
parent 53b069f242
commit b4708ab2aa
9 changed files with 196 additions and 20 deletions
+5 -5
View File
@@ -1,10 +1,10 @@
import { Button } from '@imphnen-frontend-service/shadcn-ui/atoms';
import { Header } from './_components/header';
export default function Page() {
return (
<>
<h1 className="text-2xl underline">Hello World</h1>
<Button>Click Me</Button>
</>
<div className="flex min-h-screen flex-col">
<Header />
<main className="flex-1"></main>
</div>
);
}