diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a2b8a44..6ea7659 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,11 +29,11 @@ export default function BlogPage() { brandName="Clear Page" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Clients", id: "clients" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/#about" }, + { name: "Services", id: "/#services" }, + { name: "Clients", id: "/#clients" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, ]} /> @@ -61,22 +61,22 @@ export default function BlogPage() { columns={[ { title: "Services", items: [ - { label: "Branding", href: "#features" }, - { label: "Web Design", href: "#features" }, - { label: "UX/UI", href: "#features" }, - { label: "Marketing Assets", href: "#features" }, + { label: "Branding", href: "/#services" }, + { label: "Web Design", href: "/#services" }, + { label: "UX/UI", href: "/#services" }, + { label: "Marketing Assets", href: "/#services" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Clients", href: "#clients" }, - { label: "FAQ", href: "#faq" }, + { label: "About Us", href: "/#about" }, + { label: "Clients", href: "/#clients" }, + { label: "FAQ", href: "/#faq" }, ], }, { title: "Connect", items: [ - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "/#contact" }, { label: "LinkedIn", href: "https://linkedin.com/company/clearpage" }, ], }, diff --git a/src/app/page.tsx b/src/app/page.tsx index e688131..2dc0e41 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,7 +43,7 @@ export default function LandingPage() { -