Update src/app/blog/page.tsx

This commit is contained in:
2026-03-31 09:12:33 +00:00
parent 154bdd27f5
commit 5fd1a30db7

View File

@@ -26,29 +26,17 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Reviews",
id: "/testimonials",
},
name: "Reviews", id: "/testimonials"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Papakura Plumbing"
/>
@@ -62,35 +50,11 @@ export default function LandingPage() {
title="Plumbing Tips"
blogs={[
{
id: "b1",
category: "DIY",
title: "Fixing a leaky tap",
excerpt: "Easy tips to fix your faucet.",
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=3",
authorName: "Team",
authorAvatar: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg",
date: "2024-05-01",
},
id: "b1", category: "DIY", title: "Fixing a leaky tap", excerpt: "Easy tips to fix your faucet.", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=3", authorName: "Team", authorAvatar: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg", date: "2024-05-01"},
{
id: "b2",
category: "Maintenance",
title: "Preventive Care",
excerpt: "How to avoid pipe bursts.",
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=3",
authorName: "Team",
authorAvatar: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg",
date: "2024-05-02",
},
id: "b2", category: "Maintenance", title: "Preventive Care", excerpt: "How to avoid pipe bursts.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=3", authorName: "Team", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg", date: "2024-05-02"},
{
id: "b3",
category: "News",
title: "Company Update",
excerpt: "Exciting new tools arrived.",
imageSrc: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg?_wi=2",
authorName: "Team",
authorAvatar: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg",
date: "2024-05-03",
},
id: "b3", category: "News", title: "Company Update", excerpt: "Exciting new tools arrived.", imageSrc: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg?_wi=2", authorName: "Team", authorAvatar: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg", date: "2024-05-03"},
]}
description="Guides for your home."
/>
@@ -106,15 +70,9 @@ export default function LandingPage() {
description="Useful stats."
metrics={[
{
id: "n1",
value: "20+",
description: "Helpful Guides",
},
id: "n1", value: "20+", description: "Helpful Guides"},
{
id: "n2",
value: "50+",
description: "Industry Tips",
},
id: "n2", value: "50+", description: "Industry Tips"},
]}
/>
</div>
@@ -123,33 +81,21 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Links",
items: [
title: "Links", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Services",
href: "/services",
},
label: "Services", href: "/services"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Papakura, NZ",
href: "#",
},
label: "Papakura, NZ", href: "#"},
{
label: "0800 123 456",
href: "tel:0800123456",
},
label: "027 250 4552", href: "tel:0272504552"},
],
},
]}
@@ -160,4 +106,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}