Skip to content

Commit

Permalink
Merge pull request #11 from ethb3rlin/q9f/hack
Browse files Browse the repository at this point in the history
add instructions to hack (visa)
  • Loading branch information
kuzdogan authored Feb 16, 2024
2 parents 4027e64 + 851c2c3 commit ac9ae93
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/ETHBerlin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";

const ETHBerlin = ({ className }) => (
<span className={`font-ocra text-sm ${className} break-all`}>
ETHBerlin&lt;&lt;04&lt;&lt;&lt;&lt;Identity&lt;&lt;Crisis&lt;&lt;
ETHBERLIN&lt;&lt;04&lt;&lt;&lt;&lt;IDENTITY&lt;&lt;CRISIS&lt;&lt;
</span>
);

Expand Down
6 changes: 5 additions & 1 deletion src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ const Sidebar = ({ className }) => {
)}
<a className="my-2" href="/manifesto">
{" "}
&lt;&lt;m&lt;anifesto
&lt;&lt;M&lt;ANIFESTO
</a>
<a className="my-2" href="/hack">
{" "}
&lt;&lt;H&lt;ACK
</a>
</nav>
);
Expand Down
3 changes: 3 additions & 0 deletions src/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ export default function HTML(props) {
if (e.key == 'm' || e.key == 'M') {
window.location.href= "/manifesto";
}
else if (e.key == 'h' || e.key == 'H') {
window.location.href= "/hack";
}
else if (e.key == 'i' || e.key == 'I') {
window.location.href= "/contact";
}
Expand Down
35 changes: 35 additions & 0 deletions src/pages/hack.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from "react";
import Layout from "../components/Layout";
import ETHBerlin from "../components/ETHBerlin";

const Hack = () => {
return (
<Layout>
<div className="textbox text-base decorate-links">
<h1 className="mb-4 font-ocra underline text-berlin-yellow">
&lt;&lt;H&lt;ACK
</h1>
<div>
<p>
Hacking at <ETHBerlin /> will be subject to strict access control. To
enter the event premises, a valid hacker visa is required.
</p>
<p>
To start the application process for a hacker visa, press{" "}
<span className="font-ocra text-sm">&lt;&lt;V&lt;</span>.
</p>
<div className="text-center">
<a
href="https://visas.ethberlin.org/ethberlin/4/"
target="_blank"
rel="noreferrer">
visas.ethberlin.org/ethberlin/4
</a>
</div>
</div>
</div>
</Layout>
);
};

export default Hack;
2 changes: 1 addition & 1 deletion src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const Home = () => {
To learn more about our vision & mission, press{" "}
<span className="font-ocra text-sm">&lt;&lt;M&lt;</span>, to apply
for a hacker visa, press{" "}
<span className="font-ocra text-sm">&lt;&lt;V&lt;</span>
<span className="font-ocra text-sm">&lt;&lt;H&lt;</span>.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/manifesto.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Manifesto = () => {
<Layout>
<div className="textbox text-base decorate-links">
<h1 className="mb-4 font-ocra underline text-berlin-yellow">
&lt;&lt;m&lt;anifesto
&lt;&lt;M&lt;ANIFESTO
</h1>
<div>
<p>
Expand Down

0 comments on commit ac9ae93

Please sign in to comment.