about summary refs log tree commit diff
path: root/src/router/index.js
blob: 336bd2ed16b2b2d599aae220510adb2c369abff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import VueRouter from 'vue-router';

import HomeView from '../views/HomeView';
import AboutView from '../views/AboutView';
import ContactView from '../views/ContactView';
import DownloadView from '../views/DownloadView';
import PageNotFoundView from '../views/PageNotFoundView';

export const routes = [
  { path: '/', name: 'Home', component: HomeView },
  { path: '/o-nas', name: 'O nas', component: AboutView },
  { path: '/download', name: 'Do pobrania', component: DownloadView },
  { path: '/kontakt', name: 'Kontakt', component: ContactView }
];

export const externalRoutes = [
  {
    path: 'https://kronika-puszcza.netlify.com',
    name: 'Kronika'
  },
  { path: 'https://kronika-puszcza.netlify.com/galeria', name: 'Galeria' }
];

export const router = new VueRouter({
  mode: 'history',
  routes: [...routes, { path: '*', component: PageNotFoundView }]
});