From b846100f9fde3a13056ebe2db47403c5ef87eb91 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:08:49 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 60 ++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 25 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3e07580..f2016d7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,14 +1,14 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import HeroOverlay from '@/components/sections/hero/HeroOverlay'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TeamCardTen from '@/components/sections/team/TeamCardTen'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Heart, Users, Globe, Home, Mail, Sparkles } from 'lucide-react'; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import TeamCardTen from "@/components/sections/team/TeamCardTen"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Heart, Users, Globe, Home, Mail, Sparkles } from "lucide-react"; export default function AboutPage() { return ( @@ -28,32 +28,42 @@ export default function AboutPage() {
-
@@ -79,7 +89,7 @@ export default function AboutPage() { } ]} buttons={[ - { text: "Our Impact", href: "#impact" }, + { text: "Our Impact", href: "#" }, { text: "Donate", href: "#" } ]} buttonAnimation="slide-up" @@ -173,21 +183,21 @@ export default function AboutPage() { title: "About", items: [ { label: "Our Mission", href: "/about" }, { label: "Our Team", href: "/about" }, - { label: "Meet Our Pets", href: "/" } + { label: "Meet Our Pets", href: "/pets" } ] }, { title: "Get Involved", items: [ - { label: "Adopt a Pet", href: "/" }, - { label: "Volunteer", href: "/" }, + { label: "Adopt a Pet", href: "#adopt" }, + { label: "Volunteer", href: "#involved" }, { label: "Donate", href: "#" } ] }, { title: "Resources", items: [ { label: "Pet Care Tips", href: "#" }, - { label: "FAQ", href: "/about" }, - { label: "Contact Us", href: "/" } + { label: "FAQ", href: "#faq" }, + { label: "Contact Us", href: "#contact" } ] } ]} @@ -196,4 +206,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +}