@@ -86,37 +86,70 @@ const HomePage: FC = () => {
8686 </ Card >
8787 </ div >
8888
89+ { /* About Encorpora Section */ }
90+ < div className = "mt-10 flex flex-wrap justify-center gap-6" >
91+
92+ < Card className = "w-80 shadow-lg" >
93+ < CardContent className = "p-6 text-center" >
94+ < h2 className = "text-xl font-semibold text-gray-900" > Personalizing Learning</ h2 >
95+ < p className = "text-gray-600 mt-2" >
96+ We create < strong > custom textbooks</ strong > tailored to your interests and needs. Our AI-powered platform < strong > adapts to your learning style</ strong > and < strong > challenges you</ strong > to grow.
97+ </ p >
98+ </ CardContent >
99+ </ Card >
100+
101+ < Card className = "w-80 shadow-lg" >
102+ < CardContent className = "p-6 text-center" >
103+ < h2 className = "text-xl font-semibold text-gray-900" > Empowering Students</ h2 >
104+ < p className = "text-gray-600 mt-2" >
105+ The future of education isn't static—it's < strong > interactive, adaptive, and designed just for you</ strong > .
106+ Encorpora delivers a dynamic learning experience that < strong > inspires curiosity</ strong > and < strong > encourages exploration</ strong > .
107+ </ p >
108+ </ CardContent >
109+ </ Card >
110+
111+ < Card className = "w-80 shadow-lg" >
112+ < CardContent className = "p-6 text-center" >
113+ < h2 className = "text-xl font-semibold text-gray-900" > Revolutionizing Education</ h2 >
114+ < p className = "text-gray-700 mt-2" >
115+ We are turning < strong > decades of software engineering</ strong > and < strong > education experience</ strong > into a platform that < strong > empowers students</ strong > to learn in new ways. We are < strong > Encorpora</ strong > .
116+ </ p >
117+ </ CardContent >
118+ </ Card >
119+ </ div >
120+
89121 { /* Featured Books */ }
90- < div className = "mt-16 text-center max-w-3xl" >
122+ < div className = "mt-16 text-center max-w-3xl" >
91123 < h2 className = "text-3xl font-semibold" > Featured Books</ h2 >
92124 < p className = "text-gray-700 mt-2" >
93125 Explore our growing collection of free educational materials.
94126 </ p >
95- </ div >
127+ </ div >
96128
97129 { /* Featured Books List */ }
98- < div className = "mt-10 flex flex-wrap justify-center gap-6" >
99- { loading ? (
100- < p className = "text-gray-600" > Loading featured books...</ p >
101- ) : featuredBooks . length === 0 ? (
102- < p className = "text-gray-600" > No featured books available.</ p >
103- ) : (
104- featuredBooks . map ( ( book ) => (
105- < Card key = { book . id } className = "w-80 shadow-lg" >
106- < CardContent className = "p-6 text-center" >
107- < h3 className = "text-lg font-semibold" > { book . title } </ h3 >
108- < p className = "text-gray-600" > { book . description } </ p >
109- < a href = { book . link } target = "_blank" rel = "noopener noreferrer" >
110- < Button className = "mt-4" > Download</ Button >
111- </ a >
112- </ CardContent >
113- </ Card >
114- ) )
115- ) }
116- </ div >
130+ < div className = "mt-10 flex flex-wrap justify-center gap-6" >
131+ {
132+ loading ? (
133+ < p className = "text-gray-600" > Loading featured books...</ p >
134+ ) : featuredBooks . length === 0 ? (
135+ < p className = "text-gray-600" > No featured books available.</ p >
136+ ) : (
137+ featuredBooks . map ( ( book ) => (
138+ < Card key = { book . id } className = "w-80 shadow-lg" >
139+ < CardContent className = "p-6 text-center" >
140+ < h3 className = "text-lg font-semibold" > { book . title } </ h3 >
141+ < p className = "text-gray-600" > { book . description } </ p >
142+ < a href = { book . link } target = "_blank" rel = "noopener noreferrer" >
143+ < Button className = "mt-4" > Download</ Button >
144+ </ a >
145+ </ CardContent >
146+ </ Card >
147+ ) )
148+ ) }
149+ </ div >
117150
118151 { /* View All Books Link */ }
119- < div className = "mt-6" >
152+ < div className = "mt-6" >
120153 < a
121154 href = "/books"
122155 target = "_blank"
@@ -125,12 +158,12 @@ const HomePage: FC = () => {
125158 >
126159 View All Books →
127160 </ a >
128- </ div >
161+ </ div >
129162
130163 < footer className = "mt-16 text-gray-500 text-sm" >
131164 © { new Date ( ) . getFullYear ( ) } Corpora Inc - All Rights Reserved.
132165 </ footer >
133- </ div >
166+ </ div >
134167 ) ;
135168} ;
136169
0 commit comments