Update src/app/reviews/page.tsx

This commit is contained in:
2026-04-08 09:25:35 +00:00
parent 96a2c63840
commit 638cdf579e

View File

@@ -3,45 +3,53 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function ReviewsPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/#work" },
{ name: "Services", id: "/services" },
{ name: "Reviews", id: "/reviews" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/#contact" },
]}
button={{ text: "Get Started", href: "/#contact" }}
/>
<TestimonialCardSix
title="Client Reviews"
description="See what our clients say about our local digital services."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Maria Santos", handle: "@maria", testimonial: "Transformed our local business presence completely!" },
{ id: "2", name: "John Doe", handle: "@john", testimonial: "Incredible SEO results within just two months." }
]}
/>
<ContactCTA
title="Join our list of happy clients"
text="Your business could be next. Reach out today."
background={{ variant: "rotated-rays-animated" }}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardTen
title="Client Reviews"
description="See what our clients say about our local digital services."
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", title: "Great Results", quote: "Transformed our local business presence completely!", name: "Maria Santos", role: "Owner" },
{ id: "2", title: "Top Tier SEO", quote: "Incredible SEO results within just two months.", name: "John Doe", role: "Manager" }
]}
/>
</div>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Reviews", href: "/reviews" }] }
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>