Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finally CP as Competitive Programming #50

Merged
merged 1 commit into from
Aug 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 41 additions & 10 deletions components/activities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,22 @@ export default function Activities() {
</div>

{/* CP Post */}
<div className="flex flex-col md:flex-row w-full h-full" data-aos="zoom-y-out" data-aos-delay="150">
<div
className="flex flex-col md:flex-row w-full h-full"
data-aos="zoom-y-out"
data-aos-delay="150"
>
<div className="highlight flex-1 flex items-center justify-center bg-black-800 p-8">
<div className="p-8 md:p-16">
<HyperText className="text-3xl font-bold mb-4 text-green-500" text="CP" />
{/* <HyperText className="text-3xl font-bold mb-4 text-green-500 " text="Competitive Programming" /> */}
<div className="w-full max-w-[90%] mx-auto ">
<HyperText
className="text-3xl font-bold mb-4 text-green-500 text-center whitespace-nowrap overflow-hidden text-ellipsis"
text="Competitive Programming"
/>
</div>
<h2 className="text-2xl font-bold mb-4 px-10">PB Hustle</h2>
<p className="text-lg text-justify px-16">
<p className="text-lg text-justify px-16">
Point Blank has organized over 40+ editions of its PB Hustle
coding contest, where participants solve 5-7 increasingly
difficult problems in their preferred programming language. The
Expand All @@ -41,7 +51,11 @@ export default function Activities() {
</div>

{/* Development Post */}
<div className="flex flex-col-reverse items-center justify-center md:flex-row w-full h-full" data-aos="zoom-y-out" data-aos-delay="150">
<div
className="flex flex-col-reverse items-center justify-center md:flex-row w-full h-full"
data-aos="zoom-y-out"
data-aos-delay="150"
>
<div className="highlight flex-1 flex items-center justify-center bg-black-500 h-full">
<div className="h-96 flex items-center justify-center bg-black-900">
<Image
Expand All @@ -55,7 +69,10 @@ export default function Activities() {
</div>
<div className="highlight flex-1 flex items-center justify-center p-8 bg-black-800">
<div className="p-8 md:p-16 text-justify">
<HyperText className="text-3xl font-bold mb-4 text-green-500" text="Development" />
<HyperText
className="text-3xl font-bold mb-4 text-green-500"
text="Development"
/>
<h2 className="text-2xl font-bold mb-4">PB Chronicles</h2>
<p className="text-lg text-justify">
Point Blank has hosted over 100+ workshops, covering a wide range
Expand All @@ -71,10 +88,17 @@ export default function Activities() {
</div>

{/* Hackathon Post */}
<div className="flex flex-col md:flex-row w-full h-full" data-aos="zoom-y-out" data-aos-delay="150">
<div
className="flex flex-col md:flex-row w-full h-full"
data-aos="zoom-y-out"
data-aos-delay="150"
>
<div className="highlight flex-1 flex items-center justify-center bg-black-800 p-8">
<div className="p-8 md:p-16">
<HyperText className="text-3xl font-bold mb-4 text-green-500" text="Hackathons" />
<HyperText
className="text-3xl font-bold mb-4 text-green-500"
text="Hackathons"
/>
<h2 className="text-2xl font-bold mb-4">Smart India Hackathon</h2>
<p className="text-lg text-justify">
Each year, we organize the internal round of the Smart India
Expand All @@ -100,7 +124,11 @@ export default function Activities() {
</div>

{/* CyberSec Post */}
<div className="flex flex-col-reverse items-center justify-center md:flex-row w-full h-full" data-aos="zoom-y-out" data-aos-delay="150">
<div
className="flex flex-col-reverse items-center justify-center md:flex-row w-full h-full"
data-aos="zoom-y-out"
data-aos-delay="150"
>
<div className="highlight flex-1 flex items-center justify-center bg-black-900 h-full">
<div className="w-96 h-96 flex items-center justify-center bg-black-900">
<Image
Expand All @@ -115,7 +143,10 @@ export default function Activities() {

<div className="highlight flex-1 flex items-center justify-center p-8 bg-black-800">
<div className="p-8 md:p-16">
<HyperText className="text-3xl font-bold mb-4 text-green-500" text="Cybersecurity" />
<HyperText
className="text-3xl font-bold mb-4 text-green-500"
text="Cybersecurity"
/>
<h2 className="text-2xl font-bold mb-4">PB CTF</h2>
<p className="text-lg text-justify">
We organize workshops and sessions on various topics in
Expand All @@ -128,4 +159,4 @@ export default function Activities() {
</div>
</>
);
}
}
Loading