diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..25a15fe --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,134 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Heart, Sparkles } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 3a68632..c6bf88c 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,13 +29,14 @@ export default function BlogPage() { brandName="Happy Paws Shelter" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Adopt", id: "featured" }, - { name: "Process", id: "process" }, - { name: "Contact", id: "contact" } + { name: "About", id: "/about" }, + { name: "Adopt", id: "/#featured" }, + { name: "Our Story", id: "/about" }, + { name: "Process", id: "/#process" }, + { name: "Contact", id: "/#contact" } ]} button={{ - text: "Start Adoption", href: "contact" + text: "Start Adoption", href: "/#contact" }} /> @@ -65,10 +66,10 @@ export default function BlogPage() { columns={[ { title: "Quick Links", items: [ - { label: "Browse Pets", href: "#featured" }, - { label: "Adoption Process", href: "#process" }, - { label: "About Us", href: "#about" }, - { label: "Contact", href: "#contact" } + { label: "Browse Pets", href: "/#featured" }, + { label: "Adoption Process", href: "/#process" }, + { label: "About Us", href: "/about" }, + { label: "Contact", href: "/#contact" } ] }, { @@ -95,4 +96,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 309ada1..c087b09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1413,4 +1413,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 9bce2d4..7fc901d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,9 +30,10 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index fa9d913..f8c9b20 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,11 +86,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Happy Paws Shelter" navItems={[ {"name":"Home","id":"/"}, - {"name":"About","id":"about"}, - {"name":"Adopt","id":"featured"}, - {"name":"Process","id":"process"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"About","id":"/about"}, + {"name":"Adopt","id":"/#featured"}, + {"name":"Our Story","id":"/about"}, + {"name":"Process","id":"/#process"}, + {"name":"Contact","id":"/#contact"} ]} button={{"text":"Cart","onClick":() => setCartOpen(true)}} /> @@ -101,7 +101,7 @@ export default function ProductPage({ params }: ProductPageProps) {