diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a44f642..a5b28ce 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -30,8 +30,11 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Stats", id: "/#stats" }, + { name: "Trust", id: "/#social-proof" }, { name: "Testimonials", id: "/#testimonials" }, { name: "Contact", id: "/#contact" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" } ]} brandName="Superkot" bottomLeftText="The Legend, The Myth" diff --git a/src/app/page.tsx b/src/app/page.tsx index 8efc8f1..c6fb654 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; @@ -34,8 +35,11 @@ export default function SitePage() { { name: 'Home', id: 'hero' }, { name: 'About', id: 'about' }, { name: 'Stats', id: 'stats' }, + { name: 'Trust', id: 'social-proof' }, { name: 'Testimonials', id: 'testimonials' }, { name: 'Contact', id: 'contact' }, + { name: 'Blog', id: '/blog' }, + { name: 'Shop', id: '/shop' } ]} brandName="Superkot" bottomLeftText="The Legend, The Myth" @@ -140,6 +144,16 @@ export default function SitePage() { /> +
+