diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6561257..feacb3c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,5 +1,4 @@
import { type Metadata } from 'next'
-import { Inter } from 'next/font/google'
import clsx from 'clsx'
import '@/styles/tailwind.css'
@@ -13,11 +12,10 @@ export const metadata: Metadata = {
'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',
-})
+// Avenir font configuration with fallbacks
+const avenir = {
+ variable: '--font-avenir',
+}
export default function RootLayout({
children,
@@ -29,7 +27,7 @@ export default function RootLayout({
lang="en"
className={clsx(
'h-full scroll-smooth bg-white antialiased',
- inter.variable,
+ avenir.variable,
)}
>
{children}
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index e3c2aae..19b673e 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -84,7 +84,7 @@ function MobileNavigation() {
export function Header() {
return (
-
+