Merge version_2 into main #11
284
src/app/page.tsx
284
src/app/page.tsx
@@ -3,13 +3,13 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import {
|
||||
Hammer,
|
||||
@@ -49,7 +49,8 @@ export default function HomePage() {
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now", href: "tel:804-938-0669"}}
|
||||
text: "Call Now", href: "tel:804-938-0669"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -64,25 +65,51 @@ export default function HomePage() {
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg", imageAlt: "Professional handyman tools and equipment"},
|
||||
"http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg", imageAlt: "Professional handyman tools and equipment"
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg", imageAlt: "Skilled handyman performing home repair work"},
|
||||
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg", imageAlt: "Skilled handyman performing home repair work"
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg", imageAlt: "Professional plumbing service technician"},
|
||||
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg", imageAlt: "Professional plumbing service technician"
|
||||
},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: 804-938-0669", href: "tel:804-938-0669"},
|
||||
text: "Call Now: 804-938-0669", href: "tel:804-938-0669"
|
||||
},
|
||||
{
|
||||
text: "Request Service", href: "#contact"},
|
||||
text: "Request Service", href: "#contact"
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Ready to Get Started?"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Need Professional Home Services in Richmond, VA?"
|
||||
description="Contact Earl Boys Services today for a fast, free estimate. We're ready to help with all your home repair and improvement needs."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call: 804-938-0669", href: "tel:804-938-0669"
|
||||
},
|
||||
{
|
||||
text: "Request Service", href: "/contact"
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardFour
|
||||
title="Our Services"
|
||||
@@ -98,31 +125,88 @@ export default function HomePage() {
|
||||
products={[
|
||||
{
|
||||
id: "plumbing", name: "Plumbing Services", price: "Starting at $75", variant: "Repairs & Installation", imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/minimalist-plumbing-pros-logo_742173-8790.jpg", imageAlt: "Plumbing services icon"},
|
||||
"http://img.b2bpic.net/free-vector/minimalist-plumbing-pros-logo_742173-8790.jpg", imageAlt: "Plumbing services icon"
|
||||
},
|
||||
{
|
||||
id: "painting", name: "Painting Services", price: "Starting at $85", variant: "Interior & Exterior", imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507393.jpg", imageAlt: "Painting services icon"},
|
||||
"http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507393.jpg", imageAlt: "Painting services icon"
|
||||
},
|
||||
{
|
||||
id: "electrical", name: "Electrical Work", price: "Starting at $80", variant: "Repair & Installation", imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/energy-logo-design-template_23-2150024111.jpg", imageAlt: "Electrical services icon"},
|
||||
"http://img.b2bpic.net/free-vector/energy-logo-design-template_23-2150024111.jpg", imageAlt: "Electrical services icon"
|
||||
},
|
||||
{
|
||||
id: "mounting", name: "Wall Mounting", price: "Starting at $65", variant: "TV & Shelf Installation", imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/tv-set-silhouette_23-2147501017.jpg", imageAlt: "Wall mounting services icon"},
|
||||
"http://img.b2bpic.net/free-vector/tv-set-silhouette_23-2147501017.jpg", imageAlt: "Wall mounting services icon"
|
||||
},
|
||||
{
|
||||
id: "furniture", name: "Furniture Assembly", price: "Starting at $60", variant: "Professional Assembly", imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/house-apartment-room-renovation-isometric-interior-view_1284-56332.jpg", imageAlt: "Furniture assembly services icon"},
|
||||
"http://img.b2bpic.net/free-vector/house-apartment-room-renovation-isometric-interior-view_1284-56332.jpg", imageAlt: "Furniture assembly services icon"
|
||||
},
|
||||
{
|
||||
id: "flooring", name: "Flooring Installation", price: "Starting at $120", variant: "Hardwood & Tile", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/installing-ceramic-floor-tiles-construction-site-construction-workers-workers-laying-tiles-floor-with-cement-adhesive-renovating-floor-vertical-frame_166373-2129.jpg", imageAlt: "Flooring installation services icon"},
|
||||
"http://img.b2bpic.net/free-photo/installing-ceramic-floor-tiles-construction-site-construction-workers-workers-laying-tiles-floor-with-cement-adhesive-renovating-floor-vertical-frame_166373-2129.jpg", imageAlt: "Flooring installation services icon"
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View All Services", href: "#services"},
|
||||
text: "View All Services", href: "#services"
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="What Our Customers Say"
|
||||
description="Real reviews from satisfied Richmond homeowners"
|
||||
tag="Customer Reviews"
|
||||
tagIcon={MessageCircle}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson, Homeowner", date: "Date: 15 January 2025", title: "Excellent service and professional team!", quote:
|
||||
"Earl Boys Services did an amazing job assembling my furniture and fixing my doors. Very professional and fast service. They were courteous, cleaned up after themselves, and charged a fair price. Highly recommend!", tag: "Furniture Assembly & Door Repair", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-handsome-man-holding-her-girlfriend-s-hand_23-2147891265.jpg", avatarAlt: "Sarah Johnson", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-handsome-man-holding-her-girlfriend-s-hand_23-2147891265.jpg", imageAlt: "satisfied customer happy review"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen, Property Owner", date: "Date: 22 December 2024", title: "Great experience with reliable team", quote:
|
||||
"Great experience. Friendly team and very reliable. They arrived on time, communicated clearly about the work needed, and completed everything efficiently. They mounted our TV perfectly and cleaned up everything after. Will definitely use them again for future projects.", tag: "TV Mounting & Installation", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/closeup-charming-delighted-cute-female-customer-give-positive-feedback-show-thumbsup-like-gesture_1258-254022.jpg", avatarAlt: "Michael Chen", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/closeup-charming-delighted-cute-female-customer-give-positive-feedback-show-thumbsup-like-gesture_1258-254022.jpg", imageAlt: "happy customer portrait photo"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Jennifer Martinez, Homeowner", date: "Date: 08 December 2024", title: "Quick response and excellent work", quote:
|
||||
"Quick response and excellent work. They fixed our plumbing issue promptly and professionally. The pricing was transparent with no surprises. Earl Boys Services has become my go-to for any home repair needs. Highly recommended to all my neighbors!", tag: "Plumbing Repair", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/medium-shot-smiley-women-home_23-2149248712.jpg", avatarAlt: "Jennifer Martinez", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/medium-shot-smiley-women-home_23-2149248712.jpg", imageAlt: "customer satisfaction portrait"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Robert Davis, Homeowner", date: "Date: 20 November 2024", title: "Professional, courteous, and trustworthy", quote:
|
||||
"Professional, courteous, and trustworthy. I had them do some electrical work and wall repairs. They took their time to explain everything, answered all my questions, and did quality work. Definitely the most professional service team I've worked with in Richmond.", tag: "Electrical & Wall Repair", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-female-violet-shirt-showing-thumbs-up-looking-cheerful-front-view_176474-14452.jpg", avatarAlt: "Robert Davis", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-female-violet-shirt-showing-thumbs-up-looking-cheerful-front-view_176474-14452.jpg", imageAlt: "five star review customer"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Lisa Thompson, Homeowner", date: "Date: 05 November 2024", title: "Outstanding painting and flooring work", quote:
|
||||
"Outstanding work on our kitchen painting and flooring installation. They were detail-oriented, clean workers, and finished ahead of schedule. The transformation was amazing! We appreciate their professionalism and attention to quality. Five stars!", tag: "Painting & Flooring", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/crazy-businessman-worried-expression_1194-3668.jpg", avatarAlt: "Lisa Thompson", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/crazy-businessman-worried-expression_1194-3668.jpg", imageAlt: "customer success story portrait"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Kevin Rodriguez, Homeowner", date: "Date: 18 October 2024", title: "Five-star service from start to finish", quote:
|
||||
"Five-star service from start to finish. Mike and his team came out to handle multiple repairs around our house. They were efficient, friendly, and delivered exceptional results. The quality of their work and customer service is unmatched in Richmond. Booking them again soon!", tag: "Multiple Services", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg", avatarAlt: "Kevin Rodriguez", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg", imageAlt: "excellent service review customer"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Why Choose Earl Boys Services"
|
||||
@@ -134,7 +218,8 @@ export default function HomePage() {
|
||||
imageAlt="Earl Boys Services professional team"
|
||||
buttons={[
|
||||
{
|
||||
text: "Request a Quote", href: "#contact"},
|
||||
text: "Request a Quote", href: "#contact"
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -154,42 +239,23 @@ export default function HomePage() {
|
||||
{
|
||||
id: "01", title: "Reliable Professionals", description:
|
||||
"Experienced, courteous team members who take pride in quality workmanship", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg", imageAlt: "Professional quality workmanship"},
|
||||
"http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg", imageAlt: "Professional quality workmanship"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Fast Response Times", description:
|
||||
"Quick scheduling and efficient service completion to minimize disruption to your home", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg", imageAlt: "Fast professional service"},
|
||||
"http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg", imageAlt: "Fast professional service"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Transparent Pricing", description:
|
||||
"Fair, upfront quotes with no hidden charges. Affordable solutions for every budget", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg", imageAlt: "Affordable pricing transparency"},
|
||||
"http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg", imageAlt: "Affordable pricing transparency"
|
||||
},
|
||||
{
|
||||
id: "04", title: "Locally Owned", description:
|
||||
"Richmond-based business invested in our community and committed to local service excellence", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg", imageAlt: "Local community service"},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
title="Meet Our Team"
|
||||
description="Skilled professionals dedicated to exceeding your expectations"
|
||||
tag="Our Experts"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Mike Earl", role: "Owner & Lead Technician", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-man-civil-engineer-safety-hat_185193-109460.jpg", imageAlt: "Mike Earl - Owner and Lead Technician"},
|
||||
{
|
||||
id: "2", name: "David Smith", role: "Service Manager", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-young-business-woman-posing-with-crossed-arms_23-2149206523.jpg", imageAlt: "David Smith - Service Manager"},
|
||||
"http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg", imageAlt: "Local community service"
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
@@ -209,82 +275,48 @@ export default function HomePage() {
|
||||
metrics={[
|
||||
{
|
||||
id: "1", icon: Zap,
|
||||
title: "Projects Completed", value: "2,500+"},
|
||||
title: "Projects Completed", value: "2,500+"
|
||||
},
|
||||
{
|
||||
id: "2", icon: Star,
|
||||
title: "5-Star Reviews", value: "450+"},
|
||||
title: "5-Star Reviews", value: "450+"
|
||||
},
|
||||
{
|
||||
id: "3", icon: Users,
|
||||
title: "Happy Customers", value: "1,800+"},
|
||||
title: "Happy Customers", value: "1,800+"
|
||||
},
|
||||
{
|
||||
id: "4", icon: Calendar,
|
||||
title: "Years in Business", value: "15+"},
|
||||
title: "Years in Business", value: "15+"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="What Our Customers Say"
|
||||
description="Real reviews from satisfied Richmond homeowners"
|
||||
tag="Customer Reviews"
|
||||
tagIcon={MessageCircle}
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
title="Meet Our Team"
|
||||
description="Skilled professionals dedicated to exceeding your expectations"
|
||||
tag="Our Experts"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson, Homeowner", date: "Date: 15 January 2025", title: "Excellent service and professional team!", quote:
|
||||
"Earl Boys Services did an amazing job assembling my furniture and fixing my doors. Very professional and fast service. They were courteous, cleaned up after themselves, and charged a fair price. Highly recommend!", tag: "Furniture Assembly & Door Repair", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-handsome-man-holding-her-girlfriend-s-hand_23-2147891265.jpg", avatarAlt: "Sarah Johnson", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-handsome-man-holding-her-girlfriend-s-hand_23-2147891265.jpg", imageAlt: "satisfied customer happy review"},
|
||||
id: "1", name: "Mike Earl", role: "Owner & Lead Technician", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-man-civil-engineer-safety-hat_185193-109460.jpg", imageAlt: "Mike Earl - Owner and Lead Technician"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen, Property Owner", date: "Date: 22 December 2024", title: "Great experience with reliable team", quote:
|
||||
"Great experience. Friendly team and very reliable. They arrived on time, communicated clearly about the work needed, and completed everything efficiently. They mounted our TV perfectly and cleaned up everything after. Will definitely use them again for future projects.", tag: "TV Mounting & Installation", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/closeup-charming-delighted-cute-female-customer-give-positive-feedback-show-thumbsup-like-gesture_1258-254022.jpg", avatarAlt: "Michael Chen", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/closeup-charming-delighted-cute-female-customer-give-positive-feedback-show-thumbsup-like-gesture_1258-254022.jpg", imageAlt: "happy customer portrait photo"},
|
||||
{
|
||||
id: "3", name: "Jennifer Martinez, Homeowner", date: "Date: 08 December 2024", title: "Quick response and excellent work", quote:
|
||||
"Quick response and excellent work. They fixed our plumbing issue promptly and professionally. The pricing was transparent with no surprises. Earl Boys Services has become my go-to for any home repair needs. Highly recommended to all my neighbors!", tag: "Plumbing Repair", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/medium-shot-smiley-women-home_23-2149248712.jpg", avatarAlt: "Jennifer Martinez", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/medium-shot-smiley-women-home_23-2149248712.jpg", imageAlt: "customer satisfaction portrait"},
|
||||
{
|
||||
id: "4", name: "Robert Davis, Homeowner", date: "Date: 20 November 2024", title: "Professional, courteous, and trustworthy", quote:
|
||||
"Professional, courteous, and trustworthy. I had them do some electrical work and wall repairs. They took their time to explain everything, answered all my questions, and did quality work. Definitely the most professional service team I've worked with in Richmond.", tag: "Electrical & Wall Repair", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-female-violet-shirt-showing-thumbs-up-looking-cheerful-front-view_176474-14452.jpg", avatarAlt: "Robert Davis", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-female-violet-shirt-showing-thumbs-up-looking-cheerful-front-view_176474-14452.jpg", imageAlt: "five star review customer"},
|
||||
{
|
||||
id: "5", name: "Lisa Thompson, Homeowner", date: "Date: 05 November 2024", title: "Outstanding painting and flooring work", quote:
|
||||
"Outstanding work on our kitchen painting and flooring installation. They were detail-oriented, clean workers, and finished ahead of schedule. The transformation was amazing! We appreciate their professionalism and attention to quality. Five stars!", tag: "Painting & Flooring", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/crazy-businessman-worried-expression_1194-3668.jpg", avatarAlt: "Lisa Thompson", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/crazy-businessman-worried-expression_1194-3668.jpg", imageAlt: "customer success story portrait"},
|
||||
{
|
||||
id: "6", name: "Kevin Rodriguez, Homeowner", date: "Date: 18 October 2024", title: "Five-star service from start to finish", quote:
|
||||
"Five-star service from start to finish. Mike and his team came out to handle multiple repairs around our house. They were efficient, friendly, and delivered exceptional results. The quality of their work and customer service is unmatched in Richmond. Booking them again soon!", tag: "Multiple Services", avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg", avatarAlt: "Kevin Rodriguez", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg", imageAlt: "excellent service review customer"},
|
||||
id: "2", name: "David Smith", role: "Service Manager", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-young-business-woman-posing-with-crossed-arms_23-2149206523.jpg", imageAlt: "David Smith - Service Manager"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Ready to Get Started?"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Need Professional Home Services in Richmond, VA?"
|
||||
description="Contact Earl Boys Services today for a fast, free estimate. We're ready to help with all your home repair and improvement needs."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call: 804-938-0669", href: "tel:804-938-0669"},
|
||||
{
|
||||
text: "Request Service", href: "/contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={true}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -294,45 +326,59 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Plumbing", href: "/services/plumbing"},
|
||||
label: "Plumbing", href: "/services/plumbing"
|
||||
},
|
||||
{
|
||||
label: "Electrical", href: "/services/electrical"},
|
||||
label: "Electrical", href: "/services/electrical"
|
||||
},
|
||||
{
|
||||
label: "Painting", href: "/services/painting"},
|
||||
label: "Painting", href: "/services/painting"
|
||||
},
|
||||
{
|
||||
label: "Flooring", href: "/services/flooring"},
|
||||
label: "Flooring", href: "/services/flooring"
|
||||
},
|
||||
{
|
||||
label: "Wall Mounting", href: "#services"},
|
||||
label: "Wall Mounting", href: "#services"
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
label: "About Us", href: "#about"
|
||||
},
|
||||
{
|
||||
label: "Our Team", href: "#team"},
|
||||
label: "Our Team", href: "#team"
|
||||
},
|
||||
{
|
||||
label: "Reviews", href: "#testimonials"},
|
||||
label: "Reviews", href: "#testimonials"
|
||||
},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
label: "Contact", href: "/contact"
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Call: 804-938-0669", href: "tel:804-938-0669"},
|
||||
label: "Call: 804-938-0669", href: "tel:804-938-0669"
|
||||
},
|
||||
{
|
||||
label: "Richmond, VA", href: "#"},
|
||||
label: "Richmond, VA", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Request Service", href: "/contact"},
|
||||
label: "Request Service", href: "/contact"
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
label: "Privacy Policy", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
label: "Terms of Service", href: "#"
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user