diff --git a/src/main.js b/src/main.js
index 2425c0f..0ab8880 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,5 +1,22 @@
-import { createApp } from 'vue'
-import './style.css'
-import App from './App.vue'
+import { createApp } from "vue";
+import { createRouter, createWebHashHistory } from "vue-router";
-createApp(App).mount('#app')
+import "./style.css";
+import App from "./App.vue";
+import Home from "./views/Home.vue";
+import About from "./views/About.vue";
+import ReferenceID from "./ReferenceID.vue";
+
+const routes = [
+ { path: "/", component: Home },
+ { path: "/about", component: About },
+ { path: "/referenceId/", component: ReferenceID },
+];
+
+const router = createRouter({
+ // 4. Provide the history implementation to use. We are using the hash history for simplicity here.
+ history: createWebHashHistory(),
+ routes, // short for `routes: routes`
+});
+
+createApp(App).use(router).mount("#app");
diff --git a/src/style.css b/src/style.css
index 191f727..819859a 100644
--- a/src/style.css
+++ b/src/style.css
@@ -74,7 +74,6 @@ button {
min-width: 0px;
font-size: 12px;
padding: 0 6px !important;
- margin: 0;
font-family: "OpenSans", Arial, sans-serif;
text-align: center;
background-repeat: no-repeat;
diff --git a/src/views/About.vue b/src/views/About.vue
new file mode 100644
index 0000000..f96be2d
--- /dev/null
+++ b/src/views/About.vue
@@ -0,0 +1,5 @@
+
+
+
About
+
+
\ No newline at end of file
diff --git a/src/views/Home.vue b/src/views/Home.vue
new file mode 100644
index 0000000..f64dc4f
--- /dev/null
+++ b/src/views/Home.vue
@@ -0,0 +1,5 @@
+
+