From 184fbcfce63de54b93afa631b2952935889ba651 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 30 Jun 2026 20:46:15 +0000 Subject: [PATCH] fix: use plain for hero+icon, beige body bg, image drives section height Co-Authored-By: Claude Sonnet 4.6 --- app/components/Hero.tsx | 31 ++++++++++--------------------- app/globals.css | 13 +++---------- 2 files changed, 13 insertions(+), 31 deletions(-) diff --git a/app/components/Hero.tsx b/app/components/Hero.tsx index e33cdc1..b43c0e1 100644 --- a/app/components/Hero.tsx +++ b/app/components/Hero.tsx @@ -9,10 +9,10 @@ const avatars = [ export function Hero() { return ( -
+
{/* Left: text content */} -
+

Starte mit der 7-Tage-Challenge - + {/* eslint-disable-next-line @next/next/no-img-element */} +

@@ -50,12 +45,7 @@ export function Hero() { className="relative w-[2.8125rem] h-[2.8125rem] rounded-full overflow-hidden border-2 border-[#f5f0e8] shrink-0" style={{ marginLeft: i === 0 ? 0 : "-0.625rem" }} > - {avatar.alt} + {avatar.alt}
))} @@ -65,14 +55,13 @@ export function Hero() { - {/* Right: hero image — self-stretch fills full section height */} -
- + {/* eslint-disable-next-line @next/next/no-img-element */} + Notizbuch mit Tagesplan und Kaffee
diff --git a/app/globals.css b/app/globals.css index a2dc41e..5d16751 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,8 +1,8 @@ @import "tailwindcss"; :root { - --background: #ffffff; - --foreground: #171717; + --background: #f5f0e8; + --foreground: #222221; } @theme inline { @@ -12,15 +12,8 @@ --font-mono: var(--font-geist-mono); } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - body { background: var(--background); color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; + font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif; }