[Closes #12] Added title and other SEO fields
This commit is contained in:
parent
a1708317ec
commit
845f830ab3
7 changed files with 56 additions and 9 deletions
|
|
@ -1,9 +1,19 @@
|
|||
<script setup lang="ts">
|
||||
import { useRuntimeConfig, useSeoMeta } from "#app";
|
||||
import { useBreadcrumbStore } from "~/stores/breadcrumbs";
|
||||
import SignupForm from "@/components/SignupForm.vue";
|
||||
|
||||
const breadcrumbStore = useBreadcrumbStore();
|
||||
breadcrumbStore.setBreadcrumbs([{ label: "Auth" }, { label: "Create Account", to: "/auth/create-account" }]);
|
||||
|
||||
const config = useRuntimeConfig();
|
||||
useSeoMeta({
|
||||
title: "Glowing Fiesta - Create Account",
|
||||
ogTitle: "Glowing Fiesta - Create Account",
|
||||
description: "This is the create account page of a very nice all-purpose application",
|
||||
ogDescription: "This is the create account page of a very nice all-purpose application",
|
||||
ogImage: config.public.hostUrl + "/images/human.png",
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue