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 { baseJsonLdGraph } from '$lib/data/json-ld/baseJsonLdGraphs';
import { privacyPolicyPageJsonLdGraph } from '$lib/data/json-ld/webpageJsonLdGraphs';
const BASE = 'https://mifi.ventures';
const PATH = '/privacy-policy';
@@ -10,17 +12,7 @@ const privacyPageMeta: PageMeta = {
description:
'Privacy Policy for mifi Ventures LLC. Describes information we collect, how we use it, messaging policy (SMS), data security, and your rights. Last updated March 5, 2026.',
canonical: PAGE_URL,
jsonLd: [
{
'@type': 'WebPage',
'@id': `${PAGE_URL}#webpage`,
name: 'Privacy Policy | mifi Ventures',
url: PAGE_URL,
dateModified: '2026-03-05',
publisher: { '@id': `${BASE}/#organization` },
inLanguage: 'en-US',
},
],
jsonLd: [...baseJsonLdGraph, privacyPolicyPageJsonLdGraph],
};
export const load: PageLoad = () => {