save current view in map to url via hash, add about pages and such

This commit is contained in:
Will Freeman
2024-09-30 23:23:10 -05:00
parent 6d8b3ba42f
commit ff0aff59f4
11 changed files with 265 additions and 64 deletions
+41 -10
View File
@@ -1,15 +1,46 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
<v-container>
<h2>Who are we?</h2>
<p>
We are a group of concerned citizens who want to raise awareness about the use of Automated License Plate Readers (ALPRs) in the United States. Our goal is to provide information about ALPRs, their uses, and their implications for privacy and civil liberties.
</p>
<h2>What do we want?</h2>
<p>
Donuts.
</p>
<h2>When do we want them?</h2>
<p>
Now.
</p>
</v-container>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
<style scoped>
/* TODO: put this all in one place, also in what-is view */
h2 {
margin-top: 2rem;
}
h3 {
margin-top: 1.25rem;
}
p {
margin-top: 0.5rem;
}
.flex-image {
display: flex;
gap: 1rem;
align-items: center;
margin-top: 0.5rem;
}
/* as you can see, this one is the most updated */
a {
color: var(green);
text-decoration: none;
}
</style>