From 702b7e384de65c0c5d9ad8933860ae50ae805c80 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Wed, 21 Jan 2026 13:28:54 +0100 Subject: [PATCH] [dyad] Fixing server error by correcting font configuration - wrote 3 file(s) --- src/app/layout.tsx | 2 +- src/app/page.tsx | 2 +- tailwind.config.ts | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 69f7f33..12ec196 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -18,7 +18,7 @@ export default function RootLayout({ return ( +
diff --git a/tailwind.config.ts b/tailwind.config.ts index 8358a3a..d648068 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -9,6 +9,10 @@ export default { ], theme: { extend: { + fontFamily: { + sans: ["var(--font-geist-sans)"], + mono: ["var(--font-geist-mono)"], + }, colors: { background: 'hsl(var(--background))', foreground: 'hsl(var(--foreground))', @@ -91,4 +95,4 @@ export default { } }, plugins: [require("tailwindcss-animate")], -} satisfies Config; +} satisfies Config; \ No newline at end of file