This commit is contained in:
2025-06-24 14:10:07 +02:00
parent bad56dd4de
commit f1e02693cf
55 changed files with 7325 additions and 1 deletions

45
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,45 @@
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 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,
}: {
children: React.ReactNode
}) {
return (
<html
lang="en"
className={clsx(
'h-full scroll-smooth bg-white antialiased',
inter.variable,
lexend.variable,
)}
>
<body className="flex h-full flex-col">{children}</body>
</html>
)
}