Update src/app/services/page.tsx

This commit is contained in:
2026-06-01 07:54:59 +00:00
parent a6bf098586
commit 04bd05d4b2

View File

@@ -26,39 +26,23 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
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: "Why Choose Us",
id: "/why-choose-us",
},
name: "Why Choose Us", id: "/why-choose-us"},
{
name: "Gallery",
id: "/gallery",
},
name: "Gallery", id: "/gallery"},
{
name: "Testimonials",
id: "/testimonials",
},
name: "Testimonials", id: "/testimonials"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Southern Roofing Solutions"
button={{
text: "Get a Free Quote",
href: "/contact",
}}
text: "Get a Free Quote", href: "/contact"}}
/>
</div>
@@ -69,61 +53,21 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "s1",
title: "Roof Repairs",
subtitle: "Expert diagnosis and repair of leaks, damaged tiles, and general wear.",
category: "Repair",
value: "Fast & Reliable",
},
id: "s1", title: "Roof Repairs", subtitle: "Expert diagnosis and repair of leaks, damaged tiles, and general wear.", category: "Repair", value: "Fast & Reliable"},
{
id: "s2",
title: "Roof Restorations",
subtitle: "Bringing old roofs back to life with cleaning, repainting, and sealing.",
category: "Restore",
value: "Like New",
},
id: "s2", title: "Roof Restorations", subtitle: "Bringing old roofs back to life with cleaning, repainting, and sealing.", category: "Restore", value: "Like New"},
{
id: "s3",
title: "Roof Replacements",
subtitle: "Complete removal and installation of new, durable roofing systems.",
category: "Replace",
value: "Long-lasting",
},
id: "s3", title: "Roof Replacements", subtitle: "Complete removal and installation of new, durable roofing systems.", category: "Replace", value: "Long-lasting"},
{
id: "s4",
title: "Roof Leak Detection",
subtitle: "Advanced techniques to accurately locate and fix hidden roof leaks.",
category: "Detect",
value: "Precise",
},
id: "s4", title: "Roof Leak Detection", subtitle: "Advanced techniques to accurately locate and fix hidden roof leaks.", category: "Detect", value: "Precise"},
{
id: "s5",
title: "Roof Maintenance",
subtitle: "Scheduled inspections and preventative care to extend roof lifespan.",
category: "Maintain",
value: "Preventative",
},
id: "s5", title: "Roof Maintenance", subtitle: "Scheduled inspections and preventative care to extend roof lifespan.", category: "Maintain", value: "Preventative"},
{
id: "s6",
title: "Gutter Repairs",
subtitle: "Fixing and replacing damaged gutters to ensure proper water drainage.",
category: "Gutter",
value: "Efficient",
},
id: "s6", title: "Gutter Repairs", subtitle: "Fixing and replacing damaged gutters to ensure proper water drainage.", category: "Gutter", value: "Efficient"},
{
id: "s7",
title: "Residential Roofing",
subtitle: "Tailored roofing solutions for homes of all shapes and sizes.",
category: "Home",
value: "Custom",
},
id: "s7", title: "Residential Roofing", subtitle: "Tailored roofing solutions for homes of all shapes and sizes.", category: "Home", value: "Custom"},
{
id: "s8",
title: "Commercial Roofing",
subtitle: "Robust roofing services for commercial and industrial properties.",
category: "Business",
value: "Durable",
},
id: "s8", title: "Commercial Roofing", subtitle: "Robust roofing services for commercial and industrial properties.", category: "Business", value: "Durable"},
]}
title="Comprehensive Roofing Services"
description="From minor repairs to full replacements, our expert team handles all your roofing and guttering needs with precision and care."
@@ -137,37 +81,20 @@ export default function LandingPage() {
useInvertedBackground={true}
plans={[
{
id: "p1",
badge: "Standard",
price: "Custom Quote",
subtitle: "Ideal for minor repairs & routine checks.",
buttons: [
id: "p1", badge: "Standard", price: "Custom Quote", subtitle: "Ideal for minor repairs & routine checks.", buttons: [
{
text: "Get Quote",
href: "/contact",
},
text: "Get Quote", href: "/contact"},
],
features: [
"Detailed Inspection",
"Minor Leak Repair",
"Gutter Clean-out",
"Condition Report",
],
"Detailed Inspection", "Minor Leak Repair", "Gutter Clean-out", "Condition Report"],
},
{
id: "p2",
badge: "Premium",
price: "Custom Quote",
subtitle: "Best for restorations & significant repairs.",
buttons: [
id: "p2", badge: "Premium", price: "Custom Quote", subtitle: "Best for restorations & significant repairs.", buttons: [
{
text: "Get Quote",
href: "/contact",
},
text: "Get Quote", href: "/contact"},
],
features: [
"Full",
],
"Full"],
},
]}
title="Custom Solutions & Transparent Pricing"
@@ -180,58 +107,35 @@ export default function LandingPage() {
logoText="Southern Roofing Solutions"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Services",
href: "/services",
},
label: "Services", href: "/services"},
{
label: "Why Choose Us",
href: "/why-choose-us",
},
label: "Why Choose Us", href: "/why-choose-us"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
{
label: "Testimonials",
href: "/testimonials",
},
label: "Testimonials", href: "/testimonials"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "Get a Quote",
href: "/contact",
},
label: "Get a Quote", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
@@ -241,4 +145,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}