Skip to content

Commit

Permalink
🚧 gonna introduce new pages... 👀
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMoony committed Jun 3, 2024
1 parent 3b1a614 commit 4480696
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ venv/
# Import data stuff
db/data/organizations
db/data/people

# Testing stuff
tmp/
27 changes: 27 additions & 0 deletions web/src/views/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ onMounted(async () => {
<template>
<main>
<NavBar>
<div class="nav-links">
<RouterLink to="/map">
<font-awesome-icon :icon="['fas', 'map-location']" />
Map
</RouterLink>
<RouterLink to="/events">
<font-awesome-icon :icon="['fas', 'timeline']" />
Events
</RouterLink>
</div>
</NavBar>
<article class="gp-scroll">
<div class="search-container">
Expand Down Expand Up @@ -111,6 +121,23 @@ onMounted(async () => {
</template>

<style scoped>
.nav-links {
display: flex;
justify-content: flex-start;
align-items: center;
gap: .5rem;
border-left: 2px solid var(--color-border);
padding-left: 1rem;
}
.nav-links a {
text-decoration: none;
color: var(--color-text);
background-color: var(--color-background-mute);
padding: .5rem 1rem;
border-radius: .5rem;
}
main {
width: 100vw;
height: 100vh;
Expand Down

0 comments on commit 4480696

Please sign in to comment.