From 579eafa82d00e2ce60a9405b2e92145f512628d5 Mon Sep 17 00:00:00 2001 From: v0 Date: Fri, 12 Sep 2025 15:56:43 +0000 Subject: [PATCH] fix: resolve CSS and hero image discrepancies Fix wrong hero image and CSS compilation issues in production. Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com> --- app/globals.css | 7 ++----- app/page.tsx | 8 ++++---- components.json | 2 +- components/ui/button.tsx | 38 +++++++++++++++++++------------------- components/ui/card.tsx | 38 +++++++++++++++++++------------------- lib/utils.ts | 4 ++-- 6 files changed, 47 insertions(+), 50 deletions(-) diff --git a/app/globals.css b/app/globals.css index 0e832e7..4a56343 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,8 +1,6 @@ @import "tailwindcss"; @import "tw-animate-css"; -@custom-variant dark (&:is(.dark *)); - :root { --font-inter: var(--font-inter); --font-playfair: var(--font-playfair); @@ -119,10 +117,9 @@ @layer base { * { - border-color: var(--color-border); + @apply border-border outline-ring/50; } body { - background-color: var(--color-background); - color: var(--color-foreground); + @apply bg-background text-foreground; } } diff --git a/app/page.tsx b/app/page.tsx index 151292b..5e207e9 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -204,25 +204,25 @@ export default function HomePage() {