Merge version_1 into main #2
@@ -25,22 +25,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Muttz Kutz"
|
||||
/>
|
||||
@@ -48,28 +36,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "g1",
|
||||
name: "Before & After",
|
||||
price: "Grooming Style 1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "g2",
|
||||
name: "Fresh Look",
|
||||
price: "Grooming Style 2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "g3",
|
||||
name: "Spa Result",
|
||||
price: "Grooming Style 3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pet-portrait-dog_23-2149218442.jpg?_wi=3",
|
||||
},
|
||||
{ id: "g1", name: "Before & After", price: "Grooming Style 1", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg" },
|
||||
{ id: "g2", name: "Fresh Look", price: "Grooming Style 2", imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg" },
|
||||
{ id: "g3", name: "Spa Result", price: "Grooming Style 3", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pet-portrait-dog_23-2149218442.jpg" },
|
||||
]}
|
||||
title="Style Gallery"
|
||||
description="Take a look at some of our satisfied pups!"
|
||||
@@ -85,54 +59,18 @@ export default function LandingPage() {
|
||||
title="Exclusive Products"
|
||||
description="Pick up premium shampoos and brushes at our studio."
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Organic Shampoo",
|
||||
price: "$20",
|
||||
variant: "Best Seller",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Soft Bristle Brush",
|
||||
price: "$15",
|
||||
variant: "Recommended",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg?_wi=4",
|
||||
},
|
||||
{ id: "p1", name: "Organic Shampoo", price: "$20", variant: "Best Seller", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg" },
|
||||
{ id: "p2", name: "Soft Bristle Brush", price: "$15", variant: "Recommended", imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About Us", href: "/" }, { label: "Services", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
logoText="Muttz Kutz"
|
||||
copyrightText="© 2025 | Muttz Kutz"
|
||||
|
||||
@@ -25,22 +25,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Muttz Kutz"
|
||||
/>
|
||||
@@ -54,42 +42,18 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Full Spa Grooming",
|
||||
description: "Bath, cut, and blow dry.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg?_wi=1",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greyhound-dog-with-towel-after-bath_23-2150283106.jpg?_wi=2",
|
||||
imageAlt: "happy dog being groomed",
|
||||
title: "Full Spa Grooming", description: "Bath, cut, and blow dry.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg" }
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Nail & Paw Care",
|
||||
description: "Precision trimming and pad treatment.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pet-portrait-dog_23-2149218442.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg?_wi=2",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-with-daughter-home_1157-18662.jpg?_wi=2",
|
||||
imageAlt: "groomer washing cute dog",
|
||||
title: "Nail & Paw Care", description: "Precision trimming and pad treatment.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pet-portrait-dog_23-2149218442.jpg" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg" }
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Puppy First Trim",
|
||||
description: "Gentle intro to the grooming salon.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pet-portrait-dog_23-2149218442.jpg?_wi=2",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-bath-concept-with-copy-space_23-2148459841.jpg?_wi=3",
|
||||
imageAlt: "dog nail trim professional",
|
||||
title: "Puppy First Trim", description: "Gentle intro to the grooming salon.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/washing-process-small-dog-bathroom-dog-washed-by-professional_1157-48804.jpg" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pet-portrait-dog_23-2149218442.jpg" }
|
||||
},
|
||||
]}
|
||||
showStepNumbers={true}
|
||||
@@ -105,57 +69,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
badge: "Essential",
|
||||
price: "$45",
|
||||
subtitle: "Basic bath and brush",
|
||||
features: [
|
||||
"Full bath",
|
||||
"Brush out",
|
||||
"Nail trim",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Book",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
id: "basic", badge: "Essential", price: "$45", subtitle: "Basic bath and brush", features: ["Full bath", "Brush out", "Nail trim"],
|
||||
buttons: [{ text: "Book", href: "/contact" }],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
badge: "Popular",
|
||||
price: "$75",
|
||||
subtitle: "Full grooming experience",
|
||||
features: [
|
||||
"Full bath",
|
||||
"Full body cut",
|
||||
"Ear cleaning",
|
||||
"Nail trim",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Book",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
id: "pro", badge: "Popular", price: "$75", subtitle: "Full grooming experience", features: ["Full bath", "Full body cut", "Ear cleaning", "Nail trim"],
|
||||
buttons: [{ text: "Book", href: "/contact" }],
|
||||
},
|
||||
{
|
||||
id: "spa",
|
||||
badge: "Premium",
|
||||
price: "$95",
|
||||
subtitle: "Luxury spa day",
|
||||
features: [
|
||||
"Everything in Pro",
|
||||
"Deshedding",
|
||||
"Teeth cleaning",
|
||||
"Paw massage",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Book",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
id: "spa", badge: "Premium", price: "$95", subtitle: "Luxury spa day", features: ["Everything in Pro", "Deshedding", "Teeth cleaning", "Paw massage"],
|
||||
buttons: [{ text: "Book", href: "/contact" }],
|
||||
},
|
||||
]}
|
||||
title="Service Packages"
|
||||
@@ -165,34 +88,10 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-looking-window-with-her-dog_329181-11312.jpg"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About Us", href: "/" }, { label: "Services", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
logoText="Muttz Kutz"
|
||||
copyrightText="© 2025 | Muttz Kutz"
|
||||
|
||||
Reference in New Issue
Block a user