fix: resolve CSS mismatch in production build

Remove duplicate CSS files and correct font mappings.

Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
v0 2025-09-03 09:46:38 +00:00
parent a829ec97cd
commit 692f732854
1 changed files with 3 additions and 7 deletions

View File

@ -37,10 +37,9 @@
--sidebar-accent-foreground: oklch(0.205 0 0); --sidebar-accent-foreground: oklch(0.205 0 0);
--sidebar-border: oklch(0.922 0 0); --sidebar-border: oklch(0.922 0 0);
--sidebar-ring: oklch(0.708 0 0); --sidebar-ring: oklch(0.708 0 0);
--font-inter: "Inter", sans-serif; /* Fixed font variables to match actual loaded fonts */
--font-playfair: "Playfair Display", serif;
--font-geist-mono: "Geist Mono", monospace;
--font-geist-sans: "Geist Sans", sans-serif; --font-geist-sans: "Geist Sans", sans-serif;
--font-geist-mono: "Geist Mono", monospace;
} }
.dark { .dark {
@ -79,10 +78,7 @@
} }
@theme inline { @theme inline {
/* Updated font variables to use new stylish fonts */ /* optional: --font-sans, --font-serif, --font-mono if they are applied in the layout.tsx */
--font-sans: var(--font-geist-sans);
--font-serif: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-background: var(--background); --color-background: var(--background);
--color-foreground: var(--foreground); --color-foreground: var(--foreground);
--color-card: var(--card); --color-card: var(--card);