feat: migrate hero component

This commit is contained in:
ArraysID
2025-04-27 05:35:49 +07:00
parent b4708ab2aa
commit 206a426120
6 changed files with 210 additions and 3 deletions
+4 -1
View File
@@ -1,10 +1,13 @@
import { Header } from './_components/header';
import { Hero } from './_components/hero';
export default function Page() {
return (
<div className="flex min-h-screen flex-col">
<Header />
<main className="flex-1"></main>
<main className="flex-1">
<Hero />
</main>
</div>
);
}