Add src/app/testimonials/page.tsx

This commit is contained in:
2026-05-14 23:21:07 +00:00
parent 905a9b3846
commit 5d18014fca

View File

@@ -0,0 +1,39 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function TestimonialsPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/portfolio" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Services", id: "services" },
{ name: "Contact", id: "contact" },
]}
/>
<TestimonialCardSix
title="Client Success Stories"
description="Hear from our partners about the impact we've created together."
textboxLayout="default"
animationType="slide-up"
testimonials={[
{ id: "1", name: "Alex Rivers", handle: "@rivers_eco", testimonial: "The team helped us launch in record time. Our conversion rate tripled." },
{ id: "2", name: "Maria Santos", handle: "@lux_travel", testimonial: "Simply the best web agency we've worked with. Professional, fast, and creative." },
{ id: "3", name: "Jordan Lee", handle: "@fin_tech", testimonial: "Deep expertise in UI/UX really made our fintech platform stand out." }
]}
/>
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "Portfolio", href: "/portfolio" }, { label: "Testimonials", href: "/testimonials" }, { label: "Contact", href: "#contact" }] }
]}
/>
</ThemeProvider>
);
}