diff --git a/src/pages/guidelines/index.tsx b/src/pages/guidelines/index.tsx new file mode 100644 index 0000000..f4801f7 --- /dev/null +++ b/src/pages/guidelines/index.tsx @@ -0,0 +1,209 @@ +import Layout from "@/components/layouts/base"; +import { brand } from "@/themes/settings/color"; +import { css } from "@emotion/react"; +import type { NextPage } from "next"; +import Link from "next/link"; + +const HackerChallenge: NextPage = () => { + return ( + +
+
+

ETHTokyo Hackathon guidelines

+
+
+

Find a team/hacker/idea

+

+ Are you looking a team? A hacker to join your force? A cool idea to + hop on? Find your teammates on{" "} + + Github + {" "} + or join the hacker teambuilding workshop on Saturday morning. +

+
+

Connect and Chat

+

+ Our Discord server is the only official communication channel. Please + use it to connect with hackers, mentors, and to find the latest + announcements from the event organizers throughout the hackathon. +

+
+

Food and drinks

+

+ ETHTokyo will cover breakfast and dinner for the entire hackathon. For + lunch, we encourage everyone to explore Tokyo with your fellow + hackers! We will also provide various snacks and beverages throughout + the hackathon. +

+
+

Hacking rules

+ +
+

Submission Requirements

+ +

+ You must submit the project to the specified platform by 11:59 on the + final day of the hackathon. +

+
+

Submitting your Project

+

+ Projects will be submitted using AKINDO platform. If you run into any + problems or have any feedback, it would be much appreciated if you + would report on channel `#channel-name`. +

+

The general flow for using the tool is as follows:

+
    +
  1. + Go to projects.ethberlin.org and sign in with your Zupass + credentials to receive your role as "hacker". +
  2. +
  3. + Create or join an existing team Now you can submit projects and join + team. +
  4. +
  5. ...
  6. +
+

Some things to keep in mind:

+
  • + Put as much information into the repository about the project, so + judges and other hackers only need to look in one place to learn as + much as possible about the it. +
  • +
  • + Dedicate some time to make a crisp and precice presentation. Don't + forget to submit it too. +
  • +
  • + Make sure to select the track that fits best to your project. Same + goes to submitting bounties. +
  • +
    +

    Tracks and Prizes

    +

    The winning teams of the track awards each receive 5,000 USDC.

    + +
    +

    Judging Criteria

    +

    + You will pitch your project in front of a group of 2 groups of judges. + There will be Technical Judges and Concept Judges. Each will focus on + different aspects of your project. +

    +

    + Technical Judges will look at the technical sophistication and + quality of your projects. +

    + +

    + Concept Judges will look at the idea, concept, vision of your + projects and how well they were communicated. +

    + +
    + + + Go back + +
    +
    + ); +}; + +export default HackerChallenge;