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} /> 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 ( - +