diff --git a/app/components/Hero.tsx b/app/components/Hero.tsx index 72c343b..df74c39 100644 --- a/app/components/Hero.tsx +++ b/app/components/Hero.tsx @@ -1,65 +1,74 @@ import Link from "next/link"; import Image from "next/image"; +const avatars = [ + { src: "/avatar-1.jpg", alt: "Nutzer 1" }, + { src: "/avatar-2.jpg", alt: "Nutzer 2" }, + { src: "/avatar-3.jpg", alt: "Nutzer 3" }, +]; + export function Hero() { return ( -
+
+ {/* Left: text content */} -
+
+ {/* Heading */}

- Produktivität -
- darf sich leicht -
- anfühlen. + Produktivität darf sich leicht anfühlen + .

{/* Subheading */} -

- Für Menschen mit Familie, -
- Verantwortung und zu wenig Zeit +

+ Für Menschen mit Familie, Verantwortung und zu wenig Zeit

- {/* CTA button */} + {/* CTA */} Starte mit der 7-Tage-Challenge - + {/* Social proof */} -
-
- {[ - { bg: "#c8a882", label: "Person 1" }, - { bg: "#a0785a", label: "Person 2" }, - { bg: "#8b6b5a", label: "Person 3" }, - ].map((a) => ( +
+
+ {avatars.map((avatar, i) => (
+ key={avatar.src} + className="w-[2.8125rem] h-[2.8125rem] rounded-full overflow-hidden border-2 border-[#f5f0e8]" + style={{ marginLeft: i === 0 ? 0 : "-0.5rem" }} + > + {avatar.alt} +
))}
-

- 10.000+ Menschen vertrauen -
- einfach-produktiv +

+ 10.000+ Menschen vertrauen einfach-produktiv

{/* Right: hero image */} -
+
Notizbuch mit Tagesplan und Kaffee
+
); } diff --git a/app/components/Navbar.tsx b/app/components/Navbar.tsx index 3b55018..87bbc3b 100644 --- a/app/components/Navbar.tsx +++ b/app/components/Navbar.tsx @@ -1,4 +1,5 @@ import Link from "next/link"; +import Image from "next/image"; const navLinks = [ { label: "Werkzeuge", href: "/werkzeuge" }, @@ -9,43 +10,27 @@ const navLinks = [ export function Navbar() { return ( -
-
+
+
- {/* Logo */} - - - {/* Brush stroke SVG background */} - - - einfach produktiv - - - - Weil du auch noch ein Leben hast - + {/* Logo — exported directly from Figma */} + + einfach produktiv {/* Nav links */} -