From ef0ba876e0184b462b5bb880f8b2fdf0adc4ee78 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:47:36 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9342aae..d883453 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,32 +13,32 @@ import FooterBase from "@/components/sections/footer/FooterBase"; export default function HomePage() { const navItems = [ - { name: "Tuis", id: "/" }, - { name: "Oor Mij", id: "/about" }, - { name: "Dienste", id: "/services" }, - { name: "Kontak", id: "/contact" }, + { name: "Home", id: "/" }, + { name: "About Me", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Vinnige Skakels", items: [ - { label: "Tuis", href: "/" }, - { label: "Oor My", href: "/about" }, - { label: "Dienste", href: "/services" }, - { label: "Kontak", href: "/contact" }, + title: "Quick Links", items: [ + { label: "Home", href: "/" }, + { label: "About Me", href: "/about" }, + { label: "Services", href: "/services" }, + { label: "Contact", href: "/contact" }, ], }, { - title: "Kontak", items: [ - { label: "Bel: 082 452 9260", href: "tel:0824529260" }, + title: "Contact", items: [ + { label: "Call: 082 452 9260", href: "tel:0824529260" }, { label: "16 Malva Rd, Dana Bay", href: "#" }, - { label: "Mosselbaai, 6510", href: "#" }, + { label: "Mossel Bay, 6510", href: "#" }, ], }, { - title: "Beleid", items: [ - { label: "Privacybeleid", href: "#" }, - { label: "Voorwaardes", href: "#" }, + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms", href: "#" }, ], }, ]; @@ -50,7 +50,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="mediumLargeSizeLargeTitles" - background="blurBottom" + background="aurora" cardStyle="gradient-bordered" primaryButtonStyle="gradient" secondaryButtonStyle="glass" @@ -64,7 +64,7 @@ export default function HomePage() { @@ -91,7 +91,7 @@ export default function HomePage() {
Date: Tue, 3 Mar 2026 11:47:37 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 56cdadc..6fdaaa8 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #fbfaff;; - --card: #f7f5ff;; - --foreground: #0f0022;; - --primary-cta: #8b5cf6;; + /* --background: #f0f5f0;; + --card: #e8eff0;; + --foreground: #1a3a2a;; + --primary-cta: #2d7a6f;; --secondary-cta: #ffffff;; - --accent: #d8cef5;; - --background-accent: #c4a8f9;; */ + --accent: #a8d4cc;; + --background-accent: #7fb8ad;; */ - --background: #fbfaff;; - --card: #f7f5ff;; - --foreground: #0f0022;; - --primary-cta: #8b5cf6;; - --primary-cta-text: #fbfaff;; + --background: #f0f5f0;; + --card: #e8eff0;; + --foreground: #1a3a2a;; + --primary-cta: #2d7a6f;; + --primary-cta-text: #ffffff;; --secondary-cta: #ffffff;; - --secondary-cta-text: #0f0022;; - --accent: #d8cef5;; - --background-accent: #c4a8f9;; + --secondary-cta-text: #1a3a2a;; + --accent: #a8d4cc;; + --background-accent: #7fb8ad;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1