aboutsummaryrefslogtreecommitdiff
path: root/pages/projects
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-04-30 15:01:40 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-04-30 15:01:40 -0400
commit848f1ca425e03cdcf7503ab51d80711bbf28c0f2 (patch)
treec008b954d10a7318933138c8ea45804eb33ba825 /pages/projects
parent37522c3ce749f6582c47e892c935297220e926dc (diff)
downloadpersonal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.gz
personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.bz2
personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.zip
Major changes in home page, added stuff on other pages and favicon
Diffstat (limited to 'pages/projects')
-rw-r--r--pages/projects/index.vue24
1 files changed, 21 insertions, 3 deletions
diff --git a/pages/projects/index.vue b/pages/projects/index.vue
index 6f9c676..c8487ce 100644
--- a/pages/projects/index.vue
+++ b/pages/projects/index.vue
@@ -1,13 +1,31 @@
<template>
- <p>test</p>
+ <v-card>
+ <header id="showcase">
+ <h1 class="display-3">Projects</h1>
+ <h1>My current and past projects goes here.</h1>
+ </header>
+ </v-card>
</template>
<script>
export default {
- name: 'projects'
+ name: 'projects',
+ head: {
+ title: 'Projects'
+ }
}
</script>
<style scoped>
-
+ #showcase {
+ background-image:url("../../assets/img/landing_page.png");
+ background-size: cover;
+ background-position: center;
+ height: 30vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ padding: 0 20px;
+ }
</style>