Merge version_1 into main #2
@@ -16,44 +16,6 @@ export default function AboutPage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Plumbing", href: "/services" },
|
||||
{ label: "Electrical", href: "/services" },
|
||||
{ label: "HVAC", href: "/services" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -93,29 +55,17 @@ export default function AboutPage() {
|
||||
tag="By The Numbers"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "15+",
|
||||
description:
|
||||
"Years of continuous operation and growth in the local service industry",
|
||||
},
|
||||
id: "1", value: "15+", description:
|
||||
"Years of continuous operation and growth in the local service industry"},
|
||||
{
|
||||
id: "2",
|
||||
value: "650+",
|
||||
description:
|
||||
"Satisfied customers who trust us with their homes and businesses",
|
||||
},
|
||||
id: "2", value: "650+", description:
|
||||
"Satisfied customers who trust us with their homes and businesses"},
|
||||
{
|
||||
id: "3",
|
||||
value: "4.9/5",
|
||||
description:
|
||||
"Average customer rating based on verified Google and online reviews",
|
||||
},
|
||||
id: "3", value: "4.9/5", description:
|
||||
"Average customer rating based on verified Google and online reviews"},
|
||||
{
|
||||
id: "4",
|
||||
value: "100%",
|
||||
description:
|
||||
"Licensed, insured, and committed to satisfaction guarantee",
|
||||
},
|
||||
id: "4", value: "100%", description:
|
||||
"Licensed, insured, and committed to satisfaction guarantee"},
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
@@ -138,7 +88,39 @@ export default function AboutPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Plumbing", href: "/services#plumbing" },
|
||||
{ label: "Electrical", href: "/services#electrical" },
|
||||
{ label: "HVAC", href: "/services#hvac" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 LocalPro Services. All rights reserved. License #LP-12345"
|
||||
bottomRightText="Serving the community since 2010"
|
||||
/>
|
||||
|
||||
@@ -15,44 +15,6 @@ export default function ContactPage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Plumbing", href: "/services" },
|
||||
{ label: "Electrical", href: "/services" },
|
||||
{ label: "HVAC", href: "/services" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -115,7 +77,39 @@ export default function ContactPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Plumbing", href: "/services#plumbing" },
|
||||
{ label: "Electrical", href: "/services#electrical" },
|
||||
{ label: "HVAC", href: "/services#hvac" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 LocalPro Services. All rights reserved. License #LP-12345"
|
||||
bottomRightText="Serving the community since 2010"
|
||||
/>
|
||||
|
||||
@@ -7,46 +7,30 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Fast, Reliable Local Home Services | Same-Day Response",
|
||||
description: "Professional home repair and maintenance services. Licensed, insured, and available 24/7. Call now for free estimate.",
|
||||
keywords: "plumbing, electrical, HVAC, home repair, local services, same-day service",
|
||||
metadataBase: new URL("https://localpro-services.com"),
|
||||
title: "Fast, Reliable Local Home Services | Same-Day Response", description: "Professional home repair and maintenance services. Licensed, insured, and available 24/7. Call now for free estimate.", keywords: "plumbing, electrical, HVAC, home repair, local services, same-day service", metadataBase: new URL("https://localpro-services.com"),
|
||||
alternates: {
|
||||
canonical: "https://localpro-services.com",
|
||||
},
|
||||
canonical: "https://localpro-services.com"},
|
||||
openGraph: {
|
||||
title: "Professional Local Services - Available 24/7",
|
||||
description: "Licensed and insured home services. Call for immediate assistance or free estimate.",
|
||||
type: "website",
|
||||
siteName: "LocalPro Services",
|
||||
images: [
|
||||
title: "Professional Local Services - Available 24/7", description: "Licensed and insured home services. Call for immediate assistance or free estimate.", type: "website", siteName: "LocalPro Services", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/diverse-team-working-storehouse-inventory_482257-108883.jpg",
|
||||
alt: "Professional home service team",
|
||||
},
|
||||
url: "http://img.b2bpic.net/free-photo/diverse-team-working-storehouse-inventory_482257-108883.jpg", alt: "Professional home service team"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Local Home Services",
|
||||
description: "Fast, reliable repairs available 24/7. Same-day service in your area.",
|
||||
images: ["http://img.b2bpic.net/free-photo/diverse-team-working-storehouse-inventory_482257-108883.jpg"],
|
||||
card: "summary_large_image", title: "Professional Local Home Services", description: "Fast, reliable repairs available 24/7. Same-day service in your area.", images: ["http://img.b2bpic.net/free-photo/diverse-team-working-storehouse-inventory_482257-108883.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
|
||||
262
src/app/page.tsx
262
src/app/page.tsx
@@ -30,44 +30,6 @@ export default function HomePage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Plumbing", href: "/services" },
|
||||
{ label: "Electrical", href: "/services" },
|
||||
{ label: "HVAC", href: "/services" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -100,59 +62,42 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Call Now: (555) 0123", href: "tel:+1-555-0123" },
|
||||
{ text: "Request a Quote", href: "/contact" },
|
||||
{ text: "Request a Quote", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
dashboard={{
|
||||
title: "Service Availability",
|
||||
logoIcon: Clock,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-working-storehouse-inventory_482257-108883.jpg",
|
||||
imageAlt: "Professional home service team",
|
||||
searchPlaceholder: "Search services...",
|
||||
sidebarItems: [
|
||||
title: "Service Availability", logoIcon: Clock,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-working-storehouse-inventory_482257-108883.jpg", imageAlt: "Professional home service team", searchPlaceholder: "Search services...", sidebarItems: [
|
||||
{ icon: Home, active: true },
|
||||
{ icon: Wrench },
|
||||
{ icon: Phone },
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Emergency Service", href: "tel:+1-555-0123" },
|
||||
{ text: "Schedule", href: "/contact" },
|
||||
{ text: "Schedule", href: "#contact" },
|
||||
],
|
||||
stats: [
|
||||
{
|
||||
title: "Happy Customers",
|
||||
values: [450, 520, 650],
|
||||
description: "Trusted by the community",
|
||||
},
|
||||
title: "Happy Customers", values: [450, 520, 650],
|
||||
description: "Trusted by the community"},
|
||||
{
|
||||
title: "Years in Business",
|
||||
values: [12, 13, 15],
|
||||
description: "Proven track record",
|
||||
},
|
||||
title: "Years in Business", values: [12, 13, 15],
|
||||
description: "Proven track record"},
|
||||
{
|
||||
title: "5-Star Rating",
|
||||
values: [4.8, 4.9, 5],
|
||||
valueSuffix: "/5",
|
||||
description: "Google reviews",
|
||||
},
|
||||
title: "5-Star Rating", values: [4.8, 4.9, 5],
|
||||
valueSuffix: "/5", description: "Google reviews"},
|
||||
],
|
||||
listTitle: "Quick Response",
|
||||
listItems: [
|
||||
listTitle: "Quick Response", listItems: [
|
||||
{
|
||||
icon: CheckCircle,
|
||||
title: "Same-day service available",
|
||||
status: "Fast",
|
||||
},
|
||||
title: "Same-day service available", status: "Fast"},
|
||||
{ icon: Shield, title: "Licensed & fully insured", status: "Safe" },
|
||||
{
|
||||
icon: DollarSign,
|
||||
title: "Transparent pricing",
|
||||
status: "Fair",
|
||||
},
|
||||
title: "Transparent pricing", status: "Fair"},
|
||||
],
|
||||
chartTitle: "Response Times",
|
||||
chartData: [
|
||||
chartTitle: "Response Times", chartData: [
|
||||
{ value: 95 },
|
||||
{ value: 87 },
|
||||
{ value: 92 },
|
||||
@@ -182,32 +127,17 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Plumbing",
|
||||
description:
|
||||
"Repairs, installations, and emergency plumbing services for your home",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg?_wi=1",
|
||||
imageAlt: "Professional plumbing service",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123",
|
||||
},
|
||||
title: "Plumbing", description:
|
||||
"Repairs, installations, and emergency plumbing services for your home", imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg", imageAlt: "Professional plumbing service", buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123"},
|
||||
{
|
||||
title: "Electrical",
|
||||
description:
|
||||
"Licensed electrician services for repairs, upgrades, and safety inspections",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-near-board-with-wires-installation-connection-electrics_169016-5875.jpg?_wi=1",
|
||||
imageAlt: "Electrical repair and installation",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123",
|
||||
},
|
||||
title: "Electrical", description:
|
||||
"Licensed electrician services for repairs, upgrades, and safety inspections", imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-near-board-with-wires-installation-connection-electrics_169016-5875.jpg", imageAlt: "Electrical repair and installation", buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123"},
|
||||
{
|
||||
title: "HVAC",
|
||||
description:
|
||||
"Heating and cooling system maintenance, repair, and replacement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=1",
|
||||
imageAlt: "HVAC system service",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123",
|
||||
},
|
||||
title: "HVAC", description:
|
||||
"Heating and cooling system maintenance, repair, and replacement", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg", imageAlt: "HVAC system service", buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -222,29 +152,17 @@ export default function HomePage() {
|
||||
tag="Our Promise"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "24/7",
|
||||
description:
|
||||
"Emergency service available around the clock for urgent repairs",
|
||||
},
|
||||
id: "1", value: "24/7", description:
|
||||
"Emergency service available around the clock for urgent repairs"},
|
||||
{
|
||||
id: "2",
|
||||
value: "100%",
|
||||
description:
|
||||
"Satisfaction guarantee backed by our commitment to quality work",
|
||||
},
|
||||
id: "2", value: "100%", description:
|
||||
"Satisfaction guarantee backed by our commitment to quality work"},
|
||||
{
|
||||
id: "3",
|
||||
value: "$0",
|
||||
description:
|
||||
"No hidden fees—transparent pricing before any work begins",
|
||||
},
|
||||
id: "3", value: "$0", description:
|
||||
"No hidden fees—transparent pricing before any work begins"},
|
||||
{
|
||||
id: "4",
|
||||
value: "15min",
|
||||
description:
|
||||
"Average response time to service requests in your area",
|
||||
},
|
||||
id: "4", value: "15min", description:
|
||||
"Average response time to service requests in your area"},
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
@@ -260,83 +178,23 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson, Homeowner",
|
||||
date: "Date: 15 November 2024",
|
||||
title: "Outstanding Service, Highly Recommended!",
|
||||
quote:
|
||||
"Called on a Saturday morning with a burst pipe, and they were here within 30 minutes. Professional, friendly, and fixed the issue quickly. Worth every penny!",
|
||||
tag: "Plumbing Emergency",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
avatarAlt: "Sarah Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1",
|
||||
imageAlt: "Sarah Johnson",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson, Homeowner", date: "Date: 15 November 2024", title: "Outstanding Service, Highly Recommended!", quote:
|
||||
"Called on a Saturday morning with a burst pipe, and they were here within 30 minutes. Professional, friendly, and fixed the issue quickly. Worth every penny!", tag: "Plumbing Emergency", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Sarah Johnson"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen, Property Manager",
|
||||
date: "Date: 08 November 2024",
|
||||
title: "Reliable Partner for Multi-Unit Maintenance",
|
||||
quote:
|
||||
"We manage 5 properties and LocalPro Services is our go-to for all repairs. They're always prompt, professional, and competitive. Couldn't ask for better partners.",
|
||||
tag: "Commercial",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
avatarAlt: "Michael Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2",
|
||||
imageAlt: "Michael Chen",
|
||||
},
|
||||
id: "2", name: "Michael Chen, Property Manager", date: "Date: 08 November 2024", title: "Reliable Partner for Multi-Unit Maintenance", quote:
|
||||
"We manage 5 properties and LocalPro Services is our go-to for all repairs. They're always prompt, professional, and competitive. Couldn't ask for better partners.", tag: "Commercial", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Michael Chen"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez, Homeowner",
|
||||
date: "Date: 02 November 2024",
|
||||
title: "Saved Us Thousands on Our HVAC",
|
||||
quote:
|
||||
"Diagnosed a problem with our AC unit that another company said we needed to replace. Instead, they repaired it for $300. Their honesty and expertise are refreshing.",
|
||||
tag: "HVAC",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
avatarAlt: "Emily Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3",
|
||||
imageAlt: "Emily Rodriguez",
|
||||
},
|
||||
id: "3", name: "Emily Rodriguez, Homeowner", date: "Date: 02 November 2024", title: "Saved Us Thousands on Our HVAC", quote:
|
||||
"Diagnosed a problem with our AC unit that another company said we needed to replace. Instead, they repaired it for $300. Their honesty and expertise are refreshing.", tag: "HVAC", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Emily Rodriguez"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Martinez, Small Business Owner",
|
||||
date: "Date: 25 October 2024",
|
||||
title: "Exceptional Work, Fast Turnaround",
|
||||
quote:
|
||||
"Had an electrical issue threatening to shut down my office. They responded immediately and had everything fixed within hours. True professionals with great attention to detail.",
|
||||
tag: "Electrical",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
avatarAlt: "David Martinez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4",
|
||||
imageAlt: "David Martinez",
|
||||
},
|
||||
id: "4", name: "David Martinez, Small Business Owner", date: "Date: 25 October 2024", title: "Exceptional Work, Fast Turnaround", quote:
|
||||
"Had an electrical issue threatening to shut down my office. They responded immediately and had everything fixed within hours. True professionals with great attention to detail.", tag: "Electrical", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "David Martinez"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Williams, New Homeowner",
|
||||
date: "Date: 18 October 2024",
|
||||
title: "Perfect First Experience with Home Maintenance",
|
||||
quote:
|
||||
"First time homeowner feeling lost about maintenance. They explained everything, provided honest assessments, and made me feel confident. Will definitely call them again!",
|
||||
tag: "General Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
avatarAlt: "Jessica Williams",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5",
|
||||
imageAlt: "Jessica Williams",
|
||||
},
|
||||
id: "5", name: "Jessica Williams, New Homeowner", date: "Date: 18 October 2024", title: "Perfect First Experience with Home Maintenance", quote:
|
||||
"First time homeowner feeling lost about maintenance. They explained everything, provided honest assessments, and made me feel confident. Will definitely call them again!", tag: "General Service", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Jessica Williams"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Robert Thompson, Property Owner",
|
||||
date: "Date: 10 October 2024",
|
||||
title: "Best Investment for Peace of Mind",
|
||||
quote:
|
||||
"Been using their services for 3 years now. Reliable, affordable, and professional. They treat your home like it's their own. Highly recommend to anyone in the area.",
|
||||
tag: "Recurring Customer",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
avatarAlt: "Robert Thompson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=6",
|
||||
imageAlt: "Robert Thompson",
|
||||
},
|
||||
id: "6", name: "Robert Thompson, Property Owner", date: "Date: 10 October 2024", title: "Best Investment for Peace of Mind", quote:
|
||||
"Been using their services for 3 years now. Reliable, affordable, and professional. They treat your home like it's their own. Highly recommend to anyone in the area.", tag: "Recurring Customer", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Robert Thompson"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -367,7 +225,39 @@ export default function HomePage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Plumbing", href: "/services#plumbing" },
|
||||
{ label: "Electrical", href: "/services#electrical" },
|
||||
{ label: "HVAC", href: "/services#hvac" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 LocalPro Services. All rights reserved. License #LP-12345"
|
||||
bottomRightText="Serving the community since 2010"
|
||||
/>
|
||||
|
||||
@@ -17,44 +17,6 @@ export default function ServicesPage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Plumbing", href: "/services" },
|
||||
{ label: "Electrical", href: "/services" },
|
||||
{ label: "HVAC", href: "/services" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -96,32 +58,17 @@ export default function ServicesPage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Emergency Plumbing",
|
||||
description:
|
||||
"Burst pipes, leaks, and water damage—we respond fast with expert solutions to minimize damage and restore function quickly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg?_wi=2",
|
||||
imageAlt: "Emergency plumbing service",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123",
|
||||
},
|
||||
title: "Emergency Plumbing", description:
|
||||
"Burst pipes, leaks, and water damage—we respond fast with expert solutions to minimize damage and restore function quickly.", imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg", imageAlt: "Emergency plumbing service", buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123"},
|
||||
{
|
||||
title: "Electrical Safety",
|
||||
description:
|
||||
"Complete electrical diagnostics, safety inspections, and code-compliant repairs to keep your home protected and efficient.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-near-board-with-wires-installation-connection-electrics_169016-5875.jpg?_wi=2",
|
||||
imageAlt: "Electrical installation service",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123",
|
||||
},
|
||||
title: "Electrical Safety", description:
|
||||
"Complete electrical diagnostics, safety inspections, and code-compliant repairs to keep your home protected and efficient.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-near-board-with-wires-installation-connection-electrics_169016-5875.jpg", imageAlt: "Electrical installation service", buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123"},
|
||||
{
|
||||
title: "Climate Control",
|
||||
description:
|
||||
"HVAC maintenance, seasonal inspections, and emergency repairs to ensure comfortable temperatures year-round.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=2",
|
||||
imageAlt: "HVAC maintenance service",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123",
|
||||
},
|
||||
title: "Climate Control", description:
|
||||
"HVAC maintenance, seasonal inspections, and emergency repairs to ensure comfortable temperatures year-round.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg", imageAlt: "HVAC maintenance service", buttonIcon: Phone,
|
||||
buttonHref: "tel:+1-555-0123"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -146,7 +93,39 @@ export default function ServicesPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Plumbing", href: "/services#plumbing" },
|
||||
{ label: "Electrical", href: "/services#electrical" },
|
||||
{ label: "HVAC", href: "/services#hvac" },
|
||||
{ label: "Emergency", href: "tel:+1-555-0123" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Licensing", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 LocalPro Services. All rights reserved. License #LP-12345"
|
||||
bottomRightText="Serving the community since 2010"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user