This commit is contained in:
2026-08-08 23:51:05 +02:00
commit bb7a17a874
73 changed files with 15038 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<script setup lang="ts">
import { AeroThemeProvider, AeroSky, Card, Btn } from "@3ba/vue";
import Navbar from "../components/Navbar.vue";
import "@3ba/styles";
import Footer from "../components/Footer.vue";
import News from "../components/News.vue";
</script>
<template>
<div :style="{ minHeight: '100vh', padding: '32px', }">
<div style="display: flex; flex-direction: column; gap: 20px;">
<Navbar :active="2"></Navbar>
<Card>
<News important></News>
</Card>
<Card>
<News info></News>
</Card>
</div>
</div>
</template>