Update src/app/page.tsx
This commit is contained in:
228
src/app/page.tsx
228
src/app/page.tsx
@@ -29,26 +29,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Bundles",
|
||||
id: "bundles",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Bundles", id: "bundles" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="R&C Wash"
|
||||
/>
|
||||
@@ -58,14 +43,9 @@ export default function LandingPage() {
|
||||
<HeroLogo
|
||||
logoText="R&C Wash"
|
||||
description="The easiest way to get your entire property cleaned in one visit. Professional window, pressure, gutter, and trash can cleaning for Oklahoma homes and businesses."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Get a Free Quote", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/south-asian-man-indian-male-washing-his-white-transportation-car-wash_627829-5012.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/south-asian-man-indian-male-washing-his-white-transportation-car-wash_627829-5012.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -76,62 +56,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Window Cleaning",
|
||||
description: "Streak-free, crystal-clear windows that let the light in.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358973.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Streak-free guarantee",
|
||||
},
|
||||
{
|
||||
icon: Sun,
|
||||
text: "Natural shine",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/south-asian-man-indian-male-washing-his-white-transportation-car-wash_627829-5012.jpg?_wi=2",
|
||||
imageAlt: "exterior pressure washing residential home",
|
||||
title: "Window Cleaning", description: "Streak-free, crystal-clear windows that let the light in.", media: { imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358973.jpg", imageAlt: "exterior pressure washing residential home" },
|
||||
items: [{ icon: Sparkles, text: "Streak-free guarantee" }, { icon: Sun, text: "Natural shine" }],
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
title: "Pressure Washing",
|
||||
description: "Restore your driveway, siding, and patio instantly.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispbread-falling-from-overturned-yellow-bucket-marble-surface_114579-61271.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: Droplets,
|
||||
text: "Deep surface cleaning",
|
||||
},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Safe for your siding",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358973.jpg?_wi=2",
|
||||
imageAlt: "clean windows sparkling glass",
|
||||
title: "Pressure Washing", description: "Restore your driveway, siding, and patio instantly.", media: { imageSrc: "http://img.b2bpic.net/free-photo/crispbread-falling-from-overturned-yellow-bucket-marble-surface_114579-61271.jpg", imageAlt: "clean windows sparkling glass" },
|
||||
items: [{ icon: Droplets, text: "Deep surface cleaning" }, { icon: CheckCircle, text: "Safe for your siding" }],
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
title: "Gutter Cleaning",
|
||||
description: "Prevent costly water damage with a clear drainage system.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-wearing-protection-helmet_23-2149343634.jpg",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: Shield,
|
||||
text: "Prevent foundation leaks",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Rapid debris removal",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispbread-falling-from-overturned-yellow-bucket-marble-surface_114579-61271.jpg?_wi=2",
|
||||
imageAlt: "pressure washing driveway brick",
|
||||
},
|
||||
title: "Gutter Cleaning", description: "Prevent costly water damage with a clear drainage system.", media: { imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-wearing-protection-helmet_23-2149343634.jpg", imageAlt: "pressure washing driveway brick" },
|
||||
items: [{ icon: Shield, text: "Prevent foundation leaks" }, { icon: Zap, text: "Rapid debris removal" }],
|
||||
reverse: false
|
||||
}
|
||||
]}
|
||||
title="Results-Driven Exterior Services"
|
||||
description="We don't just clean; we restore the curb appeal and value of your property."
|
||||
@@ -145,86 +83,40 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
badge: "Popular",
|
||||
price: "Bundle & Save",
|
||||
subtitle: "The Easiest Way to Clean",
|
||||
features: [
|
||||
"Window Cleaning",
|
||||
"Pressure Washing",
|
||||
"Gutter Maintenance",
|
||||
],
|
||||
id: "basic", badge: "Popular", price: "Bundle & Save", subtitle: "The Easiest Way to Clean", features: ["Window Cleaning", "Pressure Washing", "Gutter Maintenance"],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
badge: "Best Value",
|
||||
price: "Full Property Care",
|
||||
subtitle: "Total Restoration Package",
|
||||
features: [
|
||||
"Window Cleaning",
|
||||
"Pressure Washing",
|
||||
"Gutter Cleaning",
|
||||
"Trash Can Sanitation",
|
||||
],
|
||||
id: "pro", badge: "Best Value", price: "Full Property Care", subtitle: "Total Restoration Package", features: ["Window Cleaning", "Pressure Washing", "Gutter Cleaning", "Trash Can Sanitation"],
|
||||
},
|
||||
]}
|
||||
title="Full Property Cleaning Packages"
|
||||
description="Save time and money by bundling your services into one visit."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Bundle Now",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book Bundle Now", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
role: "Homeowner",
|
||||
company: "Edmond, OK",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-lady-posing-camera-background-wood-open-space-cafe-female-tourist-has-fun-sunny-summmer-day-concept-single-trip-holidays-happiness_291650-1285.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah J.", role: "Homeowner", company: "Edmond, OK", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-lady-posing-camera-background-wood-open-space-cafe-female-tourist-has-fun-sunny-summmer-day-concept-single-trip-holidays-happiness_291650-1285.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mike R.",
|
||||
role: "Property Manager",
|
||||
company: "OKC Metro",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-shot-dark-skinned-female-blogger-reads-news-feed-social-networks-poses-rural-setting-near-fence-bicycle_273609-18704.jpg",
|
||||
},
|
||||
id: "2", name: "Mike R.", role: "Property Manager", company: "OKC Metro", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-shot-dark-skinned-female-blogger-reads-news-feed-social-networks-poses-rural-setting-near-fence-bicycle_273609-18704.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily D.",
|
||||
role: "Small Biz Owner",
|
||||
company: "Moore, OK",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-looking-his-girlfriend_23-2148243182.jpg",
|
||||
},
|
||||
id: "3", name: "Emily D.", role: "Small Biz Owner", company: "Moore, OK", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-looking-his-girlfriend_23-2148243182.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David L.",
|
||||
role: "Homeowner",
|
||||
company: "Norman, OK",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-posing-outdoors_23-2149073989.jpg",
|
||||
},
|
||||
id: "4", name: "David L.", role: "Homeowner", company: "Norman, OK", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-posing-outdoors_23-2149073989.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jennifer K.",
|
||||
role: "Homeowner",
|
||||
company: "Yukon, OK",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg",
|
||||
},
|
||||
id: "5", name: "Jennifer K.", role: "Homeowner", company: "Yukon, OK", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-mother-home_23-2148321636.jpg"},
|
||||
]}
|
||||
title="What Oklahoma Homeowners Say"
|
||||
description="Trusted by hundreds of property owners in the region."
|
||||
@@ -234,9 +126,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Get Your Quote"
|
||||
title="Free Quote in Minutes"
|
||||
description="One visit, everything cleaned. Tell us what you need and we'll be there fast. Same-day availability options."
|
||||
@@ -251,57 +141,9 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="R&C Wash"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Window Cleaning",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Pressure Washing",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Gutter Cleaning",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Trash Can Cleaning",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Services", items: [{ label: "Window Cleaning", href: "#" }, { label: "Pressure Washing", href: "#" }, { label: "Gutter Cleaning", href: "#" }, { label: "Trash Can Cleaning", href: "#" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user