12 lines
306 B
Vue
12 lines
306 B
Vue
<script setup lang="ts">
|
|
import Base from "@/views/Base.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<Base>
|
|
<h1 class="text-2xl">Easy and secure cloud storage</h1>
|
|
<h1 class="text-2xl">Run Materia anywhere</h1>
|
|
<h1 class="text-2xl">Manage files with CLI application</h1>
|
|
</Base>
|
|
</template>
|