diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 413cf9d..1b31e47 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -27,7 +27,8 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "Services", id: "/services" }, - { name: "FAQ", id: "/faq" }, + { name: "Impact", id: "/" }, + { name: "FAQ", id: "/" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index 4fb8374..56b271d 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -27,7 +27,8 @@ export default function FeaturesPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "Services", id: "/services" }, - { name: "FAQ", id: "/faq" }, + { name: "Impact", id: "/" }, + { name: "FAQ", id: "/" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx index bfce8ed..ffbb841 100644 --- a/src/app/privacy/page.tsx +++ b/src/app/privacy/page.tsx @@ -27,7 +27,8 @@ export default function PrivacyPolicyPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "Services", id: "/services" }, - { name: "FAQ", id: "/faq" }, + { name: "Impact", id: "/" }, + { name: "FAQ", id: "/" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} @@ -41,12 +42,10 @@ export default function PrivacyPolicyPage() { subtitle="Last updated: May 2024" sections={[ { - heading: "Data Collection", - content: { type: "paragraph", text: "We collect minimal information to improve your browsing experience. This includes basic analytical data used to monitor site performance and usage trends." } + heading: "Data Collection", content: { type: "paragraph", text: "We collect minimal information to improve your browsing experience. This includes basic analytical data used to monitor site performance and usage trends." } }, { - heading: "Information Usage", - content: { type: "list", items: ["Improving website performance", "Analyzing user navigation patterns", "Enhancing accessibility features"] } + heading: "Information Usage", content: { type: "list", items: ["Improving website performance", "Analyzing user navigation patterns", "Enhancing accessibility features"] } } ]} /> diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index aeddc92..94783f4 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -4,7 +4,8 @@ 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'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import { Droplet, Waves, Factory } from "lucide-react"; export default function ServicesPage() { return ( @@ -27,7 +28,8 @@ export default function ServicesPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "Services", id: "/services" }, - { name: "FAQ", id: "/faq" }, + { name: "Impact", id: "/" }, + { name: "FAQ", id: "/" }, { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} @@ -36,15 +38,21 @@ export default function ServicesPage() {
-