add HeroSection component

This commit is contained in:
2026-04-15 10:59:05 +02:00
parent 59973de815
commit e77fb4a1f2
7 changed files with 48 additions and 9 deletions
+7 -5
View File
@@ -1,7 +1,9 @@
import HeroSection from "@/components/sections/HeroSection";
export default function Home() {
return (
<main className="min-h-screen bg-brand-beige text-brand-black flex items-center justify-center">
<h1 className="font-serif text-6xl">Hello World</h1>
</main>
);
return (
<main className=" bg-brand-beige text-brand-black flex items-center justify-center">
<HeroSection />
</main>
);
}