This commit is contained in:
gpt-engineer-app[bot]
2025-12-19 16:37:01 +00:00
parent 461a14dfdc
commit cc7c330e83
13 changed files with 756 additions and 14 deletions

View File

@@ -2,6 +2,7 @@ import { Link } from 'react-router-dom';
import { Layout } from '@/components/Layout';
import { Button } from '@/components/ui/button';
import { useBranding } from '@/hooks/useBranding';
import { TestimonialsSection } from '@/components/reviews/TestimonialsSection';
import { ArrowRight, BookOpen, Video, Users, Star, Award, Target, Zap, Heart, Shield, Rocket } from 'lucide-react';
const iconMap: Record<string, React.ComponentType<{ className?: string }>> = {
@@ -60,6 +61,8 @@ export default function Index() {
})}
</div>
</section>
<TestimonialsSection />
</Layout>
);
}