feat: basic ui

This commit is contained in:
2025-03-14 21:45:00 +08:00
parent 096d8aa231
commit e3e1a28462
15 changed files with 1585 additions and 51 deletions

18
layouts/default.vue Normal file
View File

@ -0,0 +1,18 @@
<script lang="ts" setup></script>
<template>
<div class="w-full h-full flex flex-col dark:bg-neutral-900/80">
<div
class="sticky top-0 w-full px-4 py-3 bg-white/30 backdrop-blur-2xl z-30 dark:bg-neutral-900/80"
>
<h1 class="font-medium">AI 智慧校园</h1>
</div>
<slot></slot>
</div>
</template>
<style>
body {
background-image: url("~/assets/image/pattern/mesh-7.png");
}
</style>