diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index efbd075..012128f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -26,7 +26,8 @@ export default function ContactPage() { navItems={[ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" }, - { name: "Transit Guarantee", id: "/the-sir-james-transit-guarantee" }, + { name: "Shipment Specs", id: "/#specs" }, + { name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Contact", id: "/contact" }, ]} brandName="Sir James Delivery" diff --git a/src/app/how-it-works/page.tsx b/src/app/how-it-works/page.tsx index ee898b5..4b573b6 100644 --- a/src/app/how-it-works/page.tsx +++ b/src/app/how-it-works/page.tsx @@ -26,7 +26,8 @@ export default function HowItWorksPage() { navItems={[ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" }, - { name: "Transit Guarantee", id: "/the-sir-james-transit-guarantee" }, + { name: "Shipment Specs", id: "/#specs" }, + { name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Contact", id: "/contact" }, ]} brandName="Sir James Delivery" diff --git a/src/app/page.tsx b/src/app/page.tsx index 68dd055..99d6abe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,7 +29,8 @@ export default function LandingPage() { navItems={[ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" }, - { name: "Transit Guarantee", id: "/the-sir-james-transit-guarantee" }, + { name: "Shipment Specs", id: "#specs" }, + { name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Contact", id: "/contact" }, ]} brandName="Sir James Delivery" diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 439ac1c..82abd92 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -26,7 +26,8 @@ export default function ServicesPage() { navItems={[ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" }, - { name: "Transit Guarantee", id: "/the-sir-james-transit-guarantee" }, + { name: "Shipment Specs", id: "/#specs" }, + { name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Contact", id: "/contact" }, ]} brandName="Sir James Delivery" diff --git a/src/app/the-sir-james-transit-guarantee/page.tsx b/src/app/the-sir-james-transit-guarantee/page.tsx index 2b2d5e3..1282b9d 100644 --- a/src/app/the-sir-james-transit-guarantee/page.tsx +++ b/src/app/the-sir-james-transit-guarantee/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import LegalSection from '@/components/legal/LegalSection'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import LegalSection from '@/components/legal/LegalSection'; export default function TransitGuaranteePage() { return ( @@ -26,7 +26,8 @@ export default function TransitGuaranteePage() { navItems={[ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" }, - { name: "Transit Guarantee", id: "/the-sir-james-transit-guarantee" }, + { name: "Shipment Specs", id: "/#specs" }, + { name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Contact", id: "/contact" }, ]} brandName="Sir James Delivery" @@ -34,15 +35,15 @@ export default function TransitGuaranteePage() {