forked from MapComplete/MapComplete
Move various tabs into buttons, more work on a11y
This commit is contained in:
parent
58fa9a4cd4
commit
cce9b879f2
5 changed files with 105 additions and 25 deletions
34
src/UI/BigComponents/PrivacyPolicy.svelte
Normal file
34
src/UI/BigComponents/PrivacyPolicy.svelte
Normal file
|
@ -0,0 +1,34 @@
|
|||
<script lang="ts">
|
||||
import Tr from "../Base/Tr.svelte"
|
||||
import Translations from "../i18n/Translations"
|
||||
|
||||
const t = Translations.t.privacy
|
||||
</script>
|
||||
|
||||
<div class="link-underline flex flex-col">
|
||||
<Tr t={t.intro} />
|
||||
<h3>
|
||||
<Tr t={t.trackingTitle} />
|
||||
</h3>
|
||||
<Tr t={t.tracking} />
|
||||
|
||||
<h3>
|
||||
<Tr t={t.geodataTitle} />
|
||||
</h3>
|
||||
<Tr t={t.geodataTitle} />
|
||||
|
||||
<h3>
|
||||
<Tr t={t.editingTitle} />
|
||||
</h3>
|
||||
<Tr t={t.editing} />
|
||||
|
||||
<h3>
|
||||
<Tr t={t.miscCookiesTitle} />
|
||||
</h3>
|
||||
<Tr t={t.miscCookies} />
|
||||
|
||||
<h3>
|
||||
<Tr t={t.whileYoureHere} />
|
||||
</h3>
|
||||
<Tr t={t.surveillance} />
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue