build: initial ehandy

This commit is contained in:
kmacoders
2021-06-27 14:36:38 +07:00
commit 0b0bda97c9
29 changed files with 20376 additions and 0 deletions

6
pages/README.md Normal file
View File

@@ -0,0 +1,6 @@
# PAGES
This directory contains your Application Views and Routes.
The framework reads all the `*.vue` files inside this directory and creates the router of your application.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing).

53
pages/index.vue Normal file
View File

@@ -0,0 +1,53 @@
<template>
<section class="section">
<div class="columns is-mobile">
<card
title="Free"
icon="github"
>
Open source on <a href="https://github.com/buefy/buefy">
GitHub
</a>
</card>
<card
title="Responsive"
icon="cellphone-link"
>
<b class="has-text-grey">
Every
</b> component is responsive
</card>
<card
title="Modern"
icon="alert-decagram"
>
Built with <a href="https://vuejs.org/">
Vue.js
</a> and <a href="http://bulma.io/">
Bulma
</a>
</card>
<card
title="Lightweight"
icon="arrange-bring-to-front"
>
No other internal dependency
</card>
</div>
</section>
</template>
<script>
import Card from '~/components/Card'
export default {
name: 'HomePage',
components: {
Card
}
}
</script>

15
pages/inspire.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<section class="section">
<h2 class="title is-3 has-text-grey">
"Just start <b-icon
icon="rocket"
size="is-large"
/>"
</h2>
<h3 class="subtitle is-6 has-text-grey">
Author: <a href="https://github.com/anteriovieira">
Antério Vieira
</a>
</h3>
</section>
</template>