nuxt-start/pages/login.vue
2025-01-01 23:06:17 +01:00

18 lines
548 B
Vue

<template>
<div>
<div class="min-h-dvh px-5 pb-5">
<div class="flex flex-col gap-3 items-center justify-center text-center">
<div @click="$router.push({path:'/'})"
class="w-48 bg-neutral-600 p-5 flex items-end rounded-ee-xl rounded-es-xl shadow-lg bg-gradient-to-b from-neutral-300 dark:from-black to-transparent">
<img src="/euro_cars_rent_a_car_logo.png" class="w-full" />
</div>
<NuxtPage />
</div>
</div>
</div>
</template>
<script lang="ts" setup>
</script>
<style></style>