From b1e171c1203b446bc48d8ab171bdcb47772fb86f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 12:43:06 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 64ad731..66db872 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -62,7 +62,6 @@ export default function ContactPage() { } ]} ariaLabel={"Contact Hero section"} - useInvertedBackground={false} /> From b726aba7c0fa30886910be12a634132a6aa96ab1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 12:43:07 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d90cbd7..dbc45e3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,15 +8,23 @@ import { Scale, Briefcase, ArrowRight } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Home", id: "home", href: "/" }, - { name: "About Us", id: "about", href: "/about" }, - ]; - - const themeProps = { - defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "background-highlight", borderRadius: "soft", contentWidth: "smallMedium", sizing: "mediumSizeLargeTitles", background: "grid", cardStyle: "inset", primaryButtonStyle: "double-inset", secondaryButtonStyle: "solid", headingFontWeight: "light"}; + { name: "Home", href: "/" }, + { name: "About Us", href: "/about" } + ].map(item => ({ ...item, id: item.href })); return ( - +