@@ -97,7 +97,8 @@ export default function About() {
9797 }
9898
9999 .animate-in .about-title {
100- animation: slideInFromTop 0.8s ease-out forwards;
100+ animation: slideInFromTop 0.8s ease-out forwards,
101+ glowPulse 2s ease-in-out infinite 1s;
101102 }
102103 .animate-in .about-image-left {
103104 animation: slideInFromLeft 1s ease-out forwards;
@@ -167,40 +168,73 @@ export default function About() {
167168 100% {
168169 transform: translateY(0);
169170 }
170- }
171+ }
171172 ` } </ style >
172173
173174 < section ref = { sectionRef } className = "relative -mb-32 bg-black text-white" id = "about" >
174- < div ref = { addToImagesRef } className = "about-image-left absolute left-0 top-4 hidden lg:block" >
175- < Image src = "/images/net.jpg" alt = "Spiderweb" width = { 240 } height = { 280 } className = "opacity-60" />
175+ < div
176+ ref = { addToImagesRef }
177+ className = "about-image-left absolute left-0 top-4 block"
178+ >
179+ < Image
180+ src = "/images/net.jpg"
181+ alt = "Spiderweb"
182+ width = { 240 }
183+ height = { 280 }
184+ className = "opacity-60 w-28 sm:w-40 md:w-52 lg:w-60 h-auto object-contain"
185+ />
176186 </ div >
177- < div ref = { addToImagesRef } className = "about-image-top absolute left-1/2 -translate-x-1/2 top-0 hidden lg:block" >
178- < Image src = "/images/Vector.png" alt = "vector" width = { 520 } height = { 120 } />
187+
188+ < div
189+ ref = { addToImagesRef }
190+ className = "about-image-top absolute left-1/2 -translate-x-1/2 top-0 block"
191+ >
192+ < Image
193+ src = "/images/Vector.png"
194+ alt = "Vector"
195+ width = { 520 }
196+ height = { 120 }
197+ className = "w-40 sm:w-64 md:w-80 lg:w-[520px] h-auto object-contain"
198+ />
179199 </ div >
180- < div ref = { addToImagesRef } className = "about-image-right absolute right-0 top-80 -translate-y-1/2 transform hidden lg:block" >
181- < Image src = "/images/skeleton.png" alt = "Skeleton" width = { 296 } height = { 600 } className = "mt-[10rem] opacity-80" />
200+
201+ < div
202+ ref = { addToImagesRef }
203+ className = "about-image-right absolute right-0 top-60 sm:top-72 md:top-80 transform block"
204+ >
205+ < Image
206+ src = "/images/skeleton.png"
207+ alt = "Skeleton"
208+ width = { 296 }
209+ height = { 600 }
210+ className = "opacity-80 mt-20 w-28 sm:w-40 md:w-52 lg:w-[296px] h-auto object-contain"
211+ />
182212 </ div >
183213
184- < div className = "container mx-auto px-4 sm:px-6 lg:px-8 py-20 sm:py-28 lg:py-40" >
185- < div className = "mb-20 lg:mb-32" >
186- < h2 className = "font-jolly about-title text-center text-[#ff0500] text-4xl sm:text-5xl lg:text-6xl mb-6" >
214+
215+ < div className = "container mx-auto px-4 sm:px-6 md:px-8 lg:px-12 py-12 sm:py-20 md:py-28 lg:py-40" >
216+ < div className = "mb-12 sm:mb-16 md:mb-20 lg:mb-32" >
217+ < h2
218+ className = "font-jolly about-title text-center text-[#ff0500] text-2xl sm:text-3xl md:text-4xl lg:text-5xl xl:text-6xl mb-6" >
187219 About Genesis
188220 </ h2 >
189- < div ref = { contentRef } className = "about-content max-w-6xl mx-auto text-center" >
190- < p className = "font-poppins text-white mb-4 text-base sm:text-lg" >
191- GENESIS Is Much More Than Just A Team, It's A Close-Knit Family. With A Diverse Group Of 50 Individuals,
192- Each Bringing Their Own Set Of Skills And Experiences, The Connections They Share Go Far Beyond The
193- Typical Work Relationship. From Managers To Supervisors To Executives, Everyone Comes Together With A
194- Shared Vision And A Collective Purpose. GENESIS Is Built On Four Major Pillars: Technical, Sports,
195- Cultural, And Social. But These Aren't Just Categories Or Labels, But Also — They're A Reflection Of The
196- Unique Passions And Interests That Each Team Member Brings.
221+
222+ < div ref = { contentRef } className = "about-content max-w-4xl sm:max-w-5xl md:max-w-6xl mx-auto text-center px-2 sm:px-4" >
223+ < p className = "font-poppins text-white mb-4 text-xs sm:text-sm md:text-base lg:text-lg" >
224+ GENESIS is much more than just a team, it's a close-knit family. With a diverse group of 50 individuals,
225+ each bringing their own set of skills and experiences, the connections they share go far beyond the
226+ typical work relationship. From managers to supervisors to executives, everyone comes together with a
227+ shared vision and a collective purpose. GENESIS is built on four major pillars: technical, sports,
228+ cultural, and social. But these aren't just categories or labels, but also — they're a reflection of the
229+ unique passions and interests that each team member brings.
197230 </ p >
198- < p className = "font-poppins text-white text-base sm:text-lg" >
199- Some Are Creative Minds With A Knack For Design, Others Are Passionate Athletes, And Some Are Tech
200- Experts. There Are Also Those Who Are Deeply Committed To Making A Social Impact. What Truly Makes GENESIS
201- Stand Out, However, Is The Emotional Connection They Create With The People They Serve. Through Events
202- Like Cultural Festivals That Unite Different Groups And Sports Activities That Promote Camaraderie And
203- Healthy Competition, GENESIS Fosters A Strong Sense Of Community Among Students, Faculty, And Beyond.
231+
232+ < p className = "font-poppins text-white text-xs sm:text-sm md:text-base lg:text-lg" >
233+ Some are creative minds with a knack for design, others are passionate athletes, and some are tech
234+ experts. There are also those who are deeply committed to making a social impact. What truly makes GENESIS
235+ stand out, however, is the emotional connection they create with the people they serve. Through events
236+ like cultural festivals that unite different groups and sports activities that promote camaraderie and
237+ healthy competition, GENESIS fosters a strong sense of community among students, faculty, and beyond.
204238 </ p >
205239 </ div >
206240 </ div >
@@ -293,20 +327,20 @@ export function AboutHackman() {
293327 < div className = "relative py-10 sm:py-12 lg:py-16" >
294328 < div
295329 ref = { addToImagesRef }
296- className = "absolute top-1/2 left-0 -translate-y-1/2 transform hidden lg:block left-bat"
330+ className = "absolute top-1/2 left-0 -translate-y-1/2 transform left-bat"
297331 >
298332 < Image src = "/images/left_bat.png" alt = "Bats" width = { 400 } height = { 200 } />
299333 </ div >
300334 < div
301335 ref = { addToImagesRef }
302- className = "absolute top-1/2 right-0 -translate-y-1/2 transform hidden lg:block right-bat"
336+ className = "absolute top-1/2 right-0 -translate-y-1/2 transform right-bat"
303337 >
304338 < Image src = "/images/right_bat.png" alt = "Bats" width = { 400 } height = { 200 } />
305339 </ div >
306340
307341 < div className = "container mx-auto px-4 text-center" ref = { contentRef } >
308- < h2 className = "font-jolly about-title text-[#ff0500] text-4xl sm:text-5xl lg :text-6xl mb-10" >
309- About Hackman V8.0
342+ < h2 className = "font-jolly about-title text-[#ff0500] text-2xl sm:text-3xl md:text-4xl lg:text-5xl xl :text-6xl mb-10" >
343+ About Hackman V8
310344 </ h2 >
311345
312346 < div
@@ -322,10 +356,10 @@ export function AboutHackman() {
322356 </ h1 >
323357
324358 < p className = "font-poppins text-[#747474] text-sm sm:text-base mb-6 leading-relaxed" >
325- Our Grand Ritual, Hackman 2025, Rises From The Shadows As A 36-Hour Haunted Hackathon, Where
326- Restless Minds Gather To Code, Create, And Conquer The Dark . Guided By The Wisdom Of The
327- Masters Of The Craft, Participants Will Battle Sleepless Nights, Conjure Groundbreaking
328- Ideas, And Fight For Wicked Prizes, Swag, And Eerie Goodies — Only The Brave Will Survive !
359+ Our Grand Ritual, Hackman 2025, rises from the shadows as a 36-Hour Haunted Hackathon, where
360+ restless minds gather to code, create, and conquer the dark . Guided by the wisdom of the
361+ masters of the craft, participants will battle sleepless nights, conjure groundbreaking
362+ ideas, and fight for wicked prizes, swag, and eerie goodies — only the brave will survive !
329363 </ p >
330364 < button className = "bg-[#fe772d] hover:bg-orange-600 text-xl sm:text-2xl lg:text-3xl text-gray-900 font-jolly font-bold py-2 sm:py-3 px-8 sm:px-12 lg:px-[4rem] rounded-[1rem] sm:rounded-[1.5rem] transition-colors duration-300" >
331365 View Details
0 commit comments