From 577cf67ce63ce81b528bd7ac24c5318b48f8bd18 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 18:53:20 +0000 Subject: [PATCH 1/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" }, ]} -- 2.49.1 From a92eb006e45224c6a57788ae0a32849db9ed9fce Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 18:53:20 +0000 Subject: [PATCH 2/4] Update src/app/features/page.tsx --- src/app/features/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" }, ]} -- 2.49.1 From 6b7971bf65df1e4761d80ebae437bc90fa200bec Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 18:53:21 +0000 Subject: [PATCH 3/4] Update src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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"] } } ]} /> -- 2.49.1 From 663f9ff91972c152fa078893f5b8a620dcf0264c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 18:53:21 +0000 Subject: [PATCH 4/4] Update src/app/services/page.tsx --- src/app/services/page.tsx | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) 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() {
-
-- 2.49.1