-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add TCP1P CTF 2025 components and FAQ; remove outdated 2024 files
- Loading branch information
1 parent
b9d07d2
commit eef1ff9
Showing
10 changed files
with
193 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { Categories } from "./categories"; | ||
import { Countdown } from "./countdown"; | ||
import { CrateTemplate } from "./crate"; | ||
import { Donator } from "./donations"; | ||
import { FAQ } from "./faq"; | ||
import { Sponsor } from "./sponsors"; | ||
|
||
export default function Page() { | ||
const ctfDate = new Date("2025-10-11").getTime(); | ||
return ( | ||
<main className="flex-1 pt-24 px-4 sm:px-6 lg:px-8 relative z-10"> | ||
<CrateTemplate /> | ||
<div className="flex flex-col"> | ||
<div className="lg:w-8/12 md:w-10/12 self-center text-center mx-4"> | ||
<div className="items-center"> | ||
<h1 className="text-6xl text-white mb-16">TCP1P CTF 2025</h1> | ||
<div className="mb-12"> | ||
<Countdown endDate={ctfDate} /> | ||
</div> | ||
<p className="text-gray-300 mb-8">Exploring Nusantara's Digital Realm</p> | ||
<div className="divider mb-8"></div> | ||
<p className="text-justify text-gray-400"> | ||
TCP1PCTF 2024 is an annual Capture The Flag (CTF) event organized by the TCP1P community. This marks the second edition of our international CTF event. This thrilling CTF follows a jeopardy-style format and encompasses a variety of challenges ranging in difficulty from easy to medium-high. Participants will have the opportunity to test their skills and knowledge across various categories, ensuring a diverse and engaging experience. | ||
</p> | ||
</div> | ||
<section className="my-16 p-8"> | ||
<h2 className="text-4xl text-white mb-10">Categories</h2> | ||
<div className="divider mb-10"></div> | ||
<Categories /> | ||
</section> | ||
<section className="my-16 p-8"> | ||
<h2 className="text-4xl text-white mb-10">FAQ</h2> | ||
<div className="divider mb-10"></div> | ||
<FAQ /> | ||
</section> | ||
<section className="my-16 p-8"> | ||
<h2 className="text-4xl text-white mb-10">Call for Sponsorships</h2> | ||
<div className="divider mb-10"></div> | ||
<p className="text-gray-300"> | ||
The call for sponsorship for TCP1P-CTF 2024 is open! For more details contact us at <a className="link" href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
</section> | ||
<section className="my-16 p-8"> | ||
<h2 className="text-4xl text-white mb-10">Sponsors</h2> | ||
<div className="divider mb-10"></div> | ||
<Sponsor /> | ||
</section> | ||
<section className="my-16 p-8"> | ||
<h2 className="text-4xl text-white mb-10">Donators</h2> | ||
<div className="divider mb-10"></div> | ||
<Donator /> | ||
</section> | ||
</div> | ||
</div> | ||
</main> | ||
); | ||
} |
Oops, something went wrong.