Update src/app/page.tsx

This commit is contained in:
2026-03-03 14:08:53 +00:00
parent 424546f5ec
commit 33cb653d52

View File

@@ -1,17 +1,17 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
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 ProductCardOne from "@/components/sections/product/ProductCardOne";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
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 LandingPage() {
return (
@@ -32,11 +32,11 @@ export default function LandingPage() {
brandName="Paws Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Pets", id: "pets" },
{ name: "Adopt", id: "adopt" },
{ name: "Get Involved", id: "involved" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Pets", id: "/pets" },
{ name: "Adopt", id: "#adopt" },
{ name: "Get Involved", id: "#involved" },
{ name: "Contact", id: "#contact" }
]}
/>
</div>
@@ -49,8 +49,8 @@ export default function LandingPage() {
tagIcon={Heart}
tagAnimation="slide-up"
buttons={[
{ text: "Browse Pets", href: "pets" },
{ text: "Learn More", href: "about" }
{ text: "Browse Pets", href: "/pets" },
{ text: "Learn More", href: "/about" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/dog-sitting-near-girl_8353-5282.jpg"
@@ -288,23 +288,23 @@ export default function LandingPage() {
columns={[
{
title: "About", items: [
{ label: "Our Mission", href: "about" },
{ label: "Our Mission", href: "/about" },
{ label: "Our Team", href: "#" },
{ label: "Meet Our Pets", href: "pets" }
{ label: "Meet Our Pets", href: "/pets" }
]
},
{
title: "Get Involved", items: [
{ label: "Adopt a Pet", href: "adopt" },
{ label: "Volunteer", href: "involved" },
{ label: "Adopt a Pet", href: "#adopt" },
{ label: "Volunteer", href: "#involved" },
{ label: "Donate", href: "#" }
]
},
{
title: "Resources", items: [
{ label: "Pet Care Tips", href: "#" },
{ label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "contact" }
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" }
]
}
]}