2026-03-06 16:27:54 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { RouterView } from 'vue-router'
|
|
|
|
|
import NavBar from './components/NavBar.vue'
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-03-07 22:07:52 +00:00
|
|
|
<div class="h-[100dvh] bg-surface synthwave-grid flex flex-col relative">
|
2026-03-06 16:27:54 +00:00
|
|
|
<div class="fixed inset-0 crt-overlay z-40" />
|
|
|
|
|
<NavBar />
|
2026-03-07 22:07:52 +00:00
|
|
|
<main class="flex-1 min-h-0 relative z-10 overflow-y-auto">
|
2026-03-06 16:27:54 +00:00
|
|
|
<RouterView />
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|