Update src/app/page.tsx
This commit is contained in:
204
src/app/page.tsx
204
src/app/page.tsx
@@ -29,29 +29,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Available Puppies",
|
||||
id: "/available-puppies",
|
||||
},
|
||||
name: "Available Puppies", id: "/available-puppies"},
|
||||
{
|
||||
name: "Our Breeds",
|
||||
id: "/our-breeds",
|
||||
},
|
||||
name: "Our Breeds", id: "/our-breeds"},
|
||||
{
|
||||
name: "Our Process",
|
||||
id: "/our-process",
|
||||
},
|
||||
name: "Our Process", id: "/our-process"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Dent's Doodles"
|
||||
/>
|
||||
@@ -63,13 +51,9 @@ export default function LandingPage() {
|
||||
description="Raising Happy, Healthy Doodles for Loving Families in Clarksville, TN and surrounding areas. Proudly boasting a 4.4-star Google rating from 18 happy families!"
|
||||
buttons={[
|
||||
{
|
||||
text: "See Available Puppies",
|
||||
href: "/available-puppies",
|
||||
},
|
||||
text: "See Available Puppies", href: "/available-puppies"},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Contact Us", href: "/contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pretty-girl-embarcing-basket-with-dog_8353-234.jpg"
|
||||
imageAlt="Family playing with a happy puppy"
|
||||
@@ -84,31 +68,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Health & Genetics",
|
||||
title: "Health-Tested Parents",
|
||||
items: [
|
||||
"Our parent dogs undergo extensive health screenings.",
|
||||
"Ensuring a strong genetic foundation for every litter.",
|
||||
],
|
||||
id: "f1", label: "Health & Genetics", title: "Health-Tested Parents", items: [
|
||||
"Our parent dogs undergo extensive health screenings.", "Ensuring a strong genetic foundation for every litter."],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Peace of Mind",
|
||||
title: "Genetic Testing",
|
||||
items: [
|
||||
"Comprehensive genetic testing for all our breeding dogs.",
|
||||
"Protecting against hereditary diseases and ensuring puppy well-being.",
|
||||
],
|
||||
id: "f2", label: "Peace of Mind", title: "Genetic Testing", items: [
|
||||
"Comprehensive genetic testing for all our breeding dogs.", "Protecting against hereditary diseases and ensuring puppy well-being."],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Stay Connected",
|
||||
title: "Weekly Puppy Updates",
|
||||
items: [
|
||||
"Receive weekly photos and videos of your puppy's progress.",
|
||||
"Watch them grow from tiny pups to playful companions!",
|
||||
],
|
||||
id: "f3", label: "Stay Connected", title: "Weekly Puppy Updates", items: [
|
||||
"Receive weekly photos and videos of your puppy's progress.", "Watch them grow from tiny pups to playful companions!"],
|
||||
},
|
||||
]}
|
||||
title="Our Commitment to Excellence"
|
||||
@@ -121,18 +90,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "A Family That Cares",
|
||||
},
|
||||
type: "text", content: "A Family That Cares"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More About Our Process",
|
||||
href: "/our-process",
|
||||
},
|
||||
text: "Learn More About Our Process", href: "/our-process"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cute-family-playing-park_1157-21590.jpg"
|
||||
imageAlt="A family lovingly embracing their doodle dog"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -143,64 +106,28 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
role: "New Puppy Owner",
|
||||
company: "Clarksville",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-working-from-home-with-pet-dog_23-2149104757.jpg",
|
||||
imageAlt: "Smiling woman with her Goldendoodle",
|
||||
},
|
||||
id: "1", name: "Sarah J.", role: "New Puppy Owner", company: "Clarksville", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-working-from-home-with-pet-dog_23-2149104757.jpg", imageAlt: "Smiling woman with her Goldendoodle"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael T.",
|
||||
role: "Doodle Lover",
|
||||
company: "Nashville",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-casual-clothes-his-dog-posing-looking-camera_158595-4265.jpg",
|
||||
imageAlt: "Man playing with his Labradoodle",
|
||||
},
|
||||
id: "2", name: "Michael T.", role: "Doodle Lover", company: "Nashville", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-casual-clothes-his-dog-posing-looking-camera_158595-4265.jpg", imageAlt: "Man playing with his Labradoodle"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
role: "Family Adopter",
|
||||
company: "Franklin",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-home-spending-time-together_23-2149185045.jpg",
|
||||
imageAlt: "Family with their Standard Poodle",
|
||||
},
|
||||
id: "3", name: "Emily R.", role: "Family Adopter", company: "Franklin", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-home-spending-time-together_23-2149185045.jpg", imageAlt: "Family with their Standard Poodle"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
role: "Satisfied Customer",
|
||||
company: "Murfreesboro",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-is-holding-small-fluffy-newborn-puppy-her-arms_169016-12365.jpg",
|
||||
imageAlt: "Woman hugging her Goldendoodle puppy",
|
||||
},
|
||||
id: "4", name: "David K.", role: "Satisfied Customer", company: "Murfreesboro", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-is-holding-small-fluffy-newborn-puppy-her-arms_169016-12365.jpg", imageAlt: "Woman hugging her Goldendoodle puppy"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica L.",
|
||||
role: "Happy Pet Parent",
|
||||
company: "Bowling Green",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36170.jpg",
|
||||
imageAlt: "Man with his Labradoodle on a hike",
|
||||
},
|
||||
id: "5", name: "Jessica L.", role: "Happy Pet Parent", company: "Bowling Green", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-her-beautiful-dog_1157-36170.jpg", imageAlt: "Man with his Labradoodle on a hike"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "4.4 Stars",
|
||||
label: "Google Rating",
|
||||
},
|
||||
value: "4.4 Stars", label: "Google Rating"},
|
||||
{
|
||||
value: "18+",
|
||||
label: "Happy Reviews",
|
||||
},
|
||||
value: "18+", label: "Happy Reviews"},
|
||||
{
|
||||
value: "Years",
|
||||
label: "Experience",
|
||||
},
|
||||
value: "Years", label: "Experience"},
|
||||
]}
|
||||
title="Happy Families, Healthy Puppies"
|
||||
description="Our 4.4-star Google rating from 18 reviews reflects the joy and satisfaction of our extended Dent's Doodles family. We're proud to bring so much happiness!"
|
||||
@@ -214,25 +141,13 @@ export default function LandingPage() {
|
||||
tag="Our Achievements"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "500+",
|
||||
description: "Happy Puppies Placed",
|
||||
},
|
||||
id: "m1", value: "500+", description: "Happy Puppies Placed"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
description: "Years of Breeding Experience",
|
||||
},
|
||||
id: "m2", value: "15+", description: "Years of Breeding Experience"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "4.9",
|
||||
description: "Average Customer Rating",
|
||||
},
|
||||
id: "m3", value: "4.9", description: "Average Customer Rating"},
|
||||
{
|
||||
id: "m4",
|
||||
value: "Health Tested",
|
||||
description: "for Generations",
|
||||
},
|
||||
id: "m4", value: "Health Tested", description: "for Generations"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -243,62 +158,37 @@ export default function LandingPage() {
|
||||
logoText="Dent's Doodles"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Available Puppies",
|
||||
href: "/available-puppies",
|
||||
},
|
||||
label: "Available Puppies", href: "/available-puppies"},
|
||||
{
|
||||
label: "Our Breeds",
|
||||
href: "/our-breeds",
|
||||
},
|
||||
label: "Our Breeds", href: "/our-breeds"},
|
||||
{
|
||||
label: "Our Process",
|
||||
href: "/our-process",
|
||||
},
|
||||
label: "Our Process", href: "/our-process"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
label: "Reviews", href: "/reviews"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact Us",
|
||||
items: [
|
||||
title: "Contact Us", items: [
|
||||
{
|
||||
label: "Email: info@dentsdoodles.com",
|
||||
href: "mailto:info@dentsdoodles.com",
|
||||
},
|
||||
label: "Email: info@dentsdoodles.com", href: "mailto:info@dentsdoodles.com"},
|
||||
{
|
||||
label: "Phone: (813) 391-0118",
|
||||
href: "tel:+18133910118",
|
||||
},
|
||||
label: "Phone: (813) 391-0118", href: "tel:+18133910118"},
|
||||
{
|
||||
label: "Clarksville, TN Area",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Clarksville, TN Area", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
title: "Follow Us", items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "YouTube",
|
||||
href: "#",
|
||||
},
|
||||
label: "YouTube", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user