@@ -2,16 +2,21 @@ import React from 'react';
22import StarBackground from '@/components/StarBackground' ;
33import { GraduationCap , BookOpen , Video , Users , Award , Sparkles } from 'lucide-react' ;
44import { Button } from '@/components/ui/button' ;
5-
6- const CourseCard = ( { title, description, icon, level, duration, color } : {
5+ const CourseCard = ( {
6+ title,
7+ description,
8+ icon,
9+ level,
10+ duration,
11+ color
12+ } : {
713 title : string ;
814 description : string ;
915 icon : React . ReactNode ;
1016 level : string ;
1117 duration : string ;
1218 color : string ;
13- } ) => (
14- < 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+ } ) => < 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]" >
1520 < div className = { `h-2 ${ color } ` } > </ div >
1621 < div className = "p-6" >
1722 < div className = "flex items-start justify-between mb-4" >
@@ -29,71 +34,60 @@ const CourseCard = ({ title, description, icon, level, duration, color }: {
2934 Explore Course
3035 </ Button >
3136 </ div >
32- </ div >
33- ) ;
34-
37+ </ div > ;
3538const Academy : React . FC = ( ) => {
36- const courses = [
37- {
38- title : "Blockchain Fundamentals" ,
39- description : "Learn the core concepts of blockchain technology, cryptocurrencies, and decentralized networks." ,
40- icon : < BookOpen className = "h-6 w-6 text-alien-gold" /> ,
41- level : "Beginner" ,
42- duration : "6 hours" ,
43- color : "bg-green-500"
44- } ,
45- {
46- title : "DeFi Mastery" ,
47- description : "Dive deep into decentralized finance protocols, yield farming, and liquidity provision." ,
48- icon : < Sparkles className = "h-6 w-6 text-alien-gold" /> ,
49- level : "Intermediate" ,
50- duration : "12 hours" ,
51- color : "bg-blue-500"
52- } ,
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- {
62- title : "Smart Contract Development" ,
63- description : "Learn to code, deploy, and audit secure smart contracts on multiple blockchains." ,
64- icon : < BookOpen className = "h-6 w-6 text-alien-gold" /> ,
65- level : "Advanced" ,
66- duration : "15 hours" ,
67- color : "bg-red-500"
68- } ,
69- {
70- title : "DAO Governance" ,
71- description : "Master the principles of decentralized governance and community coordination." ,
72- icon : < Users className = "h-6 w-6 text-alien-gold" /> ,
73- level : "Intermediate" ,
74- duration : "9 hours" ,
75- color : "bg-yellow-500"
76- } ,
77- {
78- title : "Web3 Privacy & Security" ,
79- description : "Protect your assets and identity in the decentralized ecosystem." ,
80- icon : < Video className = "h-6 w-6 text-alien-gold" /> ,
81- level : "All Levels" ,
82- duration : "7 hours" ,
83- color : "bg-emerald-500"
84- }
85- ] ;
86-
87- return (
88- < div className = "relative flex flex-col flex-1" >
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" >
8983 < main className = "relative z-10 flex-grow container mx-auto px-4 pt-4 pb-16" >
9084 < div className = "max-w-6xl mx-auto" >
9185 < div className = "text-center mb-12" >
9286 < GraduationCap className = "h-12 w-12 text-alien-gold mx-auto mb-4" />
9387 < h1 className = "text-4xl md:text-5xl font-bold text-alien-gold mb-6 font-nasalization" > Academy</ h1 >
94- < p className = "text-xl text-gray-300 max-w-3xl mx-auto font-[Exo]" >
95- Expand your cosmic knowledge and master the principles of decentralized technologies through our immersive learning experiences.
96- </ p >
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 >
9791 </ div >
9892
9993 { /* Featured Course */ }
@@ -132,9 +126,7 @@ const Academy: React.FC = () => {
132126 < div className = "mb-12" >
133127 < h2 className = "text-2xl font-bold text-alien-gold mb-8 font-nasalization" > Featured Courses</ h2 >
134128 < div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" >
135- { courses . map ( ( course , index ) => (
136- < CourseCard key = { index } { ...course } />
137- ) ) }
129+ { courses . map ( ( course , index ) => < CourseCard key = { index } { ...course } /> ) }
138130 </ div >
139131 </ div >
140132
@@ -155,8 +147,6 @@ const Academy: React.FC = () => {
155147 </ div >
156148 </ div >
157149 </ main >
158- </ div >
159- ) ;
150+ </ div > ;
160151} ;
161-
162- export default Academy ;
152+ export default Academy ;
0 commit comments