Skip to content

Commit

Permalink
feat(App): enhance header with margin and add links to Impressum and …
Browse files Browse the repository at this point in the history
…Datenschutz
  • Loading branch information
JohanGrims committed Nov 15, 2024
1 parent 1cf43b7 commit 08a21d3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,19 @@ function App() {
<img src="/WSP.png" alt="Logo" className="waldorf-logo" />
</div>
<p />
<h1>WaldorfWahlen</h1>
<h1 style={{ marginBottom: "10px" }}>WaldorfWahlen</h1>
<div
style={{
textAlign: "center",
gap: "10px",
display: "flex",
justifyContent: "space-around",
}}
>
<a href="https://waldorfschule-potsdam.de/impressum/">Impressum</a>
<a href="https://waldorfschule-potsdam.de/datenschutz/">Datenschutz</a>
</div>
<p />
<mdui-list>
{activeVotes.length < 1 && (
<mdui-list-item disabled>Keine Wahlen</mdui-list-item>
Expand Down

0 comments on commit 08a21d3

Please sign in to comment.