[Closes #12] Added title and other SEO fields
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m14s
Production Build and Deploy / Deploy (push) Successful in 21s

This commit is contained in:
Liviu Burcusel 2026-01-12 17:01:51 +01:00
parent a1708317ec
commit 845f830ab3
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
7 changed files with 56 additions and 9 deletions

View file

@ -1,9 +1,19 @@
<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>