From 2e2468414e41475c9a2f22be86a68f660458f2f4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 10:15:45 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e04b0c0..3c3d1ef 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -63,7 +63,7 @@ export default function BlogPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "#" }, + { label: "Home", href: "/" }, { label: "Services", href: "#services" }, { label: "Products", href: "#products" }, { label: "Results", href: "#results" } @@ -71,7 +71,7 @@ export default function BlogPage() { }, { title: "Resources", items: [ - { label: "Blog", href: "#" }, + { label: "Blog", href: "/blog" }, { label: "FAQ", href: "#faq" }, { label: "Community", href: "#" }, { label: "Support", href: "#contact" } -- 2.49.1 From c6f7fd18df421db4f8415e697f1e1d162435f143 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 10:15:46 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 157 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 130 insertions(+), 27 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4b50405..dde3e5e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,8 +12,18 @@ 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 { useState } from "react"; export default function LandingPage() { + const [flipped, setFlipped] = useState<{ [key: string]: boolean }>({}); + + const toggleFlip = (id: string) => { + setFlipped(prev => ({ + ...prev, + [id]: !prev[id] + })); + }; + return (
- +
+
+

Client Success Stories

+

Real transformations from real men who took control of their image. Hover over cards to see their social media links.

+
+ +
+ {[ + { + 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", socialLinks: [ + { platform: "Instagram", url: "https://instagram.com" }, + { platform: "LinkedIn", url: "https://linkedin.com" } + ] + }, + { + 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", socialLinks: [ + { platform: "Twitter", url: "https://twitter.com" }, + { platform: "LinkedIn", url: "https://linkedin.com" } + ] + }, + { + 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", socialLinks: [ + { platform: "Instagram", url: "https://instagram.com" }, + { platform: "Twitter", url: "https://twitter.com" } + ] + }, + { + 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", socialLinks: [ + { platform: "LinkedIn", url: "https://linkedin.com" }, + { platform: "Instagram", url: "https://instagram.com" } + ] + }, + { + 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", socialLinks: [ + { platform: "Twitter", url: "https://twitter.com" }, + { platform: "LinkedIn", url: "https://linkedin.com" } + ] + }, + { + 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", socialLinks: [ + { platform: "Instagram", url: "https://instagram.com" }, + { platform: "LinkedIn", url: "https://linkedin.com" } + ] + } + ].map((testimonial) => ( +
toggleFlip(testimonial.id)} + > +
+ {/* Front of card */} +
+
+
+ {testimonial.imageAlt} +
+

+ {testimonial.name} +

+

+ {testimonial.role} +

+
+

+ "{testimonial.testimonial}" +

+

+ Click to see social links → +

+
+ + {/* Back of card */} +
+

+ Connect with {testimonial.name.split(' ')[0]} +

+
+ {testimonial.socialLinks.map((link) => ( + + {link.platform} + + ))} +
+

+ Click to flip back ← +

+
+
+
+ ))} +
+
-- 2.49.1 From 30639a4e2bd74b15e7210d4aaf6a3bc6677a6964 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 10:15:47 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 05316a5..2661a56 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -108,8 +108,8 @@ function ProductPageContent({ params }: ProductPageProps) {