|
<template>
|
|
<div class="flex items-center justify-center min-h-screen bg-base-200">
|
|
<div class="relative w-full max-w-md">
|
|
<LoginCard />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import LoginCard from "@/components/LoginCard.vue";
|
|
</script>
|
|
|
|
<style scoped></style>
|