forked from veda/www_veda_2025
OK
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -35,7 +35,6 @@ export default function Home() {
|
||||
<Route />
|
||||
<CnnVideo />
|
||||
<Testimonials />
|
||||
<CallToAction3 />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user