-
Work In Progress
+
+
+
\ No newline at end of file
diff --git a/src/views/SocialsPage.vue b/src/views/SocialsPage.vue
index 6634a13..1e9e3d9 100644
--- a/src/views/SocialsPage.vue
+++ b/src/views/SocialsPage.vue
@@ -94,6 +94,7 @@
border: 4px;
border-style: solid;
}
+
.socialsgrid i {
font-size: 35px;
margin-top: auto;
diff --git a/src/views/router/index.js b/src/views/router/index.js
new file mode 100644
index 0000000..1f662b2
--- /dev/null
+++ b/src/views/router/index.js
@@ -0,0 +1,34 @@
+import { createRouter, createWebHistory } from 'vue-router'
+
+import homeView from '../views/HomePage.vue'
+import galleryView from '../views/GalleryPage.vue'
+import socialView from '../views/SocialsPage.vue'
+
+const routes = [
+ {
+ path: '/',
+ redirect: '/home'
+ },
+ {
+ path: '/home',
+ name: 'home',
+ component: homeView
+ },
+ {
+ path: '/gallery',
+ name: 'gallery',
+ component: galleryView
+ },
+ {
+ path: '/socials',
+ name: 'socials',
+ component: socialView
+ }
+]
+
+const router = createRouter({
+ history: createWebHistory(process.env.BASE_URL),
+ routes
+})
+
+export default router