Update src/app/services/page.tsx

This commit is contained in:
2026-05-10 22:44:37 +00:00
parent 13b58a0f6d
commit 5660e7f13e

View File

@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,32 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Projects",
id: "/projects",
},
{
name: "About",
id: "/about",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Apex Construction"
brandName="Diaz Plastering"
/>
</div>
@@ -61,26 +43,11 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "s1",
title: "General Construction",
description: "Expert build management.",
tag: "Essential",
imageSrc: "http://img.b2bpic.net/free-photo/engineering-concept-with-plans-level_23-2147704230.jpg",
},
id: "s1", title: "General Construction", description: "Expert build management.", tag: "Essential", imageSrc: "http://img.b2bpic.net/free-photo/engineering-concept-with-plans-level_23-2147704230.jpg"},
{
id: "s2",
title: "Commercial Projects",
description: "Large-scale commercial builds.",
tag: "Commercial",
imageSrc: "http://img.b2bpic.net/free-photo/devices-water-cooler-empty-office_482257-119279.jpg",
},
id: "s2", title: "Commercial Projects", description: "Large-scale commercial builds.", tag: "Commercial", imageSrc: "http://img.b2bpic.net/free-photo/devices-water-cooler-empty-office_482257-119279.jpg"},
{
id: "s3",
title: "Residential Remodeling",
description: "High-end luxury interiors.",
tag: "Interior",
imageSrc: "http://img.b2bpic.net/free-photo/living-room-with-chandelier-couch-with-number-pillows-large-chandelier_188544-27064.jpg",
},
id: "s3", title: "Residential Remodeling", description: "High-end luxury interiors.", tag: "Interior", imageSrc: "http://img.b2bpic.net/free-photo/living-room-with-chandelier-couch-with-number-pillows-large-chandelier_188544-27064.jpg"},
]}
title="Our Professional Services"
description="Comprehensive construction solutions tailored for residential and commercial demands."
@@ -96,35 +63,12 @@ export default function LandingPage() {
description="Flexible plans for every project scale."
plans={[
{
id: "p1",
tag: "Starter",
price: "$5k",
period: "fixed",
description: "Basic renovation projects.",
button: {
text: "Inquire",
},
featuresTitle: "Included Services",
features: [
"Consultation",
"Site Planning",
],
id: "p1", tag: "Starter", price: "$5k", period: "fixed", description: "Basic renovation projects.", button: { text: "Inquire" },
featuresTitle: "Included Services", features: ["Consultation", "Site Planning"],
},
{
id: "p2",
tag: "Premium",
price: "$25k",
period: "fixed",
description: "Custom builds and major remodels.",
button: {
text: "Inquire",
},
featuresTitle: "Included Services",
features: [
"Full Management",
"Custom Design",
"Procurement",
],
id: "p2", tag: "Premium", price: "$25k", period: "fixed", description: "Custom builds and major remodels.", button: { text: "Inquire" },
featuresTitle: "Included Services", features: ["Full Management", "Custom Design", "Procurement"],
},
]}
/>
@@ -134,41 +78,24 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Navigation",
items: [
{
label: "Services",
href: "/services",
},
{
label: "Projects",
href: "/projects",
},
{
label: "About",
href: "/about",
},
title: "Navigation", items: [
{ label: "Services", href: "/services" },
{ label: "Projects", href: "/projects" },
{ label: "About", href: "/about" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "License #123456",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "License #123456", href: "#" },
],
},
]}
logoText="Apex Construction"
copyrightText="© 2025 Apex Construction. All rights reserved."
logoText="Diaz Plastering"
copyrightText="© 2025 Diaz Plastering. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}