Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e90d094345 | |||
| 6417536a26 | |||
| ad8d76dc89 | |||
| d0892b6037 | |||
| eecde765a6 | |||
| 732e6fde8c | |||
| 501c45d7b4 | |||
| 7d55654d60 | |||
| 534824783f | |||
| 614876c53c |
53
src/app/about/page.tsx
Normal file
53
src/app/about/page.tsx
Normal file
@@ -0,0 +1,53 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Reviews", id: "/#testimonials" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="All Weather Pool Service"
|
||||
/>
|
||||
<MediaAbout
|
||||
title="About All Weather Pool Service"
|
||||
description="We've been serving the Fresno and Clovis areas with pride, ensuring families can enjoy their pools without the stress of maintenance."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/umbrella-chair-around-swimming-pool-neary-sea-ocean-beach-with-blue-sky-white-cloud_74190-8486.jpg"
|
||||
/>
|
||||
<TeamCardOne
|
||||
title="Meet Our Expert Team"
|
||||
description="Professional technicians dedicated to keeping your pool in perfect condition."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
textboxLayout="default"
|
||||
members={[
|
||||
{ id: "1", name: "Alex Rivers", role: "Lead Technician", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-businessman-wearing-suit-standing-with-crossed-arms-with-isolated-studio-white-background_1150-63629.jpg" },
|
||||
{ id: "2", name: "Jordan Smith", role: "Equipment Specialist", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-redhead-bearded-male-dressed-suit-posing-grey-background_613910-11594.jpg" },
|
||||
{ id: "3", name: "Casey Lee", role: "Chemical Technician", imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg" },
|
||||
]}
|
||||
/>
|
||||
<FooterBaseCard
|
||||
logoText="All Weather Pool Service"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/#services" }] },
|
||||
{ title: "Resources", items: [{ label: "Reviews", href: "/#testimonials" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
40
src/app/contact/page.tsx
Normal file
40
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Reviews", id: "/#testimonials" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="All Weather Pool Service"
|
||||
/>
|
||||
<ContactCenter
|
||||
tag="Contact Us"
|
||||
title="Get in Touch"
|
||||
description="Have questions about our services or need to book an appointment? We're here to help."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterBaseCard
|
||||
logoText="All Weather Pool Service"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/#services" }] },
|
||||
{ title: "Resources", items: [{ label: "Reviews", href: "/#testimonials" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
148
src/app/page.tsx
148
src/app/page.tsx
@@ -31,14 +31,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services", id: "services"},
|
||||
{
|
||||
name: "Reviews", id: "testimonials"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="All Weather Pool Service"
|
||||
/>
|
||||
@@ -49,40 +46,23 @@ export default function LandingPage() {
|
||||
title="Fresno's Most Trusted Pool Service — Rain or Shine"
|
||||
description="Weekly cleaning, chemical treatments & expert repairs. Serving Fresno & Clovis homeowners since day one. Same-day response for all inquiries."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Mark D.", handle: "Fresno", testimonial: "The best pool service I've ever used in the Valley. Crystal clear water every week.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg"},
|
||||
{
|
||||
name: "Sarah P.", handle: "Clovis", testimonial: "Reliable, professional, and always on time. My pool looks brand new again.", 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"},
|
||||
{
|
||||
name: "David W.", handle: "Fresno", testimonial: "Expert repair work. They fixed my pump in hours, not days.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-with-folded-arms-looking-camera_23-2147955314.jpg"},
|
||||
{
|
||||
name: "Linda M.", handle: "Clovis", testimonial: "Friendly technicians and the most thorough cleaning I've experienced.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-customer-service-agent_23-2151933140.jpg"},
|
||||
{
|
||||
name: "James L.", handle: "Fresno", testimonial: "Excellent chemical balancing. No more skin irritation for the kids.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-businessman-wearing-suit-standing-with-crossed-arms-with-isolated-studio-white-background_1150-63629.jpg"},
|
||||
{ name: "Mark D.", handle: "Fresno", testimonial: "The best pool service I've ever used in the Valley. Crystal clear water every week.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg" },
|
||||
{ name: "Sarah P.", handle: "Clovis", testimonial: "Reliable, professional, and always on time. My pool looks brand new again.", 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" },
|
||||
{ name: "David W.", handle: "Fresno", testimonial: "Expert repair work. They fixed my pump in hours, not days.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-with-folded-arms-looking-camera_23-2147955314.jpg" },
|
||||
{ name: "Linda M.", handle: "Clovis", testimonial: "Friendly technicians and the most thorough cleaning I've experienced.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-customer-service-agent_23-2151933140.jpg" },
|
||||
{ name: "James L.", handle: "Fresno", testimonial: "Excellent chemical balancing. No more skin irritation for the kids.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-businessman-wearing-suit-standing-with-crossed-arms-with-isolated-studio-white-background_1150-63629.jpg" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Your Free Quote", href: "#contact"},
|
||||
{
|
||||
text: "Call (559) 999-0319", href: "tel:5599990319"},
|
||||
{ text: "Get Your Free Quote", href: "/contact" },
|
||||
{ text: "Call (559) 999-0319", href: "tel:5599990319" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/umbrella-chair-around-swimming-pool-neary-sea-ocean-beach-with-blue-sky-white-cloud_74190-8486.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/studio-portrait-redhead-bearded-male-dressed-suit-posing-grey-background_613910-11594.jpg", alt: "Portrait of client 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/studio-portrait-serious-bearded-male-dressed-suit_613910-5596.jpg", alt: "Portrait of client 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Portrait of client 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17869.jpg", alt: "Portrait of client 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-brunette-asian-woman-sitting-with-graphic-pen-looking-happy-drawing_1258-199033.jpg", alt: "Portrait of client 5"},
|
||||
{ src: "http://img.b2bpic.net/free-photo/studio-portrait-redhead-bearded-male-dressed-suit-posing-grey-background_613910-11594.jpg", alt: "Portrait of client 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/studio-portrait-serious-bearded-male-dressed-suit_613910-5596.jpg", alt: "Portrait of client 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Portrait of client 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17869.jpg", alt: "Portrait of client 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-brunette-asian-woman-sitting-with-graphic-pen-looking-happy-drawing_1258-199033.jpg", alt: "Portrait of client 5" },
|
||||
]}
|
||||
avatarText="Trusted by 200+ local families"
|
||||
/>
|
||||
@@ -93,8 +73,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Why All Weather Pool Service?"
|
||||
buttons={[
|
||||
{
|
||||
text: "See Our Services", href: "#services"},
|
||||
{ text: "See Our Services", href: "#services" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,28 +87,22 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Weekly Pool Cleaning", description: "Full debris removal, tile scrubbing, and comprehensive maintenance every single week.", icon: Droplets,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-with-two-pigtails-from-high-pressure-hose-washes-car-car-wash_1153-9394.jpg"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/water-ripples-blue-tiled-swimming-pool-background-view-from_1253-1542.jpg"},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/brunette-with-two-pigtails-from-high-pressure-hose-washes-car-car-wash_1153-9394.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/water-ripples-blue-tiled-swimming-pool-background-view-from_1253-1542.jpg" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Chemical Balancing", description: "Expert water testing and professional chemical adjustment for a healthy swimming environment.", icon: Droplets,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-starting-riding-skateboard_23-2147678191.jpg"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-movie-projector_23-2147698858.jpg"},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-starting-riding-skateboard_23-2147678191.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/small-movie-projector_23-2147698858.jpg" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Equipment Repair", description: "Pumps, timers, heaters — our expert technicians ensure your mechanical systems run flawlessly.", icon: Wrench,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-fishing-by-lake_53876-20826.jpg"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-woman-swimming-relaxing-pool-with-wide-open-arms-crystal-clear-water_1253-1035.jpg"},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-fishing-by-lake_53876-20826.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/rear-view-woman-swimming-relaxing-pool-with-wide-open-arms-crystal-clear-water_1253-1035.jpg" },
|
||||
]
|
||||
},
|
||||
]}
|
||||
@@ -144,15 +117,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "1", icon: Phone,
|
||||
title: "Free Quote", value: "Step 1"},
|
||||
{
|
||||
id: "2", icon: User,
|
||||
title: "Visit", value: "Step 2"},
|
||||
{
|
||||
id: "3", icon: Waves,
|
||||
title: "Enjoy", value: "Step 3"},
|
||||
{ id: "1", icon: Phone, title: "Free Quote", value: "Step 1" },
|
||||
{ id: "2", icon: User, title: "Visit", value: "Step 2" },
|
||||
{ id: "3", icon: Waves, title: "Enjoy", value: "Step 3" },
|
||||
]}
|
||||
title="A Simple Process for Clarity"
|
||||
description="Zero stress. Just crystal clear water, every single week."
|
||||
@@ -166,21 +133,11 @@ export default function LandingPage() {
|
||||
gridVariant="one-large-left-three-stacked-right"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Mark D.", role: "Homeowner", company: "Fresno", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg"},
|
||||
{
|
||||
id: "2", name: "Sarah P.", role: "Homeowner", company: "Clovis", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg"},
|
||||
{
|
||||
id: "3", name: "David W.", role: "Homeowner", company: "Fresno", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg"},
|
||||
{
|
||||
id: "4", name: "Linda M.", role: "Homeowner", company: "Clovis", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg"},
|
||||
{
|
||||
id: "5", name: "James L.", role: "Homeowner", company: "Fresno", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg"},
|
||||
{ id: "1", name: "Mark D.", role: "Homeowner", company: "Fresno", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg" },
|
||||
{ id: "2", name: "Sarah P.", role: "Homeowner", company: "Clovis", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg" },
|
||||
{ id: "3", name: "David W.", role: "Homeowner", company: "Fresno", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg" },
|
||||
{ id: "4", name: "Linda M.", role: "Homeowner", company: "Clovis", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg" },
|
||||
{ id: "5", name: "James L.", role: "Homeowner", company: "Fresno", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg" },
|
||||
]}
|
||||
title="239 Happy Pool Owners"
|
||||
description="See why homeowners in Fresno and Clovis trust us with their backyard oasis."
|
||||
@@ -194,18 +151,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Sparkling Pools", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/umbrella-deck-travel-holiday-luxury_1203-4524.jpg"},
|
||||
{
|
||||
id: "p2", name: "Expert Care", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/man-sunglasses-hat-drinking-cocktail-sitting-near-pool_176420-3986.jpg"},
|
||||
{
|
||||
id: "p3", name: "Precision Tech", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/automatic-electronic-switch-control-water-pump-pressure-controller_627829-7491.jpg"},
|
||||
{
|
||||
id: "p4", name: "Crystal Clear", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/closeup-desaturated-transparent-clear-calm-water-surface-texture-with-splashes-bubbles-trendy_1258-110214.jpg"},
|
||||
{
|
||||
id: "p5", name: "Equipment Care", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-asian-woman-using-smart-mobile-phone-around-outdoor-swimming-pool_74190-10042.jpg"},
|
||||
{
|
||||
id: "p6", name: "Detail Focused", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/skate-ramp-park_23-2147678260.jpg"},
|
||||
{ id: "p1", name: "Sparkling Pools", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/umbrella-deck-travel-holiday-luxury_1203-4524.jpg" },
|
||||
{ id: "p2", name: "Expert Care", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/man-sunglasses-hat-drinking-cocktail-sitting-near-pool_176420-3986.jpg" },
|
||||
{ id: "p3", name: "Precision Tech", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/automatic-electronic-switch-control-water-pump-pressure-controller_627829-7491.jpg" },
|
||||
{ id: "p4", name: "Crystal Clear", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/closeup-desaturated-transparent-clear-calm-water-surface-texture-with-splashes-bubbles-trendy_1258-110214.jpg" },
|
||||
{ id: "p5", name: "Equipment Care", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-asian-woman-using-smart-mobile-phone-around-outdoor-swimming-pool_74190-10042.jpg" },
|
||||
{ id: "p6", name: "Detail Focused", price: "Our Work", variant: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/skate-ramp-park_23-2147678260.jpg" },
|
||||
]}
|
||||
title="See the All Weather Difference"
|
||||
description="Our work speaks for itself—high-end, professional results for every property we serve."
|
||||
@@ -215,8 +166,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Get Your Quote"
|
||||
title="Ready to Get Started?"
|
||||
description="No obligation, same-day response in Fresno and Clovis. Let's make your pool perfect."
|
||||
@@ -229,22 +179,8 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="All Weather Pool Service"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About", href: "#why-us"},
|
||||
{
|
||||
label: "Services", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Reviews", href: "#testimonials"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "#services" }] },
|
||||
{ title: "Resources", items: [{ label: "Reviews", href: "#testimonials" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
copyrightText="© 2025 All Weather Pool Service. All Rights Reserved."
|
||||
/>
|
||||
@@ -252,4 +188,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
76
src/app/services/page.tsx
Normal file
76
src/app/services/page.tsx
Normal file
@@ -0,0 +1,76 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Droplets, Phone, User, Waves, Wrench } from "lucide-react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmall"
|
||||
background="blurBottom"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Reviews", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="All Weather Pool Service"
|
||||
/>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Comprehensive Pool Solutions"
|
||||
description="From routine maintenance to complex equipment repairs, we handle it all."
|
||||
features={[
|
||||
{ title: "Weekly Cleaning", description: "Routine scrubbing and debris removal.", icon: Droplets, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/water-ripples-blue-tiled-swimming-pool-background-view-from_1253-1542.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/water-ripples-blue-tiled-swimming-pool-background-view-from_1253-1542.jpg" }] },
|
||||
{ title: "Equipment Repair", description: "Professional repair for pumps and systems.", icon: Wrench, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/automatic-electronic-switch-control-water-pump-pressure-controller_627829-7491.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/automatic-electronic-switch-control-water-pump-pressure-controller_627829-7491.jpg" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<MetricCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="A Simple Process"
|
||||
description="Starting your service is as easy as 1-2-3."
|
||||
metrics={[
|
||||
{ id: "1", icon: Phone, title: "Request", value: "1" },
|
||||
{ id: "2", icon: User, title: "Visit", value: "2" },
|
||||
{ id: "3", icon: Waves, title: "Enjoy", value: "3" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBaseCard
|
||||
logoText="All Weather Pool Service"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/#why-us" }, { label: "Services", href: "/services" }] },
|
||||
{ title: "Resources", items: [{ label: "Reviews", href: "/#testimonials" }, { label: "Contact", href: "/#contact" }] },
|
||||
]}
|
||||
copyrightText="© 2025 All Weather Pool Service. All Rights Reserved."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user