Update src/app/reviews/page.tsx

This commit is contained in:
2026-05-10 22:44:36 +00:00
parent 0c97fb5ebe
commit 13b58a0f6d

View File

@@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
export default function LandingPage() {
export default function ReviewsPage() {
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>
@@ -62,36 +44,17 @@ export default function LandingPage() {
title="Client Success"
description="Hear how our clients describe their experience."
kpiItems={[
{
value: "99%",
label: "Satisfaction",
},
{
value: "500+",
label: "Projects",
},
{
value: "25+",
label: "Years",
},
{ value: "99%", label: "Satisfaction" },
{ value: "500+", label: "Projects" },
{ value: "25+", label: "Years" },
]}
testimonials={[
{
id: "rev1",
name: "Sarah Miller",
role: "Developer",
company: "Urban Estates",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-partners-working-office_273609-6542.jpg?_wi=2",
},
id: "rev1", name: "Sarah Miller", role: "Developer", company: "Urban Estates", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-partners-working-office_273609-6542.jpg?_wi=2"},
{
id: "rev2",
name: "James Chen",
role: "Owner",
company: "Modern Home",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-glasses-portrait_1262-1461.jpg?_wi=2",
},
id: "rev2", name: "James Chen", role: "Owner", company: "Modern Home", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-glasses-portrait_1262-1461.jpg?_wi=2"},
]}
/>
</div>
@@ -102,10 +65,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Industry Awards"
description="Recognized for excellence."
names={[
"Build Excellence 2024",
"Contractor Pro 2023",
]}
names={["Build Excellence 2024", "Contractor Pro 2023"]}
/>
</div>
@@ -113,38 +73,21 @@ 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>