Files
www_veda_2025/src/app/layout.jsx
2025-08-20 16:18:35 +02:00

41 lines
874 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Inter, Lexend } from 'next/font/google'
import clsx from 'clsx'
import '@/styles/tailwind.css'
export const metadata = {
title: {
template: '%s - VEDA',
default: 'VEDA EGYPT NILE CRUISES',
},
description:
'Most bookkeeping software is accurate, but hard to use. We make the opposite trade-off, and hope you dont get audited.',
}
const inter = Inter({
subsets: ['latin'],
display: 'swap',
variable: '--font-inter',
})
const lexend = Lexend({
subsets: ['latin'],
display: 'swap',
variable: '--font-lexend',
})
export default function RootLayout({ children }) {
return (
<html
lang="en"
className={clsx(
'h-full scroll-smooth bg-[#FEFFF6] antialiased',
inter.variable,
lexend.variable,
)}
>
<body className="flex h-full flex-col pt-20">{children}</body>
</html>
)
}