From bf2aba414006256ef24b175cbb1dc9b89f2c6940 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 17:07:24 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d65a496..d83ec80 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -225,14 +225,14 @@ export default function LandingPage() { columns={[ { title: "Producten", items: [ - { label: "Airconditioners", href: "#products" }, - { label: "Waterpompen", href: "#products" }, - { label: "Onderhoud", href: "#faq" }, + { label: "Airconditioners", href: "products" }, + { label: "Waterpompen", href: "products" }, + { label: "Onderhoud", href: "faq" }, ], }, { title: "Bedrijf", items: [ - { label: "Over ons", href: "#about" }, + { label: "Over ons", href: "about" }, { label: "Careers", href: "#" }, { label: "Contacteer ons", href: "contact" }, ], @@ -249,4 +249,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 139e11cd70959d6b223c7ce3fa025fc2eca26a51 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 17:07:25 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index ee8d361..9186c1e 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; + --background: #fafffb; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #159c49; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #ffffff; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1