-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,7 +112,7 @@ document.addEventListener('DOMContentLoaded', () => { | |
</a> | ||
</li> | ||
</ul> | ||
<p className="mt-8"> | ||
<p> | ||
Currently, the Department is primarily run from Berlin. The collective | ||
is composed of around a dozen members who contribute voluntarily. | ||
</p> | ||
|
@@ -203,27 +203,67 @@ document.addEventListener('DOMContentLoaded', () => { | |
</p> | ||
` | ||
const contactContent: string = ` | ||
<h3>Contact</h3> | ||
<p> | ||
We are (in random order): Raul, Kirill, Eylon, Wesley, Caspar, Phil, | ||
Franzi, Kaan, Rose, Tim, Ksenya, Ligi, Stina, Helena, MP, Martin, | ||
Alex, Afri, Nich, Carl, Hany, Jacob, and Peter. Supported by | ||
countless volunteers and creative contributors. <3 | ||
</p> | ||
<p> | ||
Letters can be send to | ||
<a href="mailto:[email protected]" target="_blank">[email protected]</a> | ||
or Goerli Dezentral gGmbH, Mariannenstraße 9-10, 10999 Berlin, | ||
Germany. Call us at | ||
We are coordinating on Matrix: | ||
<a href="https://matrix.to/#/%23ethberlin:matrix.org" target="_blank" rel="noopener noreferrer"> | ||
#ethberlin:matrix.org</a> | ||
</p> | ||
<p> | ||
Email us at | ||
<a href="mailto:[email protected]" target="_blank">[email protected]</a> | ||
or give us a call at | ||
<a href="tel:+493020613410" target="_blank">+49 (0) 30 20613410</a>. | ||
Responsible for the content here according to § 5 TMG is Afri | ||
Schoedon. Goerli Dezentral gGmbH is a non-profit organization | ||
serving tax-privileged purposes, according to the articles of | ||
association. The organization meets the statutory requirements | ||
under §§ 51, 59, 60, and 61 AO in Germany. Please get in | ||
touch if you want to donate or require a donation receipt. | ||
</p> | ||
<h3>Donations</h3> | ||
<p> | ||
The Department of Decentralization is a non-profit organization | ||
accepting donations either via cryptographic transactions or | ||
traditional wire transfers. | ||
</p> | ||
<p> | ||
Donations on Ethereum mainnet: <code>dezent.eth</code>; on other EVM chains: <code>0x59cc3Fc56B8B2988F259EC1E6f3446907130f728</code> | ||
</p> | ||
<p> | ||
Donations on Polkadot: <code>14DfiBmme3pjph6aD86MyGfYRbAUtwCJqjECope8rpvhv6gu</code>; Substrate: <code>5FHNZrWhnGZGPA64FV3Mq7qPZyAqCdeAmEVieXenJjuBjYP1</code> | ||
</p> | ||
<p> | ||
Wire (SEPA) donations:<br /> | ||
Beneficiary: <code>Goerli Dezentral gGmbH</code><br /> | ||
International Bank Account Number: <code>DE16 1005 0000 0190 8447 44</code><br /> | ||
Bank Identifier Code: <code>BELADEBEXXX</code><br /> | ||
Subject: <code>Spende Department of Decentralization</code> | ||
</p> | ||
<p> | ||
To donate on other platforms or to get a donation receipt, | ||
please message us at | ||
<a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
<h3>Impressum</h3> | ||
<p> | ||
Angaben gemäß § 5 TMG: | ||
Goerli Dezentral gGmbH, Mariannenstraße 9-10, 10999 Berlin | ||
</p> | ||
<p> | ||
Handelsregister: HRB 207663 B, Registergericht: Amtsgericht | ||
Charlottenburg, Berlin, Umstatzsteuer-ID: DE325917754; | ||
vertreten durch A. Schoedon, Telefon: +49 (0) 30 20613410, E-Mail: | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
<p> | ||
Goerli Dezentral gGmbH is a non-profit organization serving | ||
tax-privileged purposes, according to the articles of association. | ||
The organization meets the statutory requirements under | ||
§§ 51, 59, 60, and 61 AO. | ||
</p> | ||
`; | ||
const noContent: string = "<h1>Not Found</h1>"; | ||
const noContent: string = "<h3>Not Found</h3>"; | ||
const routes: { [key: string]: string } = { | ||
'home': homeContent, | ||
'about': aboutContent, | ||
|