import { type Metadata } from 'next' import { Inter, Lexend } from 'next/font/google' import clsx from 'clsx' import '@/styles/tailwind.css' export const metadata: Metadata = { title: { template: '%s - TaxPal', default: 'TaxPal - Accounting made simple for small businesses', }, 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, }: { children: React.ReactNode }) { return ( {children} ) }