Merge version_1 into main #2
249
src/app/page.tsx
249
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Pet Hut"
|
||||
/>
|
||||
@@ -55,77 +47,48 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Luxury Care for Your Beloved Companion"
|
||||
description="Premium grooming, spa treatments, and curated wellness products for discerning pet owners who demand the best."
|
||||
kpis={[
|
||||
{
|
||||
value: "100%",
|
||||
label: "Satisfaction Rate",
|
||||
},
|
||||
value: "100%", label: "Satisfaction Rate"},
|
||||
{
|
||||
value: "5k+",
|
||||
label: "Happy Pets Served",
|
||||
},
|
||||
value: "5k+", label: "Happy Pets Served"},
|
||||
{
|
||||
value: "15+",
|
||||
label: "Years of Expertise",
|
||||
},
|
||||
value: "15+", label: "Years of Expertise"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Grooming Now",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book Grooming Now", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg"
|
||||
imageAlt="Luxurious pet grooming setting"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/home-lifestyle-concept-beautiful-young-woman-with-dog-sitting-sofa-eating-cereals-hugging_1258-195207.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/home-lifestyle-concept-beautiful-young-woman-with-dog-sitting-sofa-eating-cereals-hugging_1258-195207.jpg", alt: "Client 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/washing-pet-dog-home_23-2149627243.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/washing-pet-dog-home_23-2149627243.jpg", alt: "Client 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/full-shot-woman-working-desk_23-2149047447.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/full-shot-woman-working-desk_23-2149047447.jpg", alt: "Client 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/washing-pet-dog-home_23-2149627225.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/washing-pet-dog-home_23-2149627225.jpg", alt: "Client 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/person-working-from-home-with-pet-dog_23-2149104761.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/person-working-from-home-with-pet-dog_23-2149104761.jpg", alt: "Client 5"},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Certified Grooming",
|
||||
},
|
||||
type: "text", text: "Certified Grooming"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Organic Nutrition",
|
||||
},
|
||||
type: "text", text: "Organic Nutrition"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Spa Retreats",
|
||||
},
|
||||
type: "text", text: "Spa Retreats"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Expert Care",
|
||||
},
|
||||
type: "text", text: "Expert Care"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Luxury Boutique",
|
||||
},
|
||||
type: "text", text: "Luxury Boutique"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -135,14 +98,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "The Gold Standard in Pet Wellness",
|
||||
},
|
||||
type: "text", content: "The Gold Standard in Pet Wellness"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-dog_23-2148777104.jpg",
|
||||
alt: "Luxury Spa",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-dog_23-2148777104.jpg", alt: "Luxury Spa"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -154,49 +112,37 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Premium Grooming",
|
||||
description: "Expert stylists using high-end, organic products to ensure your pet looks and feels their best.",
|
||||
icon: Sparkles,
|
||||
title: "Premium Grooming", description: "Expert stylists using high-end, organic products to ensure your pet looks and feels their best.", icon: Sparkles,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-washing-dog_23-2149652692.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-washing-dog_23-2149652692.jpg", imageAlt: "dog grooming services professional hands"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-blow-drying-dog_23-2149652719.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-blow-drying-dog_23-2149652719.jpg", imageAlt: "dog grooming services professional hands"
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg?_wi=2",
|
||||
imageAlt: "dog grooming services professional hands",
|
||||
},
|
||||
{
|
||||
title: "Wellness & Nutrition",
|
||||
description: "Consultation services and curated food selections to optimize your pet's long-term health and vitality.",
|
||||
icon: Zap,
|
||||
title: "Wellness & Nutrition", description: "Consultation services and curated food selections to optimize your pet's long-term health and vitality.", icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pet-accessories-with-full-food-bowl_23-2148949593.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pet-accessories-with-full-food-bowl_23-2148949593.jpg", imageAlt: "dog grooming services professional hands"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-little-dog-being-sick_23-2148985947.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-little-dog-being-sick_23-2148985947.jpg", imageAlt: "dog grooming services professional hands"
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-dog_23-2148777104.jpg",
|
||||
imageAlt: "dog grooming services professional hands",
|
||||
},
|
||||
{
|
||||
title: "Relaxation Spa Day",
|
||||
description: "Soothing therapeutic sessions designed to reduce stress and enhance comfort for a pampered experience.",
|
||||
icon: Shield,
|
||||
title: "Relaxation Spa Day", description: "Soothing therapeutic sessions designed to reduce stress and enhance comfort for a pampered experience.", icon: Shield,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-pet-dog-home_23-2149627224.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-pet-dog-home_23-2149627224.jpg", imageAlt: "dog grooming services professional hands"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-dog_23-2148777178.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-dog_23-2148777178.jpg", imageAlt: "dog grooming services professional hands"
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/product-branding-packaging_23-2150965834.jpg?_wi=1",
|
||||
imageAlt: "dog grooming services professional hands",
|
||||
},
|
||||
]}
|
||||
title="Tailored Services for Every Pet"
|
||||
@@ -212,47 +158,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Organic Spa Wash",
|
||||
price: "₹1,200",
|
||||
variant: "Premium Care",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/product-branding-packaging_23-2150965834.jpg?_wi=2",
|
||||
},
|
||||
id: "1", name: "Organic Spa Wash", price: "₹1,200", variant: "Premium Care", imageSrc: "http://img.b2bpic.net/free-photo/product-branding-packaging_23-2150965834.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Leather Heritage Collar",
|
||||
price: "₹2,500",
|
||||
variant: "Designer Accessory",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pet-accessories_23-2150930391.jpg",
|
||||
},
|
||||
id: "2", name: "Leather Heritage Collar", price: "₹2,500", variant: "Designer Accessory", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pet-accessories_23-2150930391.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Artisanal Gourmet Treats",
|
||||
price: "₹800",
|
||||
variant: "Healthy Delight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dog-making-mass-with-plant-pot-inside_23-2149544933.jpg",
|
||||
},
|
||||
id: "3", name: "Artisanal Gourmet Treats", price: "₹800", variant: "Healthy Delight", imageSrc: "http://img.b2bpic.net/free-photo/dog-making-mass-with-plant-pot-inside_23-2149544933.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Plush Designer Bed",
|
||||
price: "₹4,500",
|
||||
variant: "Luxury Comfort",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-attractive-happy-blonde-room-with-loft-interior_613910-79.jpg",
|
||||
},
|
||||
id: "4", name: "Plush Designer Bed", price: "₹4,500", variant: "Luxury Comfort", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-attractive-happy-blonde-room-with-loft-interior_613910-79.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Styling Brush Set",
|
||||
price: "₹950",
|
||||
variant: "Essential Care",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/set-black-makeup-brushes-isolated-white_1385-2784.jpg",
|
||||
},
|
||||
id: "5", name: "Styling Brush Set", price: "₹950", variant: "Essential Care", imageSrc: "http://img.b2bpic.net/free-photo/set-black-makeup-brushes-isolated-white_1385-2784.jpg"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Bamboo Dining Bowl",
|
||||
price: "₹1,100",
|
||||
variant: "Eco-Luxury",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-pet-food-composition_23-2148982347.jpg",
|
||||
},
|
||||
id: "6", name: "Bamboo Dining Bowl", price: "₹1,100", variant: "Eco-Luxury", imageSrc: "http://img.b2bpic.net/free-photo/still-life-pet-food-composition_23-2148982347.jpg"},
|
||||
]}
|
||||
title="Curated Boutique Essentials"
|
||||
description="Hand-picked luxury items to pamper your pet at home."
|
||||
@@ -267,45 +183,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Entrepreneur",
|
||||
company: "Local Leader",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing-with-crossed-arms_23-2148095767.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson", role: "Entrepreneur", company: "Local Leader", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing-with-crossed-arms_23-2148095767.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
role: "Architect",
|
||||
company: "Elite Design",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-with-her-cute-dog-vacation_1303-10615.jpg",
|
||||
},
|
||||
id: "2", name: "Michael Chen", role: "Architect", company: "Elite Design", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-with-her-cute-dog-vacation_1303-10615.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Designer",
|
||||
company: "Creative Hub",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-brunet-man-wearing-red-bandana-dog_273609-10097.jpg",
|
||||
},
|
||||
id: "3", name: "Emily Rodriguez", role: "Designer", company: "Creative Hub", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-brunet-man-wearing-red-bandana-dog_273609-10097.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
role: "Tech Lead",
|
||||
company: "Tech Startup",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-posing-studio_23-2149411430.jpg",
|
||||
},
|
||||
id: "4", name: "David Kim", role: "Tech Lead", company: "Tech Startup", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-posing-studio_23-2149411430.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Priya Sharma",
|
||||
role: "Consultant",
|
||||
company: "Global Group",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-with-her-dog_23-2148454620.jpg",
|
||||
},
|
||||
id: "5", name: "Priya Sharma", role: "Consultant", company: "Global Group", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-with-her-dog_23-2148454620.jpg"},
|
||||
]}
|
||||
title="Trusted by Rajkot Pet Parents"
|
||||
description="Hear what our discerning clients say about our grooming and wellness boutique."
|
||||
@@ -318,20 +209,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "How do I book an appointment?",
|
||||
content: "You can book easily through our website contact form or by calling us directly.",
|
||||
},
|
||||
id: "q1", title: "How do I book an appointment?", content: "You can book easily through our website contact form or by calling us directly."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you offer home services?",
|
||||
content: "Currently, all our luxury grooming and spa services are provided at our Rajkot facility.",
|
||||
},
|
||||
id: "q2", title: "Do you offer home services?", content: "Currently, all our luxury grooming and spa services are provided at our Rajkot facility."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "What products do you use?",
|
||||
content: "We only use premium, organic, and hypoallergenic products to ensure the best care for your pet's skin and coat.",
|
||||
},
|
||||
id: "q3", title: "What products do you use?", content: "We only use premium, organic, and hypoallergenic products to ensure the best care for your pet's skin and coat."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about our services."
|
||||
@@ -343,14 +225,11 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
text="Ready to pamper your pet? Book your luxury grooming slot with Pet Hut in Rajkot today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Grooming Now",
|
||||
href: "#",
|
||||
},
|
||||
text: "Book Grooming Now", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -361,33 +240,21 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
label: "Home", href: "#hero"},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#features",
|
||||
},
|
||||
label: "Services", href: "#features"},
|
||||
{
|
||||
label: "Boutique",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Boutique", href: "#products"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user