15 lines
370 B
Vue
15 lines
370 B
Vue
<script setup lang="ts">
|
|||
|
|
import { RouterView } from 'vue-router'
|
||
|
|
import NavBar from './components/NavBar.vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="min-h-screen bg-surface synthwave-grid flex flex-col relative">
|
||
|
|
<div class="fixed inset-0 crt-overlay z-40" />
|
||
|
|
<NavBar />
|
||
|
|
<main class="flex-1 relative z-10">
|
||
|
|
<RouterView />
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</template>
|