add HeroSection component
This commit is contained in:
@@ -24,7 +24,7 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="fr" className={`${playfairDisplay.variable} ${inter.variable} bg-brand-beige m-[11px] antialiased`}>
|
||||
<html lang="fr" className={`${playfairDisplay.variable} ${inter.variable} bg-brand-beige m-2.75 overflow-auto antialiased`}>
|
||||
<body className="min-h-screen flex flex-col bg-brand-beige text-brand-brown">
|
||||
<Header />
|
||||
{children}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user