internet_ml/web/frontend/pages/NLP/index.vue

22 lines
643 B
Vue
Raw Normal View History

2023-01-03 01:57:12 +00:00
<template lang="pug">
div
2023-01-10 12:50:43 +00:00
.grid.grid-cols-1.place-content-center.align-middle.gap-y-10.h-screen.text-center
.grid.grid-cols-1.place-self-center
h1.text-5xl
a.url(href='/') internet-nlp
h1.text-2xl
a.url(href='/') part of internet-ml
.grid.grid-cols-1.gap-y-4.place-items-center(class='md:grid-cols-2')
h1.text-2xl
a.url(href='/nlp/no-context') no context
h1.text-2xl
a.url(href='/nlp/context') context
2023-01-03 01:57:12 +00:00
</template>
2023-01-02 16:34:56 +00:00
<script>
import Vue from 'vue'
export default Vue.extend({
name: 'InternetNLP'
})
</script>