Update src/app/testimonials/page.tsx
This commit is contained in:
@@ -3,34 +3,38 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Twitter } from "lucide-react";
|
||||
|
||||
export default function TestimonialsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarStyleCentered
|
||||
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
|
||||
brandName="Mkay Designs"
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<TestimonialCardTwo
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="Client Reviews"
|
||||
description="What our clients say about our bespoke design services."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Amina Otieno", role: "Homeowner", testimonial: "Absolutely transformed my home vision!" },
|
||||
{ id: "2", name: "David Mwangi", role: "CEO", testimonial: "Outstanding office interior design." }
|
||||
{ id: "1", name: "Amina Otieno", date: "2024-01-01", title: "Review", quote: "Absolutely transformed my home vision!", tag: "User", avatarSrc: "" },
|
||||
{ id: "2", name: "David Mwangi", date: "2024-02-01", title: "Review", quote: "Outstanding office interior design.", tag: "User", avatarSrc: "" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterCard
|
||||
logoText="Mkay Designs"
|
||||
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
|
||||
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
|
||||
/>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Mkay Designs"
|
||||
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
|
||||
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user