diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d8dc5f1..413cf9d 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -26,8 +26,8 @@ export default function ContactPage() { navItems={[ { name: "Home", id: "/" }, { name: "Features", id: "/features" }, - { name: "Impact", id: "/" }, - { name: "FAQ", id: "/" }, + { name: "Services", id: "/services" }, + { name: "FAQ", id: "/faq" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index 9c33745..4fb8374 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -26,8 +26,8 @@ export default function FeaturesPage() { navItems={[ { name: "Home", id: "/" }, { name: "Features", id: "/features" }, - { name: "Impact", id: "/" }, - { name: "FAQ", id: "/" }, + { name: "Services", id: "/services" }, + { name: "FAQ", id: "/faq" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} diff --git a/src/app/page.tsx b/src/app/page.tsx index 38d6e22..347665e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "Features", id: "/features" }, + { name: "Services", id: "/services" }, { name: "Impact", id: "pollution" }, { name: "FAQ", id: "faq" }, { name: "Privacy", id: "/privacy" }, diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx index 41f8e87..b158617 100644 --- a/src/app/privacy/page.tsx +++ b/src/app/privacy/page.tsx @@ -26,8 +26,8 @@ export default function PrivacyPolicyPage() { navItems={[ { name: "Home", id: "/" }, { name: "Features", id: "/features" }, - { name: "Impact", id: "/" }, - { name: "FAQ", id: "/" }, + { name: "Services", id: "/services" }, + { name: "FAQ", id: "/faq" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..79deb0c --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file