Update src/app/page.tsx
This commit is contained in:
174
src/app/page.tsx
174
src/app/page.tsx
@@ -17,27 +17,26 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Reviews", id: "testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="AJ Plumbing & Heating"
|
||||
/>
|
||||
@@ -49,39 +48,23 @@ export default function LandingPage() {
|
||||
description="Reliable. Fast. Professional plumbing and heating services you can trust. Serving your home 24/7."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Free Quote", href: "#contact"},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5550199",
|
||||
},
|
||||
text: "Call Now", href: "tel:5550199"},
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg?_wi=1",
|
||||
imageAlt: "Plumbing service",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg", imageAlt: "Plumbing service"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg?_wi=2",
|
||||
imageAlt: "Plumbing service",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg", imageAlt: "Plumbing service"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg?_wi=3",
|
||||
imageAlt: "Plumbing service",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg", imageAlt: "Plumbing service"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg?_wi=4",
|
||||
imageAlt: "Plumbing service",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg", imageAlt: "Plumbing service"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg?_wi=5",
|
||||
imageAlt: "Plumbing service",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg", imageAlt: "Plumbing service"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg?_wi=6",
|
||||
imageAlt: "Plumbing service",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coveralls-digitally-generated-car-cardboard-box-pointing_1134-941.jpg", imageAlt: "Plumbing service"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -107,34 +90,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "plumbing",
|
||||
label: "Reliable",
|
||||
title: "General Plumbing",
|
||||
items: [
|
||||
"Leak repair",
|
||||
"Pipe installations",
|
||||
"Maintenance",
|
||||
],
|
||||
id: "plumbing", label: "Reliable", title: "General Plumbing", items: [
|
||||
"Leak repair", "Pipe installations", "Maintenance"],
|
||||
},
|
||||
{
|
||||
id: "heating",
|
||||
label: "Efficient",
|
||||
title: "Heating & Boilers",
|
||||
items: [
|
||||
"Boiler servicing",
|
||||
"Radiator repairs",
|
||||
"Heating system upgrades",
|
||||
],
|
||||
id: "heating", label: "Efficient", title: "Heating & Boilers", items: [
|
||||
"Boiler servicing", "Radiator repairs", "Heating system upgrades"],
|
||||
},
|
||||
{
|
||||
id: "emergency",
|
||||
label: "Immediate",
|
||||
title: "24/7 Emergency",
|
||||
items: [
|
||||
"Burst pipes",
|
||||
"Water leaks",
|
||||
"Urgent repairs",
|
||||
],
|
||||
id: "emergency", label: "Immediate", title: "24/7 Emergency", items: [
|
||||
"Burst pipes", "Water leaks", "Urgent repairs"],
|
||||
},
|
||||
]}
|
||||
title="Our Professional Services"
|
||||
@@ -149,45 +114,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Miller",
|
||||
handle: "@sarahm",
|
||||
testimonial: "Excellent service and very prompt response to my burst pipe.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-with-pinkish-hair-posing_344912-846.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah Miller", handle: "@sarahm", testimonial: "Excellent service and very prompt response to my burst pipe.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-with-pinkish-hair-posing_344912-846.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "James Wilson",
|
||||
handle: "@jwilson",
|
||||
testimonial: "Very professional and fixed my boiler issue in under an hour.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-caucasian-couple-hugging-happily-indoors-newly-purchased-home-joyful-moment_482257-134711.jpg",
|
||||
},
|
||||
id: "2", name: "James Wilson", handle: "@jwilson", testimonial: "Very professional and fixed my boiler issue in under an hour.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-caucasian-couple-hugging-happily-indoors-newly-purchased-home-joyful-moment_482257-134711.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Chen",
|
||||
handle: "@emilyc",
|
||||
testimonial: "Highly recommended for their transparency and quality work.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg",
|
||||
},
|
||||
id: "3", name: "Emily Chen", handle: "@emilyc", testimonial: "Highly recommended for their transparency and quality work.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Smith",
|
||||
handle: "@dsmith",
|
||||
testimonial: "Fast service and reasonable prices. Will use again.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg",
|
||||
},
|
||||
id: "4", name: "David Smith", handle: "@dsmith", testimonial: "Fast service and reasonable prices. Will use again.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Mark Johnson",
|
||||
handle: "@markj",
|
||||
testimonial: "Great work on our bathroom installation project.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg",
|
||||
},
|
||||
id: "5", name: "Mark Johnson", handle: "@markj", testimonial: "Great work on our bathroom installation project.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-female-face-looking-camera_1262-2974.jpg"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Trusted by Homeowners"
|
||||
@@ -199,18 +139,13 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
text="Need professional plumbing support? Contact our team today for a free estimate or emergency dispatch."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5550199",
|
||||
},
|
||||
text: "Call Now", href: "tel:5550199"},
|
||||
{
|
||||
text: "Email Us",
|
||||
href: "mailto:support@ajplumbing.com",
|
||||
},
|
||||
text: "Email Us", href: "mailto:support@ajplumbing.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -221,42 +156,27 @@ export default function LandingPage() {
|
||||
logoText="AJ Plumbing & Heating"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Plumbing",
|
||||
href: "#features",
|
||||
},
|
||||
label: "Plumbing", href: "#features"},
|
||||
{
|
||||
label: "Heating",
|
||||
href: "#features",
|
||||
},
|
||||
label: "Heating", href: "#features"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user