JSON-LD Improvements
This commit is contained in:
@@ -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 = () => {
|
||||
|
||||
Reference in New Issue
Block a user