Update src/app/services/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import { Briefcase, Clock } from "lucide-react";
|
||||
import { Briefcase, Clock, Handshake } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,25 +28,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
href: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "about",
|
||||
href: "/about",
|
||||
},
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Varna Local Services"
|
||||
bottomLeftText="Varna Local Experts"
|
||||
@@ -61,49 +49,21 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Home Repairs & Maintenance",
|
||||
tags: [
|
||||
"Plumbing",
|
||||
"Electrical",
|
||||
"Carpentry",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/automotive-logo-template_23-2150529646.jpg?_wi=2",
|
||||
imageAlt: "Repair service icon",
|
||||
},
|
||||
id: "1", title: "Home Repairs & Maintenance", tags: [
|
||||
"Plumbing", "Electrical", "Carpentry"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/automotive-logo-template_23-2150529646.jpg", imageAlt: "Repair service icon"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Expert Legal Advice",
|
||||
tags: [
|
||||
"Consultation",
|
||||
"Documentation",
|
||||
"Representation",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/call-center-background-lineal-design_23-2147946508.jpg?_wi=2",
|
||||
imageAlt: "Legal advice icon",
|
||||
},
|
||||
id: "2", title: "Expert Legal Advice", tags: [
|
||||
"Consultation", "Documentation", "Representation"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/call-center-background-lineal-design_23-2147946508.jpg", imageAlt: "Legal advice icon"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Professional Cleaning Services",
|
||||
tags: [
|
||||
"Residential",
|
||||
"Commercial",
|
||||
"Deep Clean",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/surface-cleaning-equipment-set_23-2148530195.jpg?_wi=2",
|
||||
imageAlt: "Cleaning service icon",
|
||||
},
|
||||
id: "3", title: "Professional Cleaning Services", tags: [
|
||||
"Residential", "Commercial", "Deep Clean"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/surface-cleaning-equipment-set_23-2148530195.jpg", imageAlt: "Cleaning service icon"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Home Renovation & Remodeling",
|
||||
tags: [
|
||||
"Kitchen",
|
||||
"Bathroom",
|
||||
"Office Remodel",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/minimalist-furniture-brand-logo_23-2148464043.jpg?_wi=2",
|
||||
imageAlt: "Renovation service icon",
|
||||
},
|
||||
id: "4", title: "Home Renovation & Remodeling", tags: [
|
||||
"Kitchen", "Bathroom", "Office Remodel"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/minimalist-furniture-brand-logo_23-2148464043.jpg", imageAlt: "Renovation service icon"},
|
||||
]}
|
||||
title="Our Professional Local Services"
|
||||
description="From urgent repairs to long-term projects, we provide reliable and expert solutions tailored to your needs in Varna. Discover our comprehensive range of offerings."
|
||||
@@ -119,25 +79,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "98%",
|
||||
title: "Client Satisfaction",
|
||||
description: "Achieved through dedication and quality service delivery.",
|
||||
icon: Handshake,
|
||||
id: "1", value: "98%", title: "Client Satisfaction", description: "Achieved through dedication and quality service delivery.", icon: Handshake,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "10+",
|
||||
title: "Years of Experience",
|
||||
description: "Serving the Varna community reliably since our inception.",
|
||||
icon: Briefcase,
|
||||
id: "2", value: "10+", title: "Years of Experience", description: "Serving the Varna community reliably since our inception.", icon: Briefcase,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "24/7",
|
||||
title: "Emergency Support",
|
||||
description: "Always ready to assist you when urgent needs arise.",
|
||||
icon: Clock,
|
||||
id: "3", value: "24/7", title: "Emergency Support", description: "Always ready to assist you when urgent needs arise.", icon: Clock,
|
||||
},
|
||||
]}
|
||||
title="Our Commitment to Excellence"
|
||||
@@ -150,20 +98,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Get a Free Quote"
|
||||
title="Ready for Trusted Local Services?"
|
||||
description="Contact us today to discuss your project or immediate needs. We're here to help you every step of the way with professional and reliable solutions."
|
||||
buttons={[
|
||||
{
|
||||
text: "Request a Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Request a Consultation", href: "/contact"},
|
||||
{
|
||||
text: "Call Us Now",
|
||||
href: "tel:+35952123456",
|
||||
},
|
||||
text: "Call Us Now", href: "tel:+35952123456"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -172,58 +115,35 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Home Repairs",
|
||||
href: "/services#repairs",
|
||||
},
|
||||
label: "Home Repairs", href: "/services#repairs"},
|
||||
{
|
||||
label: "Legal Advice",
|
||||
href: "/services#legal",
|
||||
},
|
||||
label: "Legal Advice", href: "/services#legal"},
|
||||
{
|
||||
label: "Cleaning Services",
|
||||
href: "/services#cleaning",
|
||||
},
|
||||
label: "Cleaning Services", href: "/services#cleaning"},
|
||||
{
|
||||
label: "Renovations",
|
||||
href: "/services#renovations",
|
||||
},
|
||||
label: "Renovations", href: "/services#renovations"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Our Team",
|
||||
href: "/about#team",
|
||||
},
|
||||
label: "Our Team", href: "/about#team"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "/careers",
|
||||
},
|
||||
label: "Careers", href: "/careers"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/contact#faq",
|
||||
},
|
||||
label: "FAQ", href: "/contact#faq"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "/privacy",
|
||||
},
|
||||
label: "Privacy Policy", href: "/privacy"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user