52 lines
1.1 KiB
Svelte
Raw Normal View History

2023-06-13 13:38:59 +01:00
<script>
2023-06-14 11:02:46 +01:00
import Header from '$lib/header.svelte'
import Nav from '$lib/nav.svelte'
const title = "More"
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
const links = [
{title: "Your Data", path: "/more/profile"},
{title: "Location Reference Codes", path: "/more/reference-data"},
{title: "Privacy Policy", path: "/more/privacy"},
{title: "App Versions", path: "/more/versions"},
{title: "Statictics", path: "/more/stats"}
]
2023-06-13 13:38:59 +01:00
</script>
2023-06-14 11:02:46 +01:00
<Header {title} />
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
{#each links as item}
<a href={item.path}>
<div>
<p>{item.title}</p>
</div>
</a>
{/each}
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
<Nav />
<style>
div {
width: 100%;
background: rgba(0, 0, 0, 0.226);
border-color: aliceblue;
border-width: 1px;
border-style: solid;
border-left: none;
border-right: none;
height: 50px;
}
a {
text-decoration: none;
height: 100%;
vertical-align: middle;
}
p {
color: white;
margin: 0;
padding-left: 10px;
text-align: left;
vertical-align: middle;
font-weight: 600;
font-size: 20px;
}
</style>