From c5b68d3e24304f6dd7efe99b223ed5af00719645 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 19:23:26 +0000 Subject: [PATCH] =?UTF-8?q?Bob=20AI:=20Multi-section=20update:=201)=20In?= =?UTF-8?q?=20the=20'about'=20(filosof=C3=ADa)=20section,=20remove=20the?= =?UTF-8?q?=20Instagra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/HomePage.tsx | 206 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 201 insertions(+), 5 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 0488c3d..58e0b9a 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,9 +1,13 @@ +"use client"; + // AUTO-GENERATED shell by per-section-migrate. // Section bodies live in .//sections/.tsx. Edit the section // files directly. Non-block content (wrappers, non-inlinable sections) is // preserved inline; extracted section blocks become refs. import React from 'react'; +import { motion } from 'framer-motion'; +import { MessageCircle, Instagram, Mail, MapPin, Phone, ChevronRight, Star, Shield, Zap } from 'lucide-react'; import HeroSection from './HomePage/sections/Hero'; import AboutSection from './HomePage/sections/About'; import FeaturesSection from './HomePage/sections/Features'; @@ -16,18 +20,210 @@ export default function HomePage(): React.JSX.Element { <> - +
+
+
+ +

+ Nuestra Filosofía +

+
+

+ Creemos en la transparencia absoluta y en el rendimiento sin compromisos. + Nuestros suplementos están formulados con ingredientes respaldados por la ciencia, + sin mezclas patentadas ocultas ni rellenos innecesarios. Solo lo que tu cuerpo + necesita para alcanzar el siguiente nivel. +

+

+ Cada producto que desarrollamos pasa por rigurosas pruebas de calidad para + garantizar pureza, potencia y resultados reales. Tu progreso es nuestra misión. +

+
+
+ + Suplementos de alta calidad +
+
+
+ + Calidad Premium Garantizada +
+
+
+
+
+
- - - +
+
+ +

+ Nuestros Productos +

+

+ Fórmulas avanzadas diseñadas para maximizar tu rendimiento y recuperación. +

+
+
+ {[ + { + name: "Proteína Whey Isolate", + desc: "Máxima pureza y rápida absorción para recuperación muscular.", + img: "https://images.unsplash.com/photo-1579722821273-0f6c7d44362f?auto=format&fit=crop&q=80&w=600", + price: "$1,200 MXN" + }, + { + name: "Creatina Monohidratada", + desc: "Aumenta fuerza, potencia y volumen muscular.", + img: "https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&q=80&w=600", + price: "$600 MXN" + }, + { + name: "Pre-Workout Extremo", + desc: "Energía explosiva y enfoque láser para tus entrenamientos.", + img: "https://images.unsplash.com/photo-1550345332-09e3ac987658?auto=format&fit=crop&q=80&w=600", + price: "$850 MXN" + }, + { + name: "BCAAs Ratio 2:1:1", + desc: "Aminoácidos ramificados para prevenir el catabolismo.", + img: "https://images.unsplash.com/photo-1594882645126-14020914d58d?auto=format&fit=crop&q=80&w=600", + price: "$550 MXN" + }, + { + name: "EAAs Esenciales", + desc: "Espectro completo de aminoácidos para síntesis proteica.", + img: "https://images.unsplash.com/photo-1622484211148-7124cb272964?auto=format&fit=crop&q=80&w=600", + price: "$700 MXN" + }, + { + name: "Ashwagandha KSM-66", + desc: "Reduce el estrés y optimiza la recuperación hormonal.", + img: "https://images.unsplash.com/photo-1611241893603-3c319f4cb8fd?auto=format&fit=crop&q=80&w=600", + price: "$450 MXN" + } + ].map((product, idx) => ( + +
+ {product.name} +
+ {product.price} +
+
+
+

{product.name}

+

{product.desc}

+ +
+
+ ))} +
+
+
- +
+
+
+ +

+ Ponte en Contacto +

+

+ ¿Tienes dudas sobre qué suplemento es ideal para tus objetivos? Escríbenos y te asesoramos personalmente. +

+ + +
+ + +

Envíanos un mensaje

+
e.preventDefault()}> +
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+
); }