internet_ml/web/frontend/pages/index.vue

26 lines
845 B
Vue

<script lang="typescript">
import Vue from 'vue'
export default Vue.extend({
name: 'IndexPage'
})
</script>
<template lang="pug">
html(lang="en")
body
//- navbar
div(class="grid grid-cols-1 place-content-center align-middle gap-y-10 h-screen text-center")
div(class="grid grid-cols-1 place-self-center")
h1(class="text-5xl")
a(href="/" class="url") Internet-ML
h1(class="text-xl")
a(href="https://links.thamognya.com" class="url") by Thamognya Kodi
div(class="grid md:grid-cols-3 grid-cols-1 gap-y-4 place-items-center")
h1(class="text-2xl")
a(href="/NLP" class="url") NLP
h1(class="text-2xl")
a(href="/#" class="url") Image Generation (in-progress)
h1(class="text-2xl")
a(href="/#" class="url") Audio (in-progress)
</template>