add avenirr

This commit is contained in:
2025-07-09 15:59:16 +02:00
parent 1783367528
commit c292544cbb
3 changed files with 44 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
import { type Metadata } from 'next'
import { Inter, Lexend } from 'next/font/google'
import { Inter } from 'next/font/google'
import clsx from 'clsx'
import '@/styles/tailwind.css'
@@ -10,7 +10,7 @@ export const metadata: Metadata = {
default: 'OurWorld - 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.',
'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({
@@ -19,12 +19,6 @@ const inter = Inter({
variable: '--font-inter',
})
const lexend = Lexend({
subsets: ['latin'],
display: 'swap',
variable: '--font-lexend',
})
export default function RootLayout({
children,
}: {
@@ -36,7 +30,6 @@ export default function RootLayout({
className={clsx(
'h-full scroll-smooth bg-white antialiased',
inter.variable,
lexend.variable,
)}
>
<body className="flex h-full flex-col">{children}</body>