Prepare for adding theseus

This commit is contained in:
Jai A
2024-07-03 13:25:49 -07:00
parent 10785f156f
commit d33a0cd589
26 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<style>
@media (min-width: 768px) {
.about {
max-width: 768px;
margin-left: auto;
margin-right: auto;
padding: 0 1rem;
}
}
</style>

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
import NxWelcome from '../app/NxWelcome.vue';
</script>
<template>
<main>
<NxWelcome title="theseus-gui" />
</main>
</template>