Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-22 09:12:57 +00:00

View File

@@ -12,6 +12,32 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
export default function LandingPage() {
const generateTestimonials = (count: number) => {
const firstNames = ['Priya', 'Anjali', 'Meera', 'Neha', 'Isha', 'Divya', 'Pooja', 'Sneha', 'Kavya', 'Ritika', 'Aisha', 'Manvi', 'Shreya', 'Tanya', 'Zara'];
const lastNames = ['Sharma', 'Kapoor', 'Singh', 'Patel', 'Verma', 'Gupta', 'Saxena', 'Malhotra', 'Arora', 'Chopra', 'Bhat', 'Rao', 'Desai', 'Nair', 'Iyer'];
const testimonials = [
"The quality and elegance of these traditional outfits are unmatched. Every piece feels like a work of art. I've purchased multiple times and I'm always impressed!", "Absolutely gorgeous designs! The craftsmanship is exceptional and the fabrics are so luxurious. Worth every penny.", "I wore one of their lehengas to my cousin's wedding and received so many compliments. The fit is perfect!", "The custom tailoring service is fantastic. They understood exactly what I wanted and delivered beautifully.", "These are not just clothes, they're pieces of art. The embroidery and detailing are incredible.", "Best investment for traditional wear. The colors stay vibrant even after multiple washes. Highly recommend!", "Pooja's collection is simply divine. Each piece has a story and soul to it. Love it!", "The attention to detail is phenomenal. I felt like a princess wearing their designer suit set.", "Finally found authentic traditional wear that doesn't compromise on quality or style.", "My entire family loves the collection. We ordered for different occasions and everyone's satisfied.", "The customer service is as good as the products. They were so helpful with my custom order.", "Wore their salwar kameez to an event and it was the highlight of my outfit for sure!", "These pieces are timeless. I can wear them for years without them going out of style.", "The premium fabrics make all the difference. This is the real deal.", "I'm obsessed with the traditional patterns. They respect the heritage while keeping it modern.", "Best discovery this season! Sharing with all my friends. Already ordered twice!", "The quality is consistent. Every order has been perfect. No disappointments.", "These outfits make me feel confident and beautiful. Absolutely worth it!", "The variety in their collection is amazing. Something for every occasion and preference.", "I've been a customer for two years now and the quality has never disappointed. Loyalty guaranteed!"
];
const testimonialsList = [];
for (let i = 0; i < count; i++) {
const firstName = firstNames[i % firstNames.length];
const lastName = lastNames[(i + Math.floor(i / firstNames.length)) % lastNames.length];
testimonialsList.push({
id: `testimonial-${i + 1}`,
testimonial: testimonials[i % testimonials.length],
rating: 5,
author: `${firstName} ${lastName}`,
avatars: [
{ src: `https://i.pravatar.cc/150?img=${i}`, alt: `${firstName} ${lastName}` }
]
});
}
return testimonialsList;
};
const allTestimonials = generateTestimonials(300);
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -150,27 +176,18 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="The quality and elegance of these traditional outfits are unmatched. Every piece feels like a work of art. I've purchased multiple times and I'm always impressed!"
rating={5}
author="Priya Sharma"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-man-shopping-buying-consumer-goods_23-2151669756.jpg", alt: "Priya Sharma"
},
{
src: "http://img.b2bpic.net/free-photo/beautiful-turkish-girl-long-red-dress-walks-summer-old-city_1157-13384.jpg", alt: "Anjali Kapoor"
},
{
src: "http://img.b2bpic.net/free-photo/cool-young-ladies-pose-near-mannequin-office-fashion-designer_197531-24072.jpg", alt: "Meera Singh"
},
{
src: "http://img.b2bpic.net/free-photo/renaissance-portrait-woman-as-sun-goddess_23-2151345921.jpg", alt: "Neha Patel"
}
testimonials={allTestimonials}
animationType="slide-up"
title="300+ Happy Customers"
titleSegments={[
{ type: "text", content: "300+ Happy Customers" }
]}
description="Join hundreds of satisfied customers who have experienced the beauty and quality of our traditional outfits."
textboxLayout="default"
useInvertedBackground={false}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
ariaLabel="Customer testimonials"
ariaLabel="Customer testimonials - 300+ happy customers"
/>
</div>