File tree 6 files changed +96
-37
lines changed
6 files changed +96
-37
lines changed Original file line number Diff line number Diff line change 26
26
< div id ="app "> </ div >
27
27
<!-- built files will be auto injected -->
28
28
29
- <!-- <main id="main-grid">
30
- <div id="logo">
31
- <img src="src/img/logo-gold.svg" alt="Nomatic Logo">
32
- </div>
33
-
34
- <div id="nomatic">NOMATIC</div>
35
-
36
- <div id="create-acct-button">
37
- <button id="yellow-button" type="button">
38
- <div class="button-label">
39
- <div id="create-acct-label">Create an account</div>
40
- </div>
41
- </button>
42
- </div>
43
-
44
- <div id="log-in-button">
45
- <button id="white-button" type="button">
46
- <div class="button-label">
47
- <div id="log-in-label">Log in</div>
48
- </div>
49
- </button>
50
- </div>
51
-
52
- <div id="phonetic">[ no • mat • ic ]</div>
53
-
54
- <div id="greeting-1">Find an open mat near you.</div>
55
-
56
- <div id="greeting-2">Get rolling!</div>
57
-
58
- </main> -->
29
+
59
30
60
31
</ body >
61
32
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import { useStore } from 'vuex'
4
4
5
5
// Import components
6
6
import HomePageView from '../views/HomePageView.vue' ;
7
+ import LoginView from '../views/LoginView.vue' ;
8
+
7
9
8
10
9
11
/**
@@ -20,6 +22,35 @@ const routes = [
20
22
name : 'homePage' ,
21
23
component : HomePageView ,
22
24
} ,
25
+
26
+ {
27
+ path : '/login' ,
28
+ name : "login" ,
29
+ component : LoginView ,
30
+ meta : {
31
+ requiresAuth : false
32
+ }
33
+ } ,
34
+
35
+ // {
36
+ // path: '/logout',
37
+ // name: "logout",
38
+ // component: LogoutView,
39
+ // meta: {
40
+ // requiresAuth: false
41
+ // }
42
+ // },
43
+
44
+ // {
45
+ // path: "/register",
46
+ // name: "register",
47
+ // component: RegisterView,
48
+ // meta: {
49
+ // requiresAuth: false
50
+ // }
51
+ // },
52
+
53
+
23
54
] ;
24
55
25
56
// Create the router
Original file line number Diff line number Diff line change 1
1
<template >
2
- <main id =" home-grid" >
2
+ <body class =" home-body" >
3
+ <main id =" home-grid" >
3
4
<div id =" logo" >
4
5
<img src =" ../img/logo-gold.svg" alt =" Nomatic Logo" >
5
6
</div >
28
29
29
30
<div id =" greeting-2" >Get rolling!</div >
30
31
</main >
32
+ </body >
31
33
</template >
32
34
33
35
<script >
@@ -37,21 +39,21 @@ export default {
37
39
}
38
40
</script >
39
41
40
- <style >
42
+ <style scoped >
41
43
42
- body #index ::before {
44
+ body .home-body ::before {
43
45
content : " " ;
44
46
position : fixed ;
45
47
top : 0 ;
46
48
left : 0 ;
47
49
width : 100% ;
48
50
height : 100% ;
49
51
display :flex ;
50
- align-items : center ; /* Center vertically */
51
- justify-content : center ; /* Center horizontally */
52
- background-image : url (' @/css/img-css/rolling-image.png' ); /* Use the same image as the background */
52
+ align-items : center ;
53
+ justify-content : center ;
54
+ background-image : url (' @/css/img-css/rolling-image.png' );
53
55
filter : grayscale (100% );
54
- background-blend-mode : luminosity ; /* Adjust blend mode as needed */
56
+ background-blend-mode : luminosity ;
55
57
background-size : cover ;
56
58
background-repeat : no-repeat ;
57
59
max-width : 100% ;
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div id =" login" >
3
+ TEST LOGIN VIEW
4
+ </div >
5
+ </template >
6
+
7
+ <script >
8
+ export default {
9
+
10
+ }
11
+ </script >
12
+
13
+ <style >
14
+
15
+ /* body#index::before {
16
+ background-image: none;
17
+ } */
18
+
19
+ div #login {
20
+ height : 100vh ;
21
+ width : 100vw ;
22
+ }
23
+
24
+
25
+ </style >
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div >
3
+
4
+ </div >
5
+ </template >
6
+
7
+ <script >
8
+ export default {
9
+
10
+ }
11
+ </script >
12
+
13
+ <style >
14
+
15
+ </style >
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div >
3
+
4
+ </div >
5
+ </template >
6
+
7
+ <script >
8
+ export default {
9
+
10
+ }
11
+ </script >
12
+
13
+ <style >
14
+
15
+ </style >
You can’t perform that action at this time.
0 commit comments