1+
12import React from 'react' ;
23import StarBackground from '@/components/StarBackground' ;
3- import { GraduationCap , BookOpen , Video , Users , Award , Sparkles } from 'lucide-react' ;
4+ import { GraduationCap , BookOpen , Video , Users , Award , Sparkles , Leaf , Brain , Coins , ShoppingCart , Heart , Lightbulb } from 'lucide-react' ;
45import { Button } from '@/components/ui/button' ;
6+
57const CourseCard = ( {
68 title,
79 description,
810 icon,
9- level,
10- duration,
11+ modules,
1112 color
1213} : {
1314 title : string ;
1415 description : string ;
1516 icon : React . ReactNode ;
16- level : string ;
17- duration : string ;
17+ modules : Array < { name : string ; topics : string [ ] } > ;
1818 color : string ;
19- } ) => < div className = "bg-alien-space-dark/60 backdrop-blur-md rounded-lg overflow-hidden border border-alien-gold/20 hover:border-alien-gold/50 transition-all hover:transform hover:scale-[1.01]" >
19+ } ) => (
20+ < div className = "bg-alien-space-dark/60 backdrop-blur-md rounded-lg overflow-hidden border border-alien-gold/20 hover:border-alien-gold/50 transition-all hover:transform hover:scale-[1.01]" >
2021 < div className = { `h-2 ${ color } ` } > </ div >
2122 < div className = "p-6" >
2223 < div className = "flex items-start justify-between mb-4" >
2324 < div className = "p-3 bg-alien-space-light/50 rounded-full" >
2425 { icon }
2526 </ div >
2627 < div className = "flex space-x-2" >
27- < span className = "px-2 py-1 text-xs bg-alien-space-light/50 rounded-full text-alien-gold" > { level } </ span >
28- < span className = "px-2 py-1 text-xs bg-alien-space-light/50 rounded-full text-alien-green" > { duration } </ span >
28+ < span className = "px-2 py-1 text-xs bg-alien-space-light/50 rounded-full text-alien-green" > { modules . length } módulos</ span >
2929 </ div >
3030 </ div >
3131 < h3 className = "text-xl font-semibold mb-2 text-alien-gold font-nasalization" > { title } </ h3 >
3232 < p className = "text-gray-300 text-sm mb-4" > { description } </ p >
33+
34+ { /* Modules List */ }
35+ < div className = "space-y-2 mb-4" >
36+ { modules . map ( ( module , index ) => (
37+ < div key = { index } className = "bg-alien-space-light/30 rounded p-2" >
38+ < h4 className = "text-alien-gold text-sm font-semibold mb-1" > { index + 1 } · { module . name } </ h4 >
39+ < ul className = "text-xs text-gray-300 space-y-1" >
40+ { module . topics . map ( ( topic , topicIndex ) => (
41+ < li key = { topicIndex } className = "flex items-start" >
42+ < span className = "text-alien-green mr-1" > ·</ span >
43+ { topic }
44+ </ li >
45+ ) ) }
46+ </ ul >
47+ </ div >
48+ ) ) }
49+ </ div >
50+
3351 < Button variant = "outline" className = "w-full border-alien-gold/30 text-alien-gold hover:bg-alien-gold/10" >
34- Explore Course
52+ Explorar Curso
3553 </ Button >
3654 </ div >
37- </ div > ;
55+ </ div >
56+ ) ;
57+
3858const Academy : React . FC = ( ) => {
39- const courses = [ {
40- title : "Blockchain Fundamentals" ,
41- description : "Learn the core concepts of blockchain technology, cryptocurrencies, and decentralized networks." ,
42- icon : < BookOpen className = "h-6 w-6 text-alien-gold" /> ,
43- level : "Beginner" ,
44- duration : "6 hours" ,
45- color : "bg-green-500"
46- } , {
47- title : "DeFi Mastery" ,
48- description : "Dive deep into decentralized finance protocols, yield farming, and liquidity provision." ,
49- icon : < Sparkles className = "h-6 w-6 text-alien-gold" /> ,
50- level : "Intermediate" ,
51- duration : "12 hours" ,
52- color : "bg-blue-500"
53- } , {
54- title : "Tokenomics Design" ,
55- description : "Understand how to create sustainable token economies and incentive mechanisms." ,
56- icon : < Award className = "h-6 w-6 text-alien-gold" /> ,
57- level : "Advanced" ,
58- duration : "8 hours" ,
59- color : "bg-purple-500"
60- } , {
61- title : "Smart Contract Development" ,
62- description : "Learn to code, deploy, and audit secure smart contracts on multiple blockchains." ,
63- icon : < BookOpen className = "h-6 w-6 text-alien-gold" /> ,
64- level : "Advanced" ,
65- duration : "15 hours" ,
66- color : "bg-red-500"
67- } , {
68- title : "DAO Governance" ,
69- description : "Master the principles of decentralized governance and community coordination." ,
70- icon : < Users className = "h-6 w-6 text-alien-gold" /> ,
71- level : "Intermediate" ,
72- duration : "9 hours" ,
73- color : "bg-yellow-500"
74- } , {
75- title : "Web3 Privacy & Security" ,
76- description : "Protect your assets and identity in the decentralized ecosystem." ,
77- icon : < Video className = "h-6 w-6 text-alien-gold" /> ,
78- level : "All Levels" ,
79- duration : "7 hours" ,
80- color : "bg-emerald-500"
81- } ] ;
82- return < div className = "relative flex flex-col flex-1" >
59+ const courses = [
60+ {
61+ title : "Abundancia & Libertad" ,
62+ description : "Domina los fundamentos de la economía digital, blockchain y sistemas financieros sostenibles para crear abundancia y libertad financiera." ,
63+ icon : < Coins className = "h-6 w-6 text-alien-gold" /> ,
64+ color : "bg-green-500" ,
65+ modules : [
66+ {
67+ name : "EcoFinTech" ,
68+ topics : [
69+ "Circularidad + Criterios ESG + Eficiencia & Sostenibilidad + Crecimiento & Desarrollo" ,
70+ "Dinámica de Sistemas (Complejo / Dinámico)" ,
71+ "Digitalización + Dinero & Sistemas de Pago + Diseño Iterativo & Metodologías" ,
72+ "Economía & Finanzas Macro General & Micro Particular + Teoría de Juegos"
73+ ]
74+ } ,
75+ {
76+ name : "Ecommerce" ,
77+ topics : [
78+ "Características fundamentales" ,
79+ "Fundamentos e Infraestructura" ,
80+ "Ventajas & Usos" ,
81+ "Formas & Tipos"
82+ ]
83+ } ,
84+ {
85+ name : "Blockchain & Criptografía" ,
86+ topics : [
87+ "Activos Digitales (Crypto + Tokens, Bitcoin, Altcoins, Stablecoins, memecoins)" ,
88+ "Propiedades Digitales (NFTs + Smart Contracts)" ,
89+ "Aplicaciones & Finanzas Descentralizadas"
90+ ]
91+ }
92+ ]
93+ } ,
94+ {
95+ title : "Autogestión & Sostenibilidad" ,
96+ description : "Aprende a gestionar tu vida de manera sostenible integrando ecología, permacultura y gestión consciente de energía, espacio y tiempo." ,
97+ icon : < Leaf className = "h-6 w-6 text-alien-gold" /> ,
98+ color : "bg-emerald-500" ,
99+ modules : [
100+ {
101+ name : "Módulo Único Integrado" ,
102+ topics : [
103+ "Ecología + Permacultura + Sostenibilidad" ,
104+ "Life + Live (Vida y Vivir)" ,
105+ "Energy + Space + Time (Energía, Espacio y Tiempo)"
106+ ]
107+ }
108+ ]
109+ } ,
110+ {
111+ title : "Armonía & Trascendencia" ,
112+ description : "Explora las dimensiones más profundas del ser a través de conciencia, meditación, alquimia filosófica y alimentación sagrada." ,
113+ icon : < Brain className = "h-6 w-6 text-alien-gold" /> ,
114+ color : "bg-purple-500" ,
115+ modules : [
116+ {
117+ name : "Conciencia & Energía (Focusing Mindfulness)" ,
118+ topics : [
119+ "Atención & Concentración (Actitud | Aptitud)" ,
120+ "Conciencia | Consciencia (Inconsciencia | Preconciencia | Subconsciente)" ,
121+ "Ecuanimidad | Plenitud | Enfoque | Percepción" ,
122+ "Determinación | Intención | Propósito | Sentido | Voluntad | Entidad | Ser"
123+ ]
124+ } ,
125+ {
126+ name : "Meditaciones & Yoga" ,
127+ topics : [
128+ "Técnicas de meditación avanzadas" ,
129+ "Práctica de yoga integral" ,
130+ "Integración cuerpo-mente-espíritu"
131+ ]
132+ } ,
133+ {
134+ name : "Alkymia & Filosofía" ,
135+ topics : [
136+ "Alkymia: Auto trascendencia | Trascendencia" ,
137+ "Artes Liberales (Trivium + Quadrivium)" ,
138+ "Hermenéutica | Heurística" ,
139+ "Axis Mundi | Chackras | Dyed | Kábbalah | Kundalini | Qi" ,
140+ "Filosofía: Iluminación Espiritual e Intelectual | Propedéutica"
141+ ]
142+ } ,
143+ {
144+ name : "Alimento & Bebida Sagrada" ,
145+ topics : [
146+ "Ayurveda práctica" ,
147+ "Ambar | Ambrosia | Amrita | Kundalini" ,
148+ "Haoma | Soma" ,
149+ "Nutrición consciente y sagrada"
150+ ]
151+ }
152+ ]
153+ }
154+ ] ;
155+
156+ return (
157+ < div className = "relative flex flex-col flex-1" >
83158 < main className = "relative z-10 flex-grow container mx-auto px-4 pt-4 pb-16" >
84159 < div className = "max-w-6xl mx-auto" >
85160 < div className = "text-center mb-12" >
86161 < GraduationCap className = "h-12 w-12 text-alien-gold mx-auto mb-4" />
87162 < h1 className = "text-4xl md:text-5xl font-bold text-alien-gold mb-6 font-nasalization" > Academy</ h1 >
88- < p className = "text-xl text-gray-300 max-w-3xl mx-auto font-[Exo]" > Acquiring full attention capacities, to connect discovering expand knowledge and skills, this helps you to evolve and drive you to the optimal experience with the fullness of the flow, as well as increase the benefits of your quality of life, more sustainable profits, with a complete well being, exploring both ancestral techniques and vanguard technologies.
89-
90- Connect at a deeper level with yourself, your world and this planet, this is our Holistic Health Wealth.</ p >
163+ < p className = "text-xl text-gray-300 max-w-3xl mx-auto font-[Exo]" >
164+ Adquiere capacidades completas de atención para conectar, descubrir y expandir conocimientos y habilidades.
165+ Esto te ayuda a evolucionar y te impulsa hacia la experiencia óptima con la plenitud del flujo,
166+ así como aumentar los beneficios de tu calidad de vida y ganancias más sostenibles, con un bienestar completo,
167+ explorando tanto técnicas ancestrales como tecnologías de vanguardia.
168+ </ p >
91169 </ div >
92170
93- { /* Featured Course */ }
171+ { /* Featured Program */ }
94172 < div className = "mb-12 bg-alien-space-dark/60 rounded-xl overflow-hidden backdrop-blur-md border border-alien-gold/30" >
95173 < div className = "grid grid-cols-1 md:grid-cols-2" >
96174 < div className = "p-8 md:p-12" >
97- < h2 className = "text-3xl font-bold text-alien-gold mb-4 font-nasalization" > Certification Degree Master's Program </ h2 >
175+ < h2 className = "text-3xl font-bold text-alien-gold mb-4 font-nasalization" > Programa Master de Certificación </ h2 >
98176 < p className = "text-gray-300 mb-6 font-[Exo]" >
99- Become a certified ΔlieπFlΦw $pac€ Explorer & Navigator and unlock exclusive opportunities in our expanding cosmic ecosystem .
177+ Conviértete en un Explorador y Navegador certificado del ΔlieπFlΦw $pac€ y desbloquea oportunidades exclusivas en nuestro ecosistema cósmico en expansión .
100178 </ p >
101179 < div className = "space-y-4 mb-8" >
102180 < div className = "flex items-center" >
103181 < div className = "w-2 h-2 bg-alien-green rounded-full mr-2" > </ div >
104- < p className = "text-alien-green" > 161 interactive modules</ p >
182+ < p className = "text-alien-green" > 3 Cursos principales integrados</ p >
183+ </ div >
184+ < div className = "flex items-center" >
185+ < div className = "w-2 h-2 bg-alien-green rounded-full mr-2" > </ div >
186+ < p className = "text-alien-green" > 8 Módulos especializados</ p >
105187 </ div >
106188 < div className = "flex items-center" >
107189 < div className = "w-2 h-2 bg-alien-green rounded-full mr-2" > </ div >
108- < p className = "text-alien-green" > Bootcamps with Live mentoring sessions </ p >
190+ < p className = "text-alien-green" > Bootcamps con sesiones de mentoría en vivo </ p >
109191 </ div >
110192 < div className = "flex items-center" >
111193 < div className = "w-2 h-2 bg-alien-green rounded-full mr-2" > </ div >
112- < p className = "text-alien-green" > On-chain credential NFT</ p >
194+ < p className = "text-alien-green" > Credencial NFT on-chain </ p >
113195 </ div >
114196 </ div >
115197 < Button className = "bg-alien-gold hover:bg-alien-gold-light text-alien-space-dark font-[Exo]" >
116- Join Waitlist
198+ Unirse a Lista de Espera
117199 </ Button >
118200 </ div >
119201 < div className = "bg-gradient-to-tr from-alien-green/20 to-alien-gold/20 p-8 flex items-center justify-center" >
@@ -124,29 +206,33 @@ Connect at a deeper level with yourself, your world and this planet, this is our
124206
125207 { /* Course Grid */ }
126208 < div className = "mb-12" >
127- < h2 className = "text-2xl font-bold text-alien-gold mb-8 font-nasalization" > Featured Courses</ h2 >
128- < div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" >
129- { courses . map ( ( course , index ) => < CourseCard key = { index } { ...course } /> ) }
209+ < h2 className = "text-2xl font-bold text-alien-gold mb-8 font-nasalization" > Cursos Principales</ h2 >
210+ < div className = "grid grid-cols-1 lg:grid-cols-3 gap-8" >
211+ { courses . map ( ( course , index ) => (
212+ < CourseCard key = { index } { ...course } />
213+ ) ) }
130214 </ div >
131215 </ div >
132216
133217 { /* CTA Section */ }
134218 < div className = "text-center bg-alien-space-dark/60 rounded-xl p-8 backdrop-blur-md border border-alien-gold/20" >
135- < h2 className = "text-2xl font-bold text-alien-gold mb-4 font-nasalization" > Ready to Expand Your Cosmic Knowledge ?</ h2 >
219+ < h2 className = "text-2xl font-bold text-alien-gold mb-4 font-nasalization" > ¿Listo para Expandir tu Conocimiento Cósmico ?</ h2 >
136220 < p className = "text-gray-300 mb-6 max-w-2xl mx-auto font-[Exo]" >
137- Join thousands of space navigators on their journey to master the principles of the decentralized multiverse .
221+ Únete a miles de navegadores espaciales en su viaje para dominar los principios del multiverso descentralizado .
138222 </ p >
139223 < div className = "flex flex-wrap justify-center gap-4" >
140224 < Button className = "bg-alien-gold hover:bg-alien-gold-light text-alien-space-dark font-[Exo]" >
141- Explore All Courses
225+ Explorar Todos los Cursos
142226 </ Button >
143227 < Button variant = "outline" className = "border-alien-green text-alien-green hover:bg-alien-green/20 font-[Exo]" >
144- Join Community
228+ Unirse a la Comunidad
145229 </ Button >
146230 </ div >
147231 </ div >
148232 </ div >
149233 </ main >
150- </ div > ;
234+ </ div >
235+ ) ;
151236} ;
152- export default Academy ;
237+
238+ export default Academy ;
0 commit comments