diff --git a/src/components/Sidebar.jsx b/src/components/Sidebar.jsx index 6f848b72..e8a0e5c0 100644 --- a/src/components/Sidebar.jsx +++ b/src/components/Sidebar.jsx @@ -17,10 +17,6 @@ const Sidebar = ({ className }) => {
X
)} - - {" "} - <<A<BOUT - {" "} <<M<ANIFESTO diff --git a/src/pages/about.jsx b/src/pages/about.jsx deleted file mode 100644 index b5547beb..00000000 --- a/src/pages/about.jsx +++ /dev/null @@ -1,82 +0,0 @@ -import Layout from "../components/Layout"; -import React, { useState, useEffect } from "react"; -import ETHBerlin from "../components/ETHBerlin"; - -const About = () => { - const [randomizedNames, setRandomizedNames] = useState([]); - - useEffect(() => { - const names = [ - "Jacob", - "Franzi", - "Afri", - "Helena", - "Rose", - "Martin", - "Stina", - "Alex", - "Ligi", - "MP", - "Kaan", - "Lea", - "Raul", - "Konrad", - "Kirill", - "Yaron", - "Lea", - "Carl", - "Peter", - ]; - - // names here - const shuffledNames = names.sort(() => 0.5 - Math.random()); - setRandomizedNames(shuffledNames); - }, []); - - return ( - -
-

- <<A<BOUT -

-

- ETHBerlin is known as the hackathon extravaganza, a cultural festival, - an educational event, a platform for hacktivism, and a community - initiative to push the decentralized ecosystem forward. {" "} - is the fourth edition, and we've come a long way since we hosted our - first hackathon in 2018.{" "} -

-

- After successful events in 2018 and 2019, ETHBerlin decided to - reaffirm its commitment with the ecosystem and founded the{" "} - - Department of Decentralization - {" "} - (DoD). The DoD is responsible for initiatives that go beyond - organizing hackathons and seek to also support the projects coming - from our events and community. ETHBerlin 2018 and ETHBerlinZwei 2019 - sought to marry the culture and values of Berlin with those of the - builder community and arguably succeeded at it. In 2022, we were - finally back with ETHBerlin³ - to the power of 3, pushing even further - into becoming a festival for people from all backgrounds, and most - importantly, a hub where builders will be able to get their creative - juices flowing by discovering various cultural and educational - experiences spread across the weekend. -

-

- 2024 will be the year of bringing all what we've learned and - experienced over the years together: We find ourselves at the - intersection of decentralization, privacy and security - let's put it - to use. -

-

- We are (in random order):   - {randomizedNames.join(", ")}. Supported by countless volunteers and - creative contributors. -

-
- - ); -}; - -export default About;