glowing-fiesta/app/pages/legal/terms-of-service.vue
Liviu Burcusel dc65e01bec
All checks were successful
Production PR / QA Tests (pull_request) Successful in 45s
Added TOS and PrivPol pages.
2026-01-15 15:40:15 +01:00

22 lines
835 B
Vue

<script setup lang="ts">
import { useRuntimeConfig, useSeoMeta } from "#app";
import { useBreadcrumbStore } from "~/stores/breadcrumbs";
const breadcrumbStore = useBreadcrumbStore();
breadcrumbStore.setBreadcrumbs([{ label: "Legal" }, { label: "Terms of Service", to: "/legal/terms-of-service" }]);
const config = useRuntimeConfig();
useSeoMeta({
title: "Terms of Service",
description: "Terms of Service page of a very nice all-purpose application",
ogTitle: "Terms of Service",
ogDescription: "Terms of Service page of a very nice all-purpose application",
ogImage: config.public.siteUrl + "/images/human.png",
});
</script>
<template>
<div class="bg-muted/50 min-h-screen flex-1 rounded-xl md:min-h-min flex px-4 py-2 gap-2">
<h1 class="text-2xl font-bold text-primary">Terms of Service</h1>
</div>
</template>