Add contact form (#98)

Closes: #92

This adds a new link to the left panel to open a contact form.  Filling out the form will allow the user to submit a comment which will be registered as a new issue on this repo.

Reviewed-on: Georgi_Lab/ALVINN_f7#98
This commit is contained in:
2024-02-16 21:49:54 -07:00
parent 94d4bbb979
commit 79d2d1bc83
3 changed files with 102 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import HomePage from '../pages/home.vue';
import AboutPage from '../pages/about.vue';
import SettingsPage from '../pages/settings.vue';
import DetectPage from '../pages/detect.vue';
import ContactPage from '../pages/contact.vue';
import NotFoundPage from '../pages/404.vue';
@@ -23,6 +24,10 @@ var routes = [
path: '/settings/',
component: SettingsPage,
},
{
path: '/contact/',
component: ContactPage,
},
{
path: '(.*)',
component: NotFoundPage,