34 lines
853 B
Vue
34 lines
853 B
Vue
<script setup lang="ts">
|
|
import "@3ba/styles";
|
|
import { AeroThemeProvider, AeroSky, Card, Btn } from "@3ba/vue";
|
|
import Navbar from "../components/Navbar.vue"
|
|
import Countdown from "../components/Countdown.vue";
|
|
import BirthdayAlert from "../components/BirthdayAlert.vue";
|
|
import Footer from "../components/Footer.vue";
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div :style="{ minHeight: '100vh', padding: '32px', }">
|
|
<div style="display: flex; flex-direction: column; gap: 20px;">
|
|
<Navbar :active="1"></Navbar>
|
|
<Card>
|
|
<BirthdayAlert></BirthdayAlert>
|
|
</Card>
|
|
<Card>
|
|
<BirthdayAlert :day="false"></BirthdayAlert>
|
|
</Card>
|
|
<Card>
|
|
<h1>Következő éjfélig hátralévő idő:</h1>
|
|
<Countdown></Countdown>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<style>
|
|
|
|
</style> |