Update src/app/blog/page.tsx

This commit is contained in:
2026-06-10 15:09:46 +00:00
parent d52a6071ce
commit 802bf426b8

View File

@@ -27,33 +27,21 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-vector/flat-design-mechanical-engineering-logo_23-2150028712.jpg"
logoAlt="Tech Guru Logo"
brandName="Tech Guru Technical Services Co"
button={{
text: "Book a Repair",
href: "/contact#appointment-form",
}}
text: "Book a Repair", href: "/contact"}}
/>
</div>
@@ -69,38 +57,11 @@ export default function LandingPage() {
tagIcon={Sparkles}
blogs={[
{
id: "blog-1",
category: "Maintenance",
title: "How to Maintain Your Washing Machine for Longer Life",
excerpt: "Discover essential tips and tricks to keep your washing machine running efficiently and avoid common breakdowns.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-organized-laundry-room-with-white-cabinets-shelving_23-2151983211.jpg",
imageAlt: "Washing machine maintenance",
authorName: "Tech Guru Team",
authorAvatar: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-16454.jpg",
date: "July 15, 2024",
},
id: "blog-1", category: "Maintenance", title: "How to Maintain Your Washing Machine for Longer Life", excerpt: "Discover essential tips and tricks to keep your washing machine running efficiently and avoid common breakdowns.", imageSrc: "http://img.b2bpic.net/free-photo/modern-organized-laundry-room-with-white-cabinets-shelving_23-2151983211.jpg", imageAlt: "Washing machine maintenance", authorName: "Tech Guru Team", authorAvatar: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-16454.jpg", date: "July 15, 2024"},
{
id: "blog-2",
category: "Troubleshooting",
title: "Why Your Refrigerator Isn't Cooling: Common Causes & Fixes",
excerpt: "Learn about the most frequent reasons why your fridge might not be cooling properly and what steps you can take.",
imageSrc: "http://img.b2bpic.net/free-photo/kitchen-facilities-picture-fridge-with-food-inside_259150-58057.jpg",
imageAlt: "Refrigerator not cooling",
authorName: "Tech Guru Experts",
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-handsome-man-smiling_23-2148729669.jpg",
date: "July 10, 2024",
},
id: "blog-2", category: "Troubleshooting", title: "Why Your Refrigerator Isn't Cooling: Common Causes & Fixes", excerpt: "Learn about the most frequent reasons why your fridge might not be cooling properly and what steps you can take.", imageSrc: "http://img.b2bpic.net/free-photo/kitchen-facilities-picture-fridge-with-food-inside_259150-58057.jpg", imageAlt: "Refrigerator not cooling", authorName: "Tech Guru Experts", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-handsome-man-smiling_23-2148729669.jpg", date: "July 10, 2024"},
{
id: "blog-3",
category: "Repair Guides",
title: "Signs Your Oven Needs Repair: Don't Ignore These Warning Signals",
excerpt: "Identify the critical indicators that suggest your oven might need professional repair before it completely breaks down.",
imageSrc: "http://img.b2bpic.net/free-photo/service-maintenance-worker-repairing_23-2149176715.jpg",
imageAlt: "Oven needing repair",
authorName: "Tech Guru Insights",
authorAvatar: "http://img.b2bpic.net/free-photo/closeup-smiling-goodlooking-man-showing-thumbs-up-praising-good-job-recommending-company-standing_1258-159836.jpg",
date: "July 5, 2024",
},
id: "blog-3", category: "Repair Guides", title: "Signs Your Oven Needs Repair: Don't Ignore These Warning Signals", excerpt: "Identify the critical indicators that suggest your oven might need professional repair before it completely breaks down.", imageSrc: "http://img.b2bpic.net/free-photo/service-maintenance-worker-repairing_23-2149176715.jpg", imageAlt: "Oven needing repair", authorName: "Tech Guru Insights", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-smiling-goodlooking-man-showing-thumbs-up-praising-good-job-recommending-company-standing_1258-159836.jpg", date: "July 5, 2024"},
]}
/>
</div>
@@ -109,14 +70,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={true}
background={{
variant: "downward-rays-static",
}}
variant: "downward-rays-static"}}
text="Subscribe to Our Newsletter for Exclusive Tips & Offers. Get expert appliance maintenance advice directly in your inbox."
buttons={[
{
text: "Subscribe Now",
href: "/contact",
},
text: "Subscribe Now", href: "/contact"},
]}
/>
</div>
@@ -130,75 +88,45 @@ export default function LandingPage() {
logoText="Tech Guru Technical Services Co"
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "About Us",
href: "/#about",
},
label: "About Us", href: "/#about"},
{
label: "FAQs",
href: "/faq",
},
label: "FAQs", href: "/faq"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
],
},
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Washing Machine Repair",
href: "/services/washing-machine",
},
label: "Washing Machine Repair", href: "/services/washing-machine"},
{
label: "Refrigerator Repair",
href: "/services/refrigerator",
},
label: "Refrigerator Repair", href: "/services/refrigerator"},
{
label: "Dishwasher Repair",
href: "/services/dishwasher",
},
label: "Dishwasher Repair", href: "/services/dishwasher"},
{
label: "View All Services",
href: "/services",
},
label: "View All Services", href: "/services"},
],
},
{
title: "Contact Information",
items: [
title: "Contact Information", items: [
{
label: "+971 58 931 5357",
href: "tel:+971589315357",
},
label: "+971 58 931 5357", href: "tel:+971589315357"},
{
label: "info@techguruuae.com",
href: "mailto:info@techguruuae.com",
},
label: "info@techguruuae.com", href: "mailto:info@techguruuae.com"},
{
label: "Al Moosa Tower 2, Dubai",
href: "https://www.google.com/maps/search/Al+Moosa+Tower+2,+Sheikh+Zayed+Road,+Dubai",
},
label: "Al Moosa Tower 2, Dubai", href: "https://www.google.com/maps/search/Al+Moosa+Tower+2,+Sheikh+Zayed+Road,+Dubai"},
],
},
{
title: "Business Hours",
items: [
title: "Business Hours", items: [
{
label: "Open Daily",
href: "#",
},
label: "Open Daily", href: "#"},
{
label: "8:00 AM 10:00 PM",
href: "#",
},
label: "8:00 AM 10:00 PM", href: "#"},
],
},
]}
@@ -208,4 +136,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}