Skip to content

Commit 9d878a9

Browse files
authored
Merge pull request #86 from skinatro/main
Release 0.9
2 parents b323776 + d27baa3 commit 9d878a9

4 files changed

Lines changed: 9 additions & 128 deletions

File tree

-57.7 KB
Loading

src/pages/Home.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,9 +447,12 @@ export const Home: React.FC = () => {
447447
<section className="px-4 sm:px-8 md:px-16 lg:px-[20rem] py-20 text-center text-white text-2xl font-bold mx-auto relative z-[200] bg-gradient-to-b from-[#0f172a] via-[#1e293b] to-[#020617] backdrop-blur-sm">
448448
<div className="max-w-6xl mx-auto">
449449
<h1 className="text-2xl sm:text-3xl md:text-4xl lg:text-5xl font-bold text-white mb-6">
450-
About Us
450+
About{' '}
451+
<span className="bg-[linear-gradient(135deg,#40E0D0_0%,#1A5AFF_50%,#40E0D0_100%)] bg-clip-text text-transparent">
452+
Us
453+
</span>
451454
</h1>
452-
<p className="text-sm sm:text-base md:text-lg lg:text-xl font-normal leading-relaxed">
455+
<p className="text-sm sm:text-base md:text-lg lg:text-xl text-gray-400 font-normal leading-relaxed">
453456
Empowering students with cutting-edge technology, fostering
454457
innovation, and building the next generation of tech leaders
455458
through collaborative learning and hands-on experience.

src/pages/ProfileCard.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,12 +285,15 @@
285285
width: 100%;
286286
height: 100%;
287287
object-fit: cover;
288-
object-position: center bottom;
288+
object-position: center 70%; /* default for most */
289289
position: absolute;
290290
bottom: 0;
291291
left: 0;
292+
z-index: 1;
292293
}
293294

295+
296+
294297
.pc-avatar-content::before {
295298
content: "";
296299
position: absolute;

src/pages/Sponsors.tsx

Lines changed: 0 additions & 125 deletions
Original file line numberDiff line numberDiff line change
@@ -183,131 +183,6 @@ export const Sponsors: React.FC = () => {
183183
</div>
184184
))}
185185

186-
{/* Sponsorship Tiers Benefits Section */}
187-
<section className="py-20">
188-
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
189-
<h2 className="text-3xl md:text-4xl font-bold text-white text-center mb-16">
190-
Sponsorship{" "}
191-
<span className="bg-gradient-to-r from-[#40E0D0] to-[#1A5AFF] bg-clip-text text-transparent">
192-
Benefits
193-
</span>
194-
</h2>
195-
196-
<div className="grid md:grid-cols-3 gap-8">
197-
{/* Silver Tier */}
198-
<motion.div
199-
initial={{ opacity: 0, y: 40 }}
200-
animate={{ opacity: 1, y: 0 }}
201-
transition={{ duration: 0.6, delay: 0.3 }}
202-
>
203-
<StarBorder color="#40E0D0" speed="4s" thickness={8}>
204-
<GlassCard className="p-8 h-full min-h[400px] border-2 border-cyan-400">
205-
<div className="text-center mb-6">
206-
<h3 className="text-2xl font-bold text-white mb-2">
207-
Silver
208-
</h3>
209-
<p className="text-gray-300">Supporting Partnership</p>
210-
</div>
211-
<ul className="space-y-3 text-white">
212-
<li className="flex items-center space-x-3">
213-
<div className="w-2 h-2 bg-white rounded-full" />
214-
<span>Post Event Social Media Posts</span>
215-
</li>
216-
<li className="flex items-center space-x-3">
217-
<div className="w-2 h-2 bg-white rounded-full" />
218-
<span>Logo feature in selected banner</span>
219-
</li>
220-
<li className="flex items-center space-x-3">
221-
<div className="w-2 h-2 bg-white rounded-full" />
222-
<span>Verbal mention in events</span>
223-
</li>
224-
</ul>
225-
</GlassCard>
226-
</StarBorder>
227-
</motion.div>
228-
229-
{/* Gold Tier */}
230-
<motion.div
231-
initial={{ opacity: 0, y: 40 }}
232-
animate={{ opacity: 1, y: 0 }}
233-
transition={{ duration: 0.6, delay: 0.2 }}
234-
>
235-
<StarBorder color="#40E0D0" speed="4s" thickness={8}>
236-
<GlassCard className="p-8 h-full min-h[400px] border-2 border-cyan-400">
237-
<div className="text-center mb-6">
238-
<h3 className="text-2xl font-bold text-white mb-2">
239-
Gold
240-
</h3>
241-
<p className="text-gray-300">Strategic Partnership</p>
242-
</div>
243-
<ul className="space-y-3 text-white">
244-
<li className="flex items-center space-x-3">
245-
<div className="w-2 h-2 bg-white rounded-full" />
246-
<span>Co Partner status in events</span>
247-
</li>
248-
<li className="flex items-center space-x-3">
249-
<div className="w-2 h-2 bg-white rounded-full" />
250-
<span>Standard Social Media Promotion</span>
251-
</li>
252-
<li className="flex items-center space-x-3">
253-
<div className="w-2 h-2 bg-white rounded-full" />
254-
<span>Mention during key event session</span>
255-
</li>
256-
<li className="flex items-center space-x-3">
257-
<div className="w-2 h-2 bg-white rounded-full" />
258-
<span>Brand Logo on shared banners</span>
259-
</li>
260-
</ul>
261-
</GlassCard>
262-
</StarBorder>
263-
</motion.div>
264-
265-
{/* Platinum Tier */}
266-
<motion.div
267-
initial={{ opacity: 0, y: 40 }}
268-
animate={{ opacity: 1, y: 0 }}
269-
transition={{ duration: 0.6, delay: 0.1 }}
270-
>
271-
<StarBorder color="#40E0D0" speed="4s" thickness={8}>
272-
<GlassCard className="p-8 h-full min-h[400px] border-2 border-cyan-400">
273-
<div className="text-center mb-6">
274-
<h3 className="text-2xl font-bold text-white mb-2">
275-
Platinum
276-
</h3>
277-
<p className="text-gray-300">Premium Partnership</p>
278-
</div>
279-
<ul className="space-y-3 text-white">
280-
<li className="flex items-center space-x-3">
281-
<div className="w-2 h-2 bg-white rounded-full" />
282-
<span>Title partner in all banners</span>
283-
</li>
284-
<li className="flex items-center space-x-3">
285-
<div className="w-2 h-2 bg-white rounded-full" />
286-
<span>Dedicated Sponsorship desk</span>
287-
</li>
288-
<li className="flex items-center space-x-3">
289-
<div className="w-2 h-2 bg-white rounded-full" />
290-
<span>Exclusive Banner space at entry</span>
291-
</li>
292-
<li className="flex items-center space-x-3">
293-
<div className="w-2 h-2 bg-white rounded-full" />
294-
<span>Premium social media campaign</span>
295-
</li>
296-
<li className="flex items-center space-x-3">
297-
<div className="w-2 h-2 bg-white rounded-full" />
298-
<span>Logo on CSI Website</span>
299-
</li>
300-
<li className="flex items-center space-x-3">
301-
<div className="w-2 h-2 bg-white rounded-full" />
302-
<span>Post Event Video</span>
303-
</li>
304-
</ul>
305-
</GlassCard>
306-
</StarBorder>
307-
</motion.div>
308-
</div>
309-
</div>
310-
</section>
311186

312187
{/* Sponsorship Kit Section */}
313188
<section className="py-20">

0 commit comments

Comments
 (0)