aboutsummaryrefslogtreecommitdiff
path: root/pages/index.vue
diff options
context:
space:
mode:
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>