Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70897fe173 | |||
| e7e6dfc1c6 | |||
| db8a491e21 | |||
| 28ea781448 | |||
| 0a17c2afe7 |
1435
src/app/layout.tsx
1435
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
358
src/app/page.tsx
358
src/app/page.tsx
@@ -11,45 +11,42 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Sparkles, Zap, Quote } from "lucide-react";
|
||||
import { useState, useEffect } from "react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Portfolio", href: "/portfolio" },
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Portfolio", href: "#portfolio" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Products",
|
||||
items: [
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Website Design", href: "/services" },
|
||||
{ label: "Hosting Plans", href: "/pricing" },
|
||||
title: "Products", items: [
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Website Design", href: "#services" },
|
||||
{ label: "Hosting Plans", href: "#pricing" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "Contact Us", href: "/contact" },
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Email Support", href: "mailto:support@forgewebco.com" },
|
||||
{ label: "FAQ", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Contact Policy", href: "#" },
|
||||
@@ -57,6 +54,36 @@ export default function HomePage() {
|
||||
},
|
||||
];
|
||||
|
||||
const [currentWebsiteIndex, setCurrentWebsiteIndex] = useState(0);
|
||||
|
||||
const websites = [
|
||||
{
|
||||
name: "Forge Web Co.", url: "forge-web-co.com", color: "from-blue-400 to-blue-600", content: [
|
||||
"Professional Website Design", "Mobile Optimized", "SEO Ready", "Fast Loading", "Contact Today"],
|
||||
},
|
||||
{
|
||||
name: "Tech Innovations", url: "tech-innovations.io", color: "from-purple-400 to-purple-600", content: [
|
||||
"Cutting Edge Technology", "Innovation First", "Custom Solutions", "Expert Team", "Get Started"],
|
||||
},
|
||||
{
|
||||
name: "Creative Studio", url: "creative-studio.design", color: "from-pink-400 to-pink-600", content: [
|
||||
"Creative Design Services", "Stunning Visuals", "Brand Excellence", "Portfolio Gallery", "See Our Work"],
|
||||
},
|
||||
{
|
||||
name: "Digital Solutions", url: "digital-solutions.co", color: "from-green-400 to-green-600", content: [
|
||||
"Digital Marketing", "Business Growth", "Data Driven", "Results Focused", "Schedule Consultation"],
|
||||
},
|
||||
];
|
||||
|
||||
useEffect(() => {
|
||||
const interval = setInterval(() => {
|
||||
setCurrentWebsiteIndex((prev) => (prev + 1) % websites.length);
|
||||
}, 3000);
|
||||
return () => clearInterval(interval);
|
||||
}, [websites.length]);
|
||||
|
||||
const currentWebsite = websites[currentWebsiteIndex];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -75,60 +102,104 @@ export default function HomePage() {
|
||||
brandName="Forge Web Co."
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Request a Website",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Request a Website", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Professional Websites Built for Small Businesses"
|
||||
description="Forge Web Co. builds clean, mobile-friendly websites that help local businesses get found online and turn visitors into customers. From landscaping to auto detailing, we've got your industry covered."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Simple. Effective. Results."
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "View Pricing", href: "/pricing" },
|
||||
{ text: "Request a Website", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-landscaping-service-landing-page_23-2151058611.jpg",
|
||||
imageAlt: "Professional landscaping company website example",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/creative-design-traveling-landing-page_23-2148314439.jpg",
|
||||
imageAlt: "Tree service removal business website design",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/electrician-man-landing-page-template_23-2148819107.jpg",
|
||||
imageAlt: "Construction contractor professional website design",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/car-dealer-business-landing-page-template_23-2149962071.jpg",
|
||||
imageAlt: "Auto detailing car wash website design",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-holding-tablet-with-screen-camera_23-2148114105.jpg",
|
||||
imageAlt: "Farm business agricultural company website",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/business-template-design_23-2150316189.jpg",
|
||||
imageAlt: "Modern small business website showcase",
|
||||
},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
/>
|
||||
<div className="relative min-h-screen flex items-center justify-center px-4 py-20">
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Professional Websites Built for Small Businesses"
|
||||
description="Forge Web Co. builds clean, mobile-friendly websites that help local businesses get found online and turn visitors into customers. From landscaping to auto detailing, we've got your industry covered."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Simple. Effective. Results."
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "View Pricing", href: "#pricing" },
|
||||
{ text: "Request a Website", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-psd/flat-design-landscaping-service-landing-page_23-2151058611.jpg", imageAlt: "Professional landscaping company website example"},
|
||||
{
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-vector/creative-design-traveling-landing-page_23-2148314439.jpg", imageAlt: "Tree service removal business website design"},
|
||||
{
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-vector/electrician-man-landing-page-template_23-2148819107.jpg", imageAlt: "Construction contractor professional website design"},
|
||||
{
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-vector/car-dealer-business-landing-page-template_23-2149962071.jpg", imageAlt: "Auto detailing car wash website design"},
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/couple-holding-tablet-with-screen-camera_23-2148114105.jpg", imageAlt: "Farm business agricultural company website"},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-psd/business-template-design_23-2150316189.jpg", imageAlt: "Modern small business website showcase"},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
/>
|
||||
|
||||
{/* Smartphone Render with Actual Website Content */}
|
||||
<div className="absolute bottom-0 right-0 transform translate-y-1/3 mr-8 hidden lg:block">
|
||||
{/* Glow effect behind smartphone */}
|
||||
<div className="absolute inset-0 bg-gradient-to-r from-blue-500 via-purple-500 to-pink-500 rounded-3xl blur-3xl opacity-40 -z-10 animate-pulse"></div>
|
||||
|
||||
{/* Smartphone frame */}
|
||||
<div className="relative w-80 h-96 bg-black rounded-3xl shadow-2xl border-8 border-gray-800 overflow-hidden">
|
||||
{/* Notch */}
|
||||
<div className="absolute top-0 left-1/2 transform -translate-x-1/2 w-32 h-6 bg-black rounded-b-2xl z-10"></div>
|
||||
|
||||
{/* Screen content */}
|
||||
<div className={`w-full h-full bg-gradient-to-br ${currentWebsite.color} p-6 flex flex-col justify-between overflow-hidden transition-all duration-700 ease-in-out relative`}>
|
||||
{/* Website header */}
|
||||
<div className="text-white z-10">
|
||||
<h3 className="text-lg font-bold truncate">{currentWebsite.name}</h3>
|
||||
<p className="text-xs opacity-80 truncate">{currentWebsite.url}</p>
|
||||
</div>
|
||||
|
||||
{/* Website content - displaying actual website sections */}
|
||||
<div className="flex-1 flex flex-col gap-4 justify-center z-10 transition-opacity duration-500">
|
||||
{currentWebsite.content.map((line, idx) => (
|
||||
<div
|
||||
key={idx}
|
||||
className={`${
|
||||
idx === 0
|
||||
? "h-4 bg-white opacity-100 rounded w-5/6 font-bold text-sm flex items-center"
|
||||
: idx < 3
|
||||
? "h-3 bg-white opacity-80 rounded w-4/5"
|
||||
: idx === 3
|
||||
? "h-2 bg-white opacity-60 rounded w-full"
|
||||
: "h-3 bg-white opacity-20 rounded w-3/4 font-semibold text-xs flex items-center"
|
||||
}`}
|
||||
>
|
||||
{idx === 0 && <span className="text-white text-xs font-bold pl-1">{line}</span>}
|
||||
{idx === 4 && <span className="text-white text-xs font-semibold pl-1">{line}</span>}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{/* Website footer button */}
|
||||
<div className="bg-white bg-opacity-20 hover:bg-opacity-30 transition-all rounded px-4 py-2 text-center z-10 cursor-pointer transform hover:scale-105">
|
||||
<p className="text-white text-xs font-semibold">Learn More</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Home indicator */}
|
||||
<div className="absolute bottom-1 left-1/2 transform -translate-x-1/2 w-32 h-1 bg-black rounded-full"></div>
|
||||
</div>
|
||||
|
||||
{/* Website rotation indicators */}
|
||||
<div className="flex gap-2 justify-center mt-8">
|
||||
{websites.map((_, idx) => (
|
||||
<div
|
||||
key={idx}
|
||||
className={`h-2 rounded-full transition-all duration-500 ${
|
||||
idx === currentWebsiteIndex ? "w-8 bg-blue-500" : "w-2 bg-gray-300"
|
||||
}`}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
@@ -142,29 +213,11 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
tag: "Website Design",
|
||||
title: "Website Design",
|
||||
description: "Custom multi-page websites designed specifically for your business. Mobile-optimized, fast-loading, and built to turn visitors into customers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-working-from-home-together-desk_23-2149208565.jpg?_wi=1",
|
||||
imageAlt: "Custom website design service",
|
||||
},
|
||||
id: "1", tag: "Website Design", title: "Website Design", description: "Custom multi-page websites designed specifically for your business. Mobile-optimized, fast-loading, and built to turn visitors into customers.", imageSrc: "http://img.b2bpic.net/free-photo/man-woman-working-from-home-together-desk_23-2149208565.jpg?_wi=1", imageAlt: "Custom website design service"},
|
||||
{
|
||||
id: "2",
|
||||
tag: "Local Search Setup",
|
||||
title: "Local Search Setup",
|
||||
description: "Basic SEO structure, Google Business integration, and map placement to help local customers find you online.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smartphone-with-gps-application_1098-21636.jpg?_wi=1",
|
||||
imageAlt: "Local SEO and Google Business setup",
|
||||
},
|
||||
id: "2", tag: "Local Search Setup", title: "Local Search Setup", description: "Basic SEO structure, Google Business integration, and map placement to help local customers find you online.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smartphone-with-gps-application_1098-21636.jpg?_wi=1", imageAlt: "Local SEO and Google Business setup"},
|
||||
{
|
||||
id: "3",
|
||||
tag: "Hosting & Maintenance",
|
||||
title: "Hosting & Maintenance",
|
||||
description: "Secure hosting, monitoring, updates, and small content edits. We handle the technical details so you can focus on your business.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-tech-location-with-ai-servers_482257-89107.jpg?_wi=1",
|
||||
imageAlt: "Website hosting and maintenance service",
|
||||
},
|
||||
id: "3", tag: "Hosting & Maintenance", title: "Hosting & Maintenance", description: "Secure hosting, monitoring, updates, and small content edits. We handle the technical details so you can focus on your business.", imageSrc: "http://img.b2bpic.net/free-photo/high-tech-location-with-ai-servers_482257-89107.jpg?_wi=1", imageAlt: "Website hosting and maintenance service"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -178,44 +231,20 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "100%",
|
||||
title: "Mobile Friendly",
|
||||
items: [
|
||||
"Works perfectly on phones and tablets",
|
||||
"Fast loading speeds",
|
||||
"Easy to navigate on any device",
|
||||
],
|
||||
id: "1", value: "100%", title: "Mobile Friendly", items: [
|
||||
"Works perfectly on phones and tablets", "Fast loading speeds", "Easy to navigate on any device"],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "SEO",
|
||||
title: "Google Search Visibility",
|
||||
items: [
|
||||
"Structured for search engines",
|
||||
"Local business optimization",
|
||||
"Higher rankings for local searches",
|
||||
],
|
||||
id: "2", value: "SEO", title: "Google Search Visibility", items: [
|
||||
"Structured for search engines", "Local business optimization", "Higher rankings for local searches"],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "Lead",
|
||||
title: "Simple Contact Forms",
|
||||
items: [
|
||||
"Easy for customers to reach you",
|
||||
"Capture leads automatically",
|
||||
"Multiple contact options",
|
||||
],
|
||||
id: "3", value: "Lead", title: "Simple Contact Forms", items: [
|
||||
"Easy for customers to reach you", "Capture leads automatically", "Multiple contact options"],
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "Support",
|
||||
title: "Ongoing Support",
|
||||
items: [
|
||||
"Monthly maintenance included",
|
||||
"Security updates handled",
|
||||
"Technical support from the team",
|
||||
],
|
||||
id: "4", value: "Support", title: "Ongoing Support", items: [
|
||||
"Monthly maintenance included", "Security updates handled", "Technical support from the team"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -231,38 +260,11 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
category: "Landscaping",
|
||||
title: "Green Spaces Landscaping",
|
||||
excerpt: "Multi-page website with service gallery, before/after photo gallery, and lead capture forms. Includes Google Maps integration and mobile optimization.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/environment-landing-page-template_23-2148726310.jpg?_wi=1",
|
||||
imageAlt: "Green Spaces Landscaping website",
|
||||
authorName: "Landscaping Services",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/male-firefighter-station-suit-helmet_23-2149206409.jpg",
|
||||
date: "2024",
|
||||
},
|
||||
id: "1", category: "Landscaping", title: "Green Spaces Landscaping", excerpt: "Multi-page website with service gallery, before/after photo gallery, and lead capture forms. Includes Google Maps integration and mobile optimization.", imageSrc: "http://img.b2bpic.net/free-vector/environment-landing-page-template_23-2148726310.jpg?_wi=1", imageAlt: "Green Spaces Landscaping website", authorName: "Landscaping Services", authorAvatar: "http://img.b2bpic.net/free-photo/male-firefighter-station-suit-helmet_23-2149206409.jpg", date: "2024"},
|
||||
{
|
||||
id: "2",
|
||||
category: "Tree Service",
|
||||
title: "Timber Tree Care",
|
||||
excerpt: "Professional website showcasing tree removal, trimming, and emergency services. Features service areas map and customer testimonials section.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/wild-nature-landing-page_23-2148724507.jpg?_wi=1",
|
||||
imageAlt: "Timber Tree Care website",
|
||||
authorName: "Tree Service",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/happy-foreman-auto-mechanic-workshop-using-touchpad-looking-camera_637285-9410.jpg",
|
||||
date: "2024",
|
||||
},
|
||||
id: "2", category: "Tree Service", title: "Timber Tree Care", excerpt: "Professional website showcasing tree removal, trimming, and emergency services. Features service areas map and customer testimonials section.", imageSrc: "http://img.b2bpic.net/free-vector/wild-nature-landing-page_23-2148724507.jpg?_wi=1", imageAlt: "Timber Tree Care website", authorName: "Tree Service", authorAvatar: "http://img.b2bpic.net/free-photo/happy-foreman-auto-mechanic-workshop-using-touchpad-looking-camera_637285-9410.jpg", date: "2024"},
|
||||
{
|
||||
id: "3",
|
||||
category: "Auto Detailing",
|
||||
title: "Shine Auto Detailing",
|
||||
excerpt: "E-commerce-ready website with service pricing, appointment booking integration, and photo gallery. Optimized for local searches and mobile customers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-car-car-showroom_1303-14216.jpg?_wi=1",
|
||||
imageAlt: "Shine Auto Detailing website",
|
||||
authorName: "Auto Detailing",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721579.jpg",
|
||||
date: "2024",
|
||||
},
|
||||
id: "3", category: "Auto Detailing", title: "Shine Auto Detailing", excerpt: "E-commerce-ready website with service pricing, appointment booking integration, and photo gallery. Optimized for local searches and mobile customers.", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-car-car-showroom_1303-14216.jpg?_wi=1", imageAlt: "Shine Auto Detailing website", authorName: "Auto Detailing", authorAvatar: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721579.jpg", date: "2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -279,53 +281,17 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Mike Johnson",
|
||||
handle: "Owner, Johnson Landscaping",
|
||||
testimonial: "Forge Web Co. got us online quickly and affordably. We've seen a real increase in calls from new customers. The monthly maintenance takes a huge weight off my shoulders.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153836.jpg?_wi=1",
|
||||
imageAlt: "Mike Johnson",
|
||||
},
|
||||
id: "1", name: "Mike Johnson", handle: "Owner, Johnson Landscaping", testimonial: "Forge Web Co. got us online quickly and affordably. We've seen a real increase in calls from new customers. The monthly maintenance takes a huge weight off my shoulders.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153836.jpg?_wi=1", imageAlt: "Mike Johnson"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sarah Chen",
|
||||
handle: "Owner, Timber Tree Care",
|
||||
testimonial: "Professional team, straightforward pricing, no technical jargon. They understood what we needed and delivered exactly that. Best investment we made this year.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-female-employee-standing-with-crossed-arms-looking-confident-wearing-white-shirt-standing-office_141793-21249.jpg",
|
||||
imageAlt: "Sarah Chen",
|
||||
},
|
||||
id: "2", name: "Sarah Chen", handle: "Owner, Timber Tree Care", testimonial: "Professional team, straightforward pricing, no technical jargon. They understood what we needed and delivered exactly that. Best investment we made this year.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-female-employee-standing-with-crossed-arms-looking-confident-wearing-white-shirt-standing-office_141793-21249.jpg", imageAlt: "Sarah Chen"},
|
||||
{
|
||||
id: "3",
|
||||
name: "David Rodriguez",
|
||||
handle: "Owner, Rodriguez Contracting",
|
||||
testimonial: "Our website brings in consistent leads every week. It looks professional without being complicated. Highly recommend for any local service business.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-with-arms-crossed-kitchen_107420-12356.jpg",
|
||||
imageAlt: "David Rodriguez",
|
||||
},
|
||||
id: "3", name: "David Rodriguez", handle: "Owner, Rodriguez Contracting", testimonial: "Our website brings in consistent leads every week. It looks professional without being complicated. Highly recommend for any local service business.", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-with-arms-crossed-kitchen_107420-12356.jpg", imageAlt: "David Rodriguez"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jennifer Martinez",
|
||||
handle: "Owner, Shine Auto Detailing",
|
||||
testimonial: "The team made the whole process easy. They explained everything in plain language and now I have a website that actually generates business. Very happy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg",
|
||||
imageAlt: "Jennifer Martinez",
|
||||
},
|
||||
id: "4", name: "Jennifer Martinez", handle: "Owner, Shine Auto Detailing", testimonial: "The team made the whole process easy. They explained everything in plain language and now I have a website that actually generates business. Very happy.", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg", imageAlt: "Jennifer Martinez"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Tom Williams",
|
||||
handle: "Owner, Prairie Farm Services",
|
||||
testimonial: "Started getting online inquiries immediately after launch. Their support team is responsive and helpful. This is how a service business should get online.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-farmer-woman-checking-strawberry-farm_1150-6771.jpg",
|
||||
imageAlt: "Tom Williams",
|
||||
},
|
||||
id: "5", name: "Tom Williams", handle: "Owner, Prairie Farm Services", testimonial: "Started getting online inquiries immediately after launch. Their support team is responsive and helpful. This is how a service business should get online.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-farmer-woman-checking-strawberry-farm_1150-6771.jpg", imageAlt: "Tom Williams"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Lisa Anderson",
|
||||
handle: "Owner, Precision Contractors",
|
||||
testimonial: "Affordable, professional, and results-driven. They didn't oversell us on features we didn't need. This is exactly what a small business needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-woman-with-suit_23-2148317351.jpg",
|
||||
imageAlt: "Lisa Anderson",
|
||||
},
|
||||
id: "6", name: "Lisa Anderson", handle: "Owner, Precision Contractors", testimonial: "Affordable, professional, and results-driven. They didn't oversell us on features we didn't need. This is exactly what a small business needs.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-woman-with-suit_23-2148317351.jpg", imageAlt: "Lisa Anderson"},
|
||||
]}
|
||||
speed={40}
|
||||
/>
|
||||
@@ -359,4 +325,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user