Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-04-11 18:34:42 +00:00

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { AlertTriangle, Droplet, Flame } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -26,28 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="SwiftFix Plumbing"
button={{
text: "Call Now: (555) 123-4567",
href: "tel:5551234567",
}}
text: "Call Now: (555) 123-4567", href: "tel:5551234567"}}
/>
</div>
@@ -58,28 +44,13 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Drain Cleaning",
description: "Quick, professional solutions for clogged drains.",
bentoComponent: "reveal-icon",
icon: Droplet,
imageSrc: "http://img.b2bpic.net/free-photo/fire-hydrant-use-structure-fire_1153-4467.jpg",
imageAlt: "drain cleaning professional service",
title: "Drain Cleaning", description: "Quick, professional solutions for clogged drains.", bentoComponent: "reveal-icon", icon: Droplet
},
{
title: "Water Heaters",
description: "Expert repair and installation of water systems.",
bentoComponent: "reveal-icon",
icon: Flame,
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721527.jpg?_wi=4",
imageAlt: "drain cleaning professional service",
title: "Water Heaters", description: "Expert repair and installation of water systems.", bentoComponent: "reveal-icon", icon: Flame
},
{
title: "Emergency Repairs",
description: "24/7 responsiveness for your plumbing emergencies.",
bentoComponent: "reveal-icon",
icon: AlertTriangle,
imageSrc: "http://img.b2bpic.net/free-photo/auto-service-salon-doign-car-wrapping_23-2149593846.jpg?_wi=1",
imageAlt: "drain cleaning professional service",
title: "Emergency Repairs", description: "24/7 responsiveness for your plumbing emergencies.", bentoComponent: "reveal-icon", icon: AlertTriangle
},
]}
title="Quality Services We Provide"
@@ -97,52 +68,29 @@ export default function LandingPage() {
description="High quality service standards."
features={[
{
title: "Precision",
description: "Accurate repairs.",
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-using-wrench-tighten-water-faucet-kitchen-seen-up-close_662251-2697.jpg",
},
title: "Precision", description: "Accurate repairs.", imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-using-wrench-tighten-water-faucet-kitchen-seen-up-close_662251-2697.jpg"},
{
title: "Tools",
description: "Modern equipment.",
imageSrc: "http://img.b2bpic.net/free-photo/plumber-assembling-pipe_1098-17772.jpg",
},
title: "Tools", description: "Modern equipment.", imageSrc: "http://img.b2bpic.net/free-photo/plumber-assembling-pipe_1098-17772.jpg"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/concentrated-middle-aged-blonde-delivery-woman-blue-uniform-cap-standing-profile-view-writing-with-pencil-clipboard-isolated-orange-wall-with-copy-space_141793-112756.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/concentrated-middle-aged-blonde-delivery-woman-blue-uniform-cap-standing-profile-view-writing-with-pencil-clipboard-isolated-orange-wall-with-copy-space_141793-112756.jpg"
logoText="SwiftFix Plumbing"
columns={[
{
title: "Services",
items: [
{
label: "Drain Cleaning",
href: "/services",
},
{
label: "Water Heaters",
href: "/services",
},
{
label: "Emergency Repair",
href: "/services",
},
title: "Services", items: [
{ label: "Drain Cleaning", href: "/services" },
{ label: "Water Heaters", href: "/services" },
{ label: "Emergency Repair", href: "/services" },
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
]}