87 lines
2.0 KiB
Vue
87 lines
2.0 KiB
Vue
<template>
|
|
<v-container>
|
|
<v-row class="text-center">
|
|
<v-col cols="12">
|
|
<v-img
|
|
:src="require('../assets/front_page_shikigami.png')"
|
|
class="my-3"
|
|
contain
|
|
height="500"
|
|
/>
|
|
</v-col>
|
|
|
|
<v-col class="mb-4">
|
|
<h1 class="display-2 font-weight-bold mb-3">Onymoji Deck Builder</h1>
|
|
|
|
<p class="subheading font-weight-regular">Build and share decks.</p>
|
|
<v-btn elevation="1" x-large color="#EA6F1A">Get started</v-btn>
|
|
</v-col>
|
|
</v-row>
|
|
<!-- <v-row class="text-center">
|
|
<v-col cols="12">
|
|
What next?
|
|
</v-col>
|
|
</v-row> -->
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "HelloWorld",
|
|
|
|
data: () => ({
|
|
ecosystem: [
|
|
{
|
|
text: "vuetify-loader",
|
|
href: "https://github.com/vuetifyjs/vuetify-loader",
|
|
},
|
|
{
|
|
text: "github",
|
|
href: "https://github.com/vuetifyjs/vuetify",
|
|
},
|
|
{
|
|
text: "awesome-vuetify",
|
|
href: "https://github.com/vuetifyjs/awesome-vuetify",
|
|
},
|
|
],
|
|
importantLinks: [
|
|
{
|
|
text: "Documentation",
|
|
href: "https://vuetifyjs.com",
|
|
},
|
|
{
|
|
text: "Chat",
|
|
href: "https://community.vuetifyjs.com",
|
|
},
|
|
{
|
|
text: "Made with Vuetify",
|
|
href: "https://madewithvuejs.com/vuetify",
|
|
},
|
|
{
|
|
text: "Twitter",
|
|
href: "https://twitter.com/vuetifyjs",
|
|
},
|
|
{
|
|
text: "Articles",
|
|
href: "https://medium.com/vuetify",
|
|
},
|
|
],
|
|
whatsNext: [
|
|
{
|
|
text: "Explore components",
|
|
href: "https://vuetifyjs.com/components/api-explorer",
|
|
},
|
|
{
|
|
text: "Select a layout",
|
|
href: "https://vuetifyjs.com/getting-started/pre-made-layouts",
|
|
},
|
|
{
|
|
text: "Frequently Asked Questions",
|
|
href:
|
|
"https://vuetifyjs.com/getting-started/frequently-asked-questions",
|
|
},
|
|
],
|
|
}),
|
|
};
|
|
</script>
|