diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4b50405..8e992eb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,9 +11,127 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
-import { Award, CheckCircle, Sparkles, Package } from "lucide-react";
+import { Award, CheckCircle, Sparkles, Package, Linkedin, Twitter, Instagram, Mail } from "lucide-react";
+import React, { useState } from "react";
+
+const TestimonialCardFlipped = ({ testimonial, onFlip }: { testimonial: any; onFlip: (id: string) => void }) => {
+ const [isFlipped, setIsFlipped] = useState(false);
+
+ const handleMouseEnter = () => {
+ setIsFlipped(true);
+ };
+
+ const handleMouseLeave = () => {
+ setIsFlipped(false);
+ };
+
+ return (
+
+
+ {/* Front side */}
+
+
+
{testimonial.testimonial}
+
+
+ {testimonial.imageSrc && (
+

+ )}
+
+
{testimonial.name}
+
{testimonial.role}
+
+
+
+
+ {/* Back side */}
+
+
Connect with {testimonial.name}
+
+
+
+
+ );
+};
export default function LandingPage() {
+ const testimonialData = [
+ {
+ id: "1", name: "Marcus T.", role: "Software Engineer", testimonial: "I went from feeling invisible to commanding attention in any room. The skincare protocol cleared my skin, the training program built muscle, and the style guidance transformed how people perceive me. Best investment I've made.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Marcus after transformation"
+ },
+ {
+ id: "2", name: "James K.", role: "Sales Executive", testimonial: "Within 8 weeks, my confidence skyrocketed. Clients and colleagues noticed the change immediately. The comprehensive approach meant I didn't have to figure it out alone—every pillar was covered professionally.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "James after transformation"
+ },
+ {
+ id: "3", name: "Derek M.", role: "Entrepreneur", testimonial: "This isn't just about looking better; it's about becoming the best version of yourself. The accountability and expert guidance made all the difference. I recommend Maxximize to every serious man.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=1", imageAlt: "Derek after transformation"
+ },
+ {
+ id: "4", name: "Ryan P.", role: "Marketing Manager", testimonial: "The transformation exceeded my expectations. Clear skin, visible muscle, sharp style, and grooming expertise—I feel like a completely new person. This program delivers.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=2", imageAlt: "Ryan after transformation"
+ },
+ {
+ id: "5", name: "Alex V.", role: "Fitness Professional", testimonial: "Even as someone in the fitness industry, I learned so much about the holistic approach to personal optimization. The skincare and style components I was missing have made a huge difference.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Alex after transformation"
+ },
+ {
+ id: "6", name: "Chris N.", role: "Consultant", testimonial: "The most comprehensive looksmaxxing program available. Not just gym hacks or skincare tips—this is a complete system. Worth every penny and then some.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=3", imageAlt: "Chris after transformation"
+ }
+ ];
+
return (
-
+
+
+
+
Client Success Stories
+
Real transformations from real men who took control of their image.
+
+
+ {testimonialData.map((testimonial) => (
+
+ {}} />
+
+ ))}
+
+
+