diff options
Diffstat (limited to 'pages/projects')
| -rw-r--r-- | pages/projects/index.vue | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/pages/projects/index.vue b/pages/projects/index.vue index c8487ce..5062f1a 100644 --- a/pages/projects/index.vue +++ b/pages/projects/index.vue @@ -1,9 +1,24 @@ <template> <v-card> <header id="showcase"> - <h1 class="display-3">Projects</h1> - <h1>My current and past projects goes here.</h1> + <h1 class="display-3 animated fadeIn">Projects</h1> + <h1 class="animated fadeIn">My current and past projects goes here.</h1> </header> + <v-container> + <v-row> + <v-col cols="12"> + <v-card class="green darken-4"> + <v-card-title>Hello world</v-card-title> + <v-card-text>Hello world 2</v-card-text> + </v-card> + <br> + <v-card> + <v-card-title>Hello world</v-card-title> + <v-card-text>Hello world 2</v-card-text> + </v-card> + </v-col> + </v-row> + </v-container> </v-card> </template> |
