diff --git a/frontend/components/AboutPage.vue b/frontend/components/AboutPage.vue new file mode 100644 index 0000000..bd088a7 --- /dev/null +++ b/frontend/components/AboutPage.vue @@ -0,0 +1,135 @@ + + + + + \ No newline at end of file diff --git a/frontend/router.js b/frontend/router.js index beaa308..683b47d 100644 --- a/frontend/router.js +++ b/frontend/router.js @@ -20,6 +20,9 @@ const HistoryPage = () => import( const WinnerPage = () => import( /* webpackChunkName: "sub-pages" */ "@/components/WinnerPage"); +const AboutPage = () => import( + /* webpackChunkName: "sub-pages" */ + "@/components/AboutPage"); const LoginPage = () => import( /* webpackChunkName: "user" */ @@ -118,6 +121,11 @@ const routes = [ path: "/requested-wines", name: "Etterspurte vin", component: AllRequestedWines + }, + { + path: "/about", + name: "Om oss", + component: AboutPage } ];