This commit is contained in:
parent
a1708317ec
commit
3dcde9e946
7 changed files with 56 additions and 9 deletions
|
|
@ -3,6 +3,10 @@ import { ref } from "vue";
|
|||
import { useBreadcrumbStore } from "~/stores/breadcrumbs";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
import { useRuntimeConfig, useSeoMeta } from "#app";
|
||||
|
||||
const config = useRuntimeConfig();
|
||||
|
||||
const lastClicked = ref<string>("None");
|
||||
|
||||
const buttonClicked = (variant: string) => {
|
||||
|
|
@ -11,6 +15,14 @@ const buttonClicked = (variant: string) => {
|
|||
|
||||
const breadcrumbStore = useBreadcrumbStore();
|
||||
breadcrumbStore.setBreadcrumbs([{ label: "Homepage", to: "/" }]);
|
||||
|
||||
useSeoMeta({
|
||||
title: "Glowing Fiesta - Homepage",
|
||||
ogTitle: "Glowing Fiesta - Homepage",
|
||||
description: "This is the homepage of a very nice all-purpose application",
|
||||
ogDescription: "This is the homepage 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