forked from veda/www_veda_2025
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			868 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			868 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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 don’t 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-creme-600 antialiased',
 | 
						||
        inter.variable,
 | 
						||
        lexend.variable,
 | 
						||
      )}
 | 
						||
    >
 | 
						||
      <body className="flex h-full flex-col">{children}</body>
 | 
						||
    </html>
 | 
						||
  )
 | 
						||
}
 |