From 4b4f006750777a8a8926291b8d8cdbb14e076ed2 Mon Sep 17 00:00:00 2001 From: Logan Williams Date: Wed, 25 Oct 2023 16:25:29 +0200 Subject: [PATCH] Update src with privacy policy and tos --- src/App.vue | 14 ++ src/components/NavBar.vue | 11 +- src/firebase.js | 12 +- src/router/index.js | 12 + src/store/index.js | 2 +- src/views/HomeView.vue | 2 +- src/views/PrivacyView.vue | 479 ++++++++++++++++++++++++++++++++++++++ src/views/TOSView.vue | 373 +++++++++++++++++++++++++++++ 8 files changed, 896 insertions(+), 9 deletions(-) create mode 100644 src/views/PrivacyView.vue create mode 100644 src/views/TOSView.vue diff --git a/src/App.vue b/src/App.vue index fb6a55b..25b821a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,6 +5,10 @@ + + Privacy Policy + Terms of Service + @@ -36,4 +40,14 @@ export default { html { background-color: #d6e8de; } + +.legal a { + margin-left: 2em; + margin-right: 2em; + color: inherit !important; +} + +.legal { + justify-content: center; +} diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 218a7dd..8c0e577 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -1,6 +1,10 @@