2023-06-13 13:38:59 +01:00
|
|
|
<script>
|
2023-06-15 21:32:14 +01:00
|
|
|
import Header from '$lib/navigation/header.svelte'
|
2023-06-15 18:19:23 +01:00
|
|
|
import Nav from '$lib/navigation/nav.svelte'
|
2023-06-14 11:02:46 +01:00
|
|
|
const title = "More"
|
2023-06-13 13:38:59 +01:00
|
|
|
|
2023-06-14 11:02:46 +01:00
|
|
|
const links = [
|
2023-06-16 11:59:17 +01:00
|
|
|
{title: "Your Data", path: "/more/data"},
|
2023-06-20 21:39:00 +01:00
|
|
|
{title: "Registration", path: "/more/reg"},
|
2023-06-18 00:01:38 +01:00
|
|
|
{title: "Location Reference Code Lookup", path: "/more/corpus"},
|
|
|
|
{title: "Reason Code Lookup", path: "/more/reasons"},
|
2023-06-16 11:59:17 +01:00
|
|
|
{title: "Privacy Policy", path: "/more/privacy"},
|
|
|
|
{title: "Component Versions", path: "/more/versions"},
|
|
|
|
{title: "Statictics", path: "/more/statistics"},
|
|
|
|
{title: "Settings", path: "/more/settings"}
|
2023-06-14 11:02:46 +01:00
|
|
|
]
|
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;
|
2023-06-14 11:14:48 +01:00
|
|
|
line-height: 50px;
|
2023-06-14 11:02:46 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2023-06-14 11:14:48 +01:00
|
|
|
@media (min-width: 600px) {
|
|
|
|
p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2023-06-14 11:02:46 +01:00
|
|
|
</style>
|