diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..bfdca5b
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,110 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
+import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
+import FooterCard from '@/components/sections/footer/FooterCard';
+import { Instagram, TrendingUp, Mail, ArrowRight, Target } from 'lucide-react';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 6a109d4..0de02d0 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -32,7 +32,9 @@ export default function BlogPage() {
{ name: "Home", id: "/" },
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
- { name: "Impact", id: "metrics" }
+ { name: "Impact", id: "metrics" },
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{
text: "Donate", href: "#contact"
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 18d1278..c3346da 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,6 +9,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
+import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { ArrowRight, Heart, Instagram, Leaf, Mail, Target, TrendingUp, Zap } from 'lucide-react';
export default function LandingPage() {
@@ -31,7 +32,9 @@ export default function LandingPage() {
navItems={[
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
- { name: "Impact", id: "metrics" }
+ { name: "Impact", id: "metrics" },
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{
text: "Donate", href: "#contact"
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index d854c6a..d47159e 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -90,7 +90,8 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
{ name: "Impact", id: "metrics" },
- { name: "Shop", id: "/shop" }
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -137,7 +138,8 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
{ name: "Impact", id: "metrics" },
- { name: "Shop", id: "/shop" }
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -191,7 +193,8 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
{ name: "Impact", id: "metrics" },
- { name: "Shop", id: "/shop" }
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index 0a6f152..eb9a918 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -40,7 +40,8 @@ export default function ShopPage() {
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
{ name: "Impact", id: "metrics" },
- { name: "Shop", id: "/shop" }
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -86,7 +87,8 @@ export default function ShopPage() {
{ name: "Journey", id: "updates" },
{ name: "Support", id: "support" },
{ name: "Impact", id: "metrics" },
- { name: "Shop", id: "/shop" }
+ { name: "Team", id: "/team" },
+ { name: "About", id: "/about" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx
new file mode 100644
index 0000000..252d963
--- /dev/null
+++ b/src/app/team/page.tsx
@@ -0,0 +1,101 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
+import FooterCard from '@/components/sections/footer/FooterCard';
+import { Instagram, TrendingUp, Mail } from 'lucide-react';
+
+export default function TeamPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file