21 lines
484 B
Vue
21 lines
484 B
Vue
|
|
<script setup>
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="grid grid-cols-1">
|
||
|
|
<main class="text-center pt-24">
|
||
|
|
<h1 class="text-2xl">
|
||
|
|
DigiSnaxx LIVE!
|
||
|
|
</h1>
|
||
|
|
<p>
|
||
|
|
Welcome to the Garden
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
Every Monday @ the Acadia
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
5PM
|
||
|
|
</p>
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</template>
|