aboutsummaryrefslogtreecommitdiff
path: root/pages/index.vue
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-04-29 10:57:21 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-04-29 10:57:21 -0400
commit37522c3ce749f6582c47e892c935297220e926dc (patch)
treed3e509449cd95fd99ad60ec08c1614f1a8145327 /pages/index.vue
parent893f5e94ce199d4ad2a976805b06d0e95fa45888 (diff)
downloadpersonal-website-37522c3ce749f6582c47e892c935297220e926dc.tar.gz
personal-website-37522c3ce749f6582c47e892c935297220e926dc.tar.bz2
personal-website-37522c3ce749f6582c47e892c935297220e926dc.zip
Dark theme, migrated blog posts and Netlify stuff
Diffstat (limited to 'pages/index.vue')
-rw-r--r--pages/index.vue29
1 files changed, 19 insertions, 10 deletions
diff --git a/pages/index.vue b/pages/index.vue
index d5947e9..d66d3fc 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -1,20 +1,29 @@
<template>
<div>
- <b-container>
- <b-button>Button</b-button>
- </b-container>
+ <v-card>
+ <h1>Landing page here</h1>
+ </v-card>
+ <v-container>
+ <v-card flat color="green darken-3" dark>
+ <h1>About Me</h1>
+ <p>Hello! I am Andrew Lee and I'm 15 years old. In 2014, I started my first youtube channel The Alee Diamond.</p>
+ </v-card>
+ </v-container>
</div>
</template>
<script>
- export default {
- name: "index",
- head: {
- title: "Home"
- }
- }
+export default {
+ name: 'index',
+ layout: 'default',
+ head: {
+ title: 'Home',
+ script: [{ src: 'https://identity.netlify.com/v1/netlify-identity-widget.js' }]
+ }
+
+}
</script>
<style scoped>
-</style> \ No newline at end of file
+</style>