JSON-LD Improvements
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful

This commit is contained in:
2026-03-12 00:24:28 -03:00
parent d7e427f164
commit cf6ff70cfb
14 changed files with 369 additions and 243 deletions

View File

@@ -1,5 +1,7 @@
import type { PageLoad } from './$types';
import type { PageMeta } from '$lib/seo';
import { termsOfServicePageJsonLdGraph } from '$lib/data/json-ld/webpageJsonLdGraphs';
import { baseJsonLdGraph } from '$lib/data/json-ld/baseJsonLdGraphs';
const BASE = 'https://mifi.ventures';
const PATH = '/terms-of-service';
@@ -10,17 +12,7 @@ const termsPageMeta: PageMeta = {
description:
'Terms of Service for mifi Ventures LLC. Covers use of the website, services, client communications including SMS, acceptable use, and contact information.',
canonical: PAGE_URL,
jsonLd: [
{
'@type': 'WebPage',
'@id': `${PAGE_URL}#webpage`,
name: 'Terms of Service | mifi Ventures',
url: PAGE_URL,
dateModified: '2026-03-05',
publisher: { '@id': `${BASE}/#organization` },
inLanguage: 'en-US',
},
],
jsonLd: [...baseJsonLdGraph, termsOfServicePageJsonLdGraph],
};
export const load: PageLoad = () => {