diff --git a/src/app/page.tsx b/src/app/page.tsx
index af1c23b..f78caae 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,10 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
-import ContactText from '@/components/sections/contact/ContactText';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
-import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -33,21 +33,13 @@ export default function LandingPage() {
@@ -59,69 +51,37 @@ export default function LandingPage() {
description="Egan and Sons provides professional heating, plumbing, and property maintenance with a focus on safety, efficiency, and reliability. Serving our community for over 20 years."
testimonials={[
{
- name: "John Doe",
- handle: "@johndoe",
- testimonial: "Excellent service and very punctual. Fixed our boiler in no time.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-drinking-coffee-construction-side_329181-3771.jpg?_wi=1",
- },
+ name: "John Doe", handle: "@johndoe", testimonial: "Excellent service and very punctual. Fixed our boiler in no time.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-drinking-coffee-construction-side_329181-3771.jpg?_wi=1"},
{
- name: "Jane Smith",
- handle: "@janesmith",
- testimonial: "Professional and clean work. Highly recommended.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/man-woman-making-shopping-list-home-kitchen-together_23-2149087124.jpg?_wi=1",
- },
+ name: "Jane Smith", handle: "@janesmith", testimonial: "Professional and clean work. Highly recommended.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/man-woman-making-shopping-list-home-kitchen-together_23-2149087124.jpg?_wi=1"},
{
- name: "Mike Brown",
- handle: "@mikebrown",
- testimonial: "Reliable plumbing services. Will use again.",
- rating: 4,
- imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-her-wife-sitting-sofa-with-book_23-2147901503.jpg?_wi=1",
- },
+ name: "Mike Brown", handle: "@mikebrown", testimonial: "Reliable plumbing services. Will use again.", rating: 4,
+ imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-her-wife-sitting-sofa-with-book_23-2147901503.jpg?_wi=1"},
{
- name: "Alice Green",
- handle: "@aliceg",
- testimonial: "Knowledgeable and polite staff. Handled our radiator issues perfectly.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=1",
- },
+ name: "Alice Green", handle: "@aliceg", testimonial: "Knowledgeable and polite staff. Handled our radiator issues perfectly.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=1"},
{
- name: "Robert Kent",
- handle: "@rkent",
- testimonial: "Top-tier maintenance work. My heating system has never been better.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/mid-section-view-two-businessman-with-folder-clipboard_23-2147839930.jpg?_wi=1",
- },
+ name: "Robert Kent", handle: "@rkent", testimonial: "Top-tier maintenance work. My heating system has never been better.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/mid-section-view-two-businessman-with-folder-clipboard_23-2147839930.jpg?_wi=1"},
]}
buttons={[
{
- text: "Book an Inspection",
- href: "#contact",
- },
+ text: "Book an Inspection", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/classical-background-house-bath-interior_1203-5614.jpg"
avatars={[
{
- src: "http://img.b2bpic.net/free-photo/young-woman-her-kitchen_329181-20396.jpg",
- alt: "satisfied client 1",
- },
+ src: "http://img.b2bpic.net/free-photo/young-woman-her-kitchen_329181-20396.jpg", alt: "satisfied client 1"},
{
- src: "http://img.b2bpic.net/free-photo/smiley-man-looking-camera-holding-cup-coffee_23-2148306626.jpg",
- alt: "satisfied client 2",
- },
+ src: "http://img.b2bpic.net/free-photo/smiley-man-looking-camera-holding-cup-coffee_23-2148306626.jpg", alt: "satisfied client 2"},
{
- src: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg",
- alt: "satisfied client 3",
- },
+ src: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg", alt: "satisfied client 3"},
{
- src: "http://img.b2bpic.net/free-photo/man-street-using-mobile-phone_657883-744.jpg",
- alt: "satisfied client 4",
- },
+ src: "http://img.b2bpic.net/free-photo/man-street-using-mobile-phone_657883-744.jpg", alt: "satisfied client 4"},
{
- src: "http://img.b2bpic.net/free-photo/senior-couple-dancing-home_23-2149891531.jpg",
- alt: "satisfied client 5",
- },
+ src: "http://img.b2bpic.net/free-photo/senior-couple-dancing-home_23-2149891531.jpg", alt: "satisfied client 5"},
]}
/>
@@ -131,9 +91,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Family Owned, Locally Trusted"
description={[
- "At Egan and Sons, we treat your home like our own. Our team of certified professionals ensures your heating and plumbing systems are running perfectly throughout the seasons.",
- "We combine old-fashioned customer care with modern technical standards to deliver the best value for your property.",
- ]}
+ "At Egan and Sons, we treat your home like our own. Our team of certified professionals ensures your heating and plumbing systems are running perfectly throughout the seasons.", "We combine old-fashioned customer care with modern technical standards to deliver the best value for your property."]}
/>
@@ -144,34 +102,16 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
- id: "1",
- label: "Heating",
- title: "Boiler & Heating Services",
- items: [
- "Annual servicing",
- "Breakdown repair",
- "Radiator installation",
- ],
+ id: "1", label: "Heating", title: "Boiler & Heating Services", items: [
+ "Annual servicing", "Breakdown repair", "Radiator installation"],
},
{
- id: "2",
- label: "Oil Tanks",
- title: "Oil Tank Maintenance",
- items: [
- "Replacement tanks",
- "Leak inspections",
- "Regulatory compliance",
- ],
+ id: "2", label: "Oil Tanks", title: "Oil Tank Maintenance", items: [
+ "Replacement tanks", "Leak inspections", "Regulatory compliance"],
},
{
- id: "3",
- label: "Plumbing",
- title: "Plumbing Solutions",
- items: [
- "Pipe repairs",
- "Fixture installations",
- "Drain clearing",
- ],
+ id: "3", label: "Plumbing", title: "Plumbing Solutions", items: [
+ "Pipe repairs", "Fixture installations", "Drain clearing"],
},
]}
title="Our Professional Services"
@@ -186,23 +126,14 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{
- id: "m1",
- icon: CheckCircle,
- title: "Years of Service",
- value: "20+",
- },
+ id: "m1", icon: CheckCircle,
+ title: "Years of Service", value: "20+"},
{
- id: "m2",
- icon: Star,
- title: "Happy Customers",
- value: "5000+",
- },
+ id: "m2", icon: Star,
+ title: "Happy Customers", value: "5000+"},
{
- id: "m3",
- icon: Award,
- title: "Qualified Engineers",
- value: "15",
- },
+ id: "m3", icon: Award,
+ title: "Qualified Engineers", value: "15"},
]}
title="Proven Quality"
description="Reliable stats backing our performance across the region."
@@ -216,45 +147,20 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
- id: "1",
- name: "Sarah Miller",
- handle: "@sarah_m",
- testimonial: "Fantastic response time during an emergency leak. True professionals.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-drinking-coffee-construction-side_329181-3771.jpg?_wi=2",
- },
+ id: "1", name: "Sarah Miller", handle: "@sarah_m", testimonial: "Fantastic response time during an emergency leak. True professionals.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-drinking-coffee-construction-side_329181-3771.jpg?_wi=2"},
{
- id: "2",
- name: "David W.",
- handle: "@david_w",
- testimonial: "Best service in town, honest and upfront pricing.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/man-woman-making-shopping-list-home-kitchen-together_23-2149087124.jpg?_wi=2",
- },
+ id: "2", name: "David W.", handle: "@david_w", testimonial: "Best service in town, honest and upfront pricing.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/man-woman-making-shopping-list-home-kitchen-together_23-2149087124.jpg?_wi=2"},
{
- id: "3",
- name: "Elena R.",
- handle: "@elena_r",
- testimonial: "Managed our boiler and tanks for years, always consistent.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-her-wife-sitting-sofa-with-book_23-2147901503.jpg?_wi=2",
- },
+ id: "3", name: "Elena R.", handle: "@elena_r", testimonial: "Managed our boiler and tanks for years, always consistent.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-her-wife-sitting-sofa-with-book_23-2147901503.jpg?_wi=2"},
{
- id: "4",
- name: "Mark L.",
- handle: "@mark_l",
- testimonial: "Professional team, left the place clean after work.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=2",
- },
+ id: "4", name: "Mark L.", handle: "@mark_l", testimonial: "Professional team, left the place clean after work.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=2"},
{
- id: "5",
- name: "Julia H.",
- handle: "@julia_h",
- testimonial: "Quick to schedule and efficient on-site work.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/mid-section-view-two-businessman-with-folder-clipboard_23-2147839930.jpg?_wi=2",
- },
+ id: "5", name: "Julia H.", handle: "@julia_h", testimonial: "Quick to schedule and efficient on-site work.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/mid-section-view-two-businessman-with-folder-clipboard_23-2147839930.jpg?_wi=2"},
]}
showRating={true}
title="Customer Stories"
@@ -268,20 +174,11 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
- id: "q1",
- title: "How often should I service my boiler?",
- content: "We recommend an annual service to keep it efficient and safe.",
- },
+ id: "q1", title: "How often should I service my boiler?", content: "We recommend an annual service to keep it efficient and safe."},
{
- id: "q2",
- title: "Do you provide emergency plumbing repairs?",
- content: "Yes, we prioritize urgent maintenance calls for existing customers.",
- },
+ id: "q2", title: "Do you provide emergency plumbing repairs?", content: "Yes, we prioritize urgent maintenance calls for existing customers."},
{
- id: "q3",
- title: "Are your engineers qualified?",
- content: "All our engineers are fully licensed and regularly trained.",
- },
+ id: "q3", title: "Are your engineers qualified?", content: "All our engineers are fully licensed and regularly trained."},
]}
title="Frequently Asked Questions"
description="Get quick answers to common questions about our services."
@@ -298,69 +195,44 @@ export default function LandingPage() {
description="Learn how to keep your systems running smoothly between services."
blogs={[
{
- id: "b1",
- category: "Heating",
- title: "Preparing for Winter",
- excerpt: "How to bleed your radiators properly...",
- imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-52877.jpg",
- authorName: "Egan Team",
- authorAvatar: "http://img.b2bpic.net/free-photo/profession-occupation-teamwork-job-concept-positive-maintenance-workers-enjoying-working-together-helping-people-with-repairing-fixing-things_273609-7881.jpg",
- date: "Nov 2024",
- },
+ id: "b1", category: "Heating", title: "Preparing for Winter", excerpt: "How to bleed your radiators properly...", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-52877.jpg", authorName: "Egan Team", authorAvatar: "http://img.b2bpic.net/free-photo/profession-occupation-teamwork-job-concept-positive-maintenance-workers-enjoying-working-together-helping-people-with-repairing-fixing-things_273609-7881.jpg", date: "Nov 2024"},
{
- id: "b2",
- category: "Safety",
- title: "Oil Tank Safety",
- excerpt: "What to look for in your tank...",
- imageSrc: "http://img.b2bpic.net/free-photo/side-view-mechanic-with-protective-glasses-uniform_23-2148773437.jpg",
- authorName: "Egan Team",
- authorAvatar: "http://img.b2bpic.net/free-photo/emotional-furious-male-female-buillders-gesture-angrily-have-irritated-expressions-as-there-is-much-work_273609-8289.jpg",
- date: "Oct 2024",
- },
+ id: "b2", category: "Safety", title: "Oil Tank Safety", excerpt: "What to look for in your tank...", imageSrc: "http://img.b2bpic.net/free-photo/side-view-mechanic-with-protective-glasses-uniform_23-2148773437.jpg", authorName: "Egan Team", authorAvatar: "http://img.b2bpic.net/free-photo/emotional-furious-male-female-buillders-gesture-angrily-have-irritated-expressions-as-there-is-much-work_273609-8289.jpg", date: "Oct 2024"},
{
- id: "b3",
- category: "DIY",
- title: "Common Plumbing Myths",
- excerpt: "Things to avoid doing yourself...",
- imageSrc: "http://img.b2bpic.net/free-photo/builder-handyman-with-construction-tools-house-house-renovation-concept_169016-5873.jpg",
- authorName: "Egan Team",
- authorAvatar: "http://img.b2bpic.net/free-photo/male-female-workers-wearing-work-clothes_273609-11116.jpg",
- date: "Sep 2024",
- },
+ id: "b3", category: "DIY", title: "Common Plumbing Myths", excerpt: "Things to avoid doing yourself...", imageSrc: "http://img.b2bpic.net/free-photo/builder-handyman-with-construction-tools-house-house-renovation-concept_169016-5873.jpg", authorName: "Egan Team", authorAvatar: "http://img.b2bpic.net/free-photo/male-female-workers-wearing-work-clothes_273609-11116.jpg", date: "Sep 2024"},
]}
/>
-
);
-}
+}
\ No newline at end of file