Skip to content

Commit

Permalink
routes
Browse files Browse the repository at this point in the history
  • Loading branch information
samipe committed Jan 23, 2024
1 parent 494b76a commit 6440d41
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/js/app.9956c213.js → dist/js/app.6a7494cc.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
"url": "dist/404.html"
},
{
"revision": "87008f3606286d72bfda",
"revision": "74e6ae1490632656a02e",
"url": "dist/css/app.ef4c8c11.css"
},
{
Expand Down Expand Up @@ -188,12 +188,12 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
"url": "dist/img/ticket-depth.jpg"
},
{
"revision": "b75fa952579e9b044bcfe875beb9b442",
"revision": "486522afd23270318304c696d82c959e",
"url": "dist/index.html"
},
{
"revision": "87008f3606286d72bfda",
"url": "dist/js/app.9956c213.js"
"revision": "74e6ae1490632656a02e",
"url": "dist/js/app.6a7494cc.js"
},
{
"revision": "71fe642c6ceae86d8cdc",
Expand Down
2 changes: 1 addition & 1 deletion dist/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");

importScripts(
"dist/precache-manifest.67742e13b28b41af4adb4503666da1a0.js"
"dist/precache-manifest.7a6077bbfb1c5940dc878660e6df0fc1.js"
);

workbox.core.setCacheNameDetails({prefix: "robot-framework"});
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))</script><link href="dist/css/app.ef4c8c11.css" rel="preload" as="style"><link href="dist/js/app.9956c213.js" rel="preload" as="script"><link href="dist/js/chunk-vendors.6e0fb070.js" rel="preload" as="script"><link href="dist/css/app.ef4c8c11.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="dist/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="dist/img/icons/favicon-16x16.png"><link rel="manifest" href="dist/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="robot-framework"><link rel="apple-touch-icon" href="dist/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="dist/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="dist/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but robot-framework doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="dist/js/chunk-vendors.6e0fb070.js"></script><script src="dist/js/app.9956c213.js"></script></body></html>
}(window.location))</script><link href="dist/css/app.ef4c8c11.css" rel="preload" as="style"><link href="dist/js/app.6a7494cc.js" rel="preload" as="script"><link href="dist/js/chunk-vendors.6e0fb070.js" rel="preload" as="script"><link href="dist/css/app.ef4c8c11.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="dist/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="dist/img/icons/favicon-16x16.png"><link rel="manifest" href="dist/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="robot-framework"><link rel="apple-touch-icon" href="dist/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="dist/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="dist/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but robot-framework doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="dist/js/chunk-vendors.6e0fb070.js"></script><script src="dist/js/app.6a7494cc.js"></script></body></html>
18 changes: 18 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Sponsor from '../views/Sponsor.vue'
import Archive from '../views/Archive.vue'
import Stream from '../views/Stream.vue'
import NotFound from '../views/NotFound.vue'
import Game from '../views/Game.vue'

const routes = [
{
Expand Down Expand Up @@ -37,6 +38,23 @@ const routes = [
name: 'Stream',
component: Stream
},
{
path: '/quiz',
beforeEnter: () => {
window.location.replace('https://8pasfjg2p1x.typeform.com/to/wfO1kE0k')
}
},
{
path: '/game',
name: 'Game',
component: Game
},
{
path: '/cs',
beforeEnter: () => {
window.location.replace('https://docs.google.com/forms/d/e/1FAIpQLSc8PQLJdrNdrNVV-eBJ7DxqxLCbHZqSSV0zsshCrUK1BlMT6g/viewform')
}
},
{
path: '/:pathMatch(.*)*',
name: 'NotFound',
Expand Down
20 changes: 20 additions & 0 deletions src/views/Game.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<template>
<div class="container">
<h1>
Title
</h1>
<h2>
Smaller title
</h2>
<p>
text here
</p>
</div>
</template>

<script>
export default {
name: 'Game'
}
</script>

0 comments on commit 6440d41

Please sign in to comment.