This commit is contained in:
2025-08-22 19:33:22 +02:00
parent 7ab3b60462
commit 3f6c4025b0
19 changed files with 89 additions and 59 deletions

View File

@@ -1,4 +1,4 @@
import { Inter, Lexend } from 'next/font/google'
import { Inter, Lexend, Vollkorn } from 'next/font/google'
import clsx from 'clsx'
import '@/styles/tailwind.css'
@@ -24,17 +24,24 @@ const lexend = Lexend({
variable: '--font-lexend',
})
const vollkorn = Vollkorn({
subsets: ['latin'],
display: 'swap',
variable: '--font-vollkorn',
})
export default function RootLayout({ children }) {
return (
<html
lang="en"
className={clsx(
'h-full scroll-smooth bg-sand antialiased',
'h-full scroll-smooth bg-bg-sand antialiased',
inter.variable,
lexend.variable,
vollkorn.variable,
)}
>
<body className="flex h-full flex-col pt-20 bg-sand">{children}</body>
<body className="flex h-full flex-col pt-20 bg-bg-sand">{children}</body>
</html>
)
}

View File

@@ -35,7 +35,6 @@ export default function Home() {
<Route />
<CnnVideo />
<Testimonials />
<CallToAction3 />
</main>
<Footer />
</>