blob: d66d3fce3ccf1c95509e600eb14b1d90663bd67a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<template>
<div>
<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',
layout: 'default',
head: {
title: 'Home',
script: [{ src: 'https://identity.netlify.com/v1/netlify-identity-widget.js' }]
}
}
</script>
<style scoped>
</style>
|