Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-07 12:25:14 +00:00

View File

@@ -3,12 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { AlertTriangle, Droplet, Flame, Search, Wrench } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -23,133 +23,60 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Cronos Moreleta Park"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Cronos Moreleta Park"
/>
</div>
<div id="feature" data-section="feature">
<FeatureBorderGlow
textboxLayout="default"
useInvertedBackground={false}
features={[
{
icon: AlertTriangle,
title: "Emergency Plumbing",
description: "Rapid response for burst pipes, blocked drains, and critical issues.",
},
{
icon: Search,
title: "Leak Detection",
description: "Advanced diagnostic tools to find hidden leaks before they damage your home.",
},
{
icon: Droplet,
title: "Drain Cleaning",
description: "Clear your pipes and drains with our high-pressure cleaning technology.",
},
{
icon: Wrench,
title: "Pipe Installation",
description: "Expert pipe replacement and new installation services.",
},
{
icon: Flame,
title: "Water Heaters",
description: "Installation, repair, and maintenance for all heating systems.",
},
{
icon: Wrench,
title: "Bathroom Plumbing",
description: "Fix your sink, shower, and toilet systems with ease.",
},
]}
title="Our Professional Services"
description="We offer a wide range of plumbing and electrical solutions to keep your property running smoothly."
/>
</div>
<div id="feature" data-section="feature">
<FeatureBorderGlow
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{ icon: AlertTriangle, title: "Emergency Plumbing", description: "Rapid response for burst pipes, blocked drains, and critical issues." },
{ icon: Search, title: "Leak Detection", description: "Advanced diagnostic tools to find hidden leaks before they damage your home." },
{ icon: Droplet, title: "Drain Cleaning", description: "Clear your pipes and drains with our high-pressure cleaning technology." },
{ icon: Wrench, title: "Pipe Installation", description: "Expert pipe replacement and new installation services." },
{ icon: Flame, title: "Water Heaters", description: "Installation, repair, and maintenance for all heating systems." },
{ icon: Wrench, title: "Bathroom Plumbing", description: "Fix your sink, shower, and toilet systems with ease." }
]}
title="Our Professional Services"
description="We offer a wide range of plumbing and electrical solutions to keep your property running smoothly."
/>
</div>
<div id="metric" data-section="metric">
<MetricCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Service Standards"
description="Efficiency and transparency in every job."
metrics={[
{
id: "ms1",
value: "1hr",
description: "Average arrival time for emergency",
},
{
id: "ms2",
value: "100%",
description: "Customer satisfaction rate",
},
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Service Standards"
description="Efficiency and transparency in every job."
metrics={[
{ id: "ms1", value: "1hr", description: "Average arrival time for emergency" },
{ id: "ms2", value: "100%", description: "Customer satisfaction rate" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Services",
href: "/services",
},
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "793 Rubenstein Dr",
href: "#",
},
{
label: "Moreleta Park, Pretoria",
href: "#",
},
{
label: "0695953715",
href: "tel:0695953715",
},
],
},
]}
logoText="Cronos Moreleta Park"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Services", href: "/services" }, { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "793 Rubenstein Dr", href: "#" }, { label: "Moreleta Park, Pretoria", href: "#" }, { label: "0695953715", href: "tel:0695953715" }] }
]}
logoText="Cronos Moreleta Park"
/>
</div>
</ReactLenis>
</ThemeProvider>
);