barebones setup

This commit is contained in:
nicwands
2026-03-18 15:53:54 -04:00
parent d71274609d
commit cc641be16f
20 changed files with 47 additions and 355 deletions

View File

@@ -1,12 +1,20 @@
<template>
<h1>My Vike app</h1>
<p>This page is:</p>
<ul>
<li>Rendered to HTML.</li>
<li>Interactive. <Counter /></li>
</ul>
<main class="splash">
<svg-wordmark />
</main>
</template>
<script setup lang="ts">
import Counter from '../../components/Counter.vue'
<script setup>
import SvgWordmark from '@/components/svg/Wordmark.vue'
</script>
<style>
main.splash {
.svg-wordmark {
width: 70%;
height: auto;
margin: auto;
display: block;
}
}
</style>