glowing-fiesta-original/app/pages/auth/login.vue
Liviu Burcusel 845f830ab3
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m14s
Production Build and Deploy / Deploy (push) Successful in 21s
[Closes #12] Added title and other SEO fields
2026-01-12 17:01:51 +01:00

25 lines
910 B
Vue

<script setup lang="ts">
import { useRuntimeConfig, useSeoMeta } from "#app";
import { useBreadcrumbStore } from "~/stores/breadcrumbs";
import LoginForm from "~/components/LoginForm.vue";
const config = useRuntimeConfig();
const breadcrumbStore = useBreadcrumbStore();
breadcrumbStore.setBreadcrumbs([{ label: "Auth" }, { label: "Login", to: "/auth/login" }]);
useSeoMeta({
title: "Glowing Fiesta - Login",
ogTitle: "Glowing Fiesta - Login",
description: "This is the login page of a very nice all-purpose application",
ogDescription: "This is the login page of a very nice all-purpose application",
ogImage: config.public.hostUrl + "/images/human.png",
});
</script>
<template>
<div class="bg-muted/50 min-h-screen flex-1 rounded-xl md:min-h-min flex items-center justify-center gap-2">
<div class="flex w-full max-w-sm flex-col gap-6">
<LoginForm />
</div>
</div>
</template>