diff --git a/src/app/page.tsx b/src/app/page.tsx index d32d68c..a362ff9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,15 +1,15 @@ "use client"; -import { CheckCircle, HelpCircle, Heart, Mail, Paw, Star } from "lucide-react"; +import { CheckCircle, HelpCircle, Heart, Mail, PawPrint, Star } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import TextAbout from "@/components/sections/about/TextAbout"; -import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function LandingPage() { return ( @@ -49,13 +49,17 @@ export default function LandingPage() { background={{ variant: "radial-gradient" }} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/young-happy-smiling-woman-orange-dress-having-fun-playing-running-with-dog-park-summer-style-cheerful-mood_285396-5203.jpg", imageAlt: "Happy dog playing with toy"}, + imageSrc: "http://img.b2bpic.net/free-photo/young-happy-smiling-woman-orange-dress-having-fun-playing-running-with-dog-park-summer-style-cheerful-mood_285396-5203.jpg", imageAlt: "Happy dog playing with toy" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/view-adorable-chihuahua-dog-spending-time-with-male-owner-home_23-2149880019.jpg", imageAlt: "Peaceful cat resting"}, + imageSrc: "http://img.b2bpic.net/free-photo/view-adorable-chihuahua-dog-spending-time-with-male-owner-home_23-2149880019.jpg", imageAlt: "Peaceful cat resting" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/funny-rabbit-with-twist-decorative-heart_23-2148010863.jpg", imageAlt: "Bunny enjoying treats"}, + imageSrc: "http://img.b2bpic.net/free-photo/funny-rabbit-with-twist-decorative-heart_23-2148010863.jpg", imageAlt: "Bunny enjoying treats" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-two-hummingbirds-perched-tree-branch_181624-51150.jpg", imageAlt: "Colorful birds together"}, + imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-two-hummingbirds-perched-tree-branch_181624-51150.jpg", imageAlt: "Colorful birds together" + }, ]} buttons={[ { text: "Browse Products", href: "products" }, @@ -69,7 +73,7 @@ export default function LandingPage() {