diff --git a/src/app/page.tsx b/src/app/page.tsx index 2b2c165..4e0396c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,9 +12,13 @@ import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function Page() { - const navItems = [{ name: "Home", id: "/" }]; + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; return ( - + @@ -40,7 +44,7 @@ export default function Page() {
- +