21 lines
785 B
TypeScript
21 lines
785 B
TypeScript
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';
|
|
const PAGE_URL = `${BASE}${PATH}`;
|
|
|
|
const termsPageMeta: PageMeta = {
|
|
title: 'Terms of Service | mifi Ventures',
|
|
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: [...baseJsonLdGraph, termsOfServicePageJsonLdGraph],
|
|
};
|
|
|
|
export const load: PageLoad = () => {
|
|
return { meta: termsPageMeta };
|
|
};
|