From 8ac0065a067179c5dc95a623ecf21de12c867e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Fri, 13 Feb 2026 14:11:19 +0800 Subject: [PATCH] feat: add testimonials section with testimonial cards --- src/app/(marketing)/page.tsx | 2 + .../sections/testimonials-section.tsx | 103 ++++++++++++++++++ src/components/ui/testimonial-card.tsx | 62 +++++++++++ 3 files changed, 167 insertions(+) create mode 100644 src/components/sections/testimonials-section.tsx create mode 100644 src/components/ui/testimonial-card.tsx diff --git a/src/app/(marketing)/page.tsx b/src/app/(marketing)/page.tsx index 21820cb..15cadc0 100644 --- a/src/app/(marketing)/page.tsx +++ b/src/app/(marketing)/page.tsx @@ -12,6 +12,7 @@ import { AboutSection } from "@/components/sections/about-section"; import { ServicesSection } from "@/components/sections/services-section"; import { ProductsSection } from "@/components/sections/products-section"; import { NewsSection } from "@/components/sections/news-section"; +import { TestimonialsSection } from "@/components/sections/testimonials-section"; import { ContactSection } from "@/components/sections/contact-section"; export default function HomePage() { @@ -28,6 +29,7 @@ export default function HomePage() { +