Update src/app/page.tsx

This commit is contained in:
2026-03-03 19:17:05 +00:00
parent 9806c265d6
commit 41b13f8528

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
@@ -42,16 +42,14 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCentered
<HeroSplit
title="Expert Plumbing & Heating for Westmeath"
description="Professional heating and plumbing services for homes and businesses. Fast response, reliable repairs, and quality installations across Co. Westmeath. Available 24/7 for emergencies."
background={{ variant: "plain" }}
avatars={[
{ src: "http://img.b2bpic.net/free-vector/call-center-avatar-sample-flat-style_23-2147941257.jpg", alt: "Satisfied customer" },
{ src: "http://img.b2bpic.net/free-vector/call-center-avatar-sample-flat-style_23-2147941257.jpg", alt: "Satisfied customer" },
{ src: "http://img.b2bpic.net/free-vector/call-center-avatar-sample-flat-style_23-2147941257.jpg", alt: "Satisfied customer" }
]}
avatarText="Trusted by 500+ Westmeath families"
imagePosition="right"
imageSrc="http://img.b2bpic.net/free-photo/top-view-man-sitting-floor-with-tap_259150-58260.jpg"
imageAlt="Plumbing services"
mediaAnimation="slide-up"
buttons={[
{ text: "Request a Quote", href: "contact" },
{ text: "Call 0879376156", href: "tel:0879376156" }
@@ -223,4 +221,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}