glowing-fiesta/app/pages/legal/terms-of-service.vue
Liviu Burcusel 176665d7d4
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m9s
Production Build and Deploy / Deploy (push) Successful in 28s
Added 'Terms of Service' and 'Privacy policy' pages
2026-01-15 15:53:35 +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>