feature/services-pages (#7)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful

Reviewed-on: #7
Co-authored-by: mifi <badmf@mifi.dev>
Co-committed-by: mifi <badmf@mifi.dev>
This commit was merged in pull request #7.
This commit is contained in:
2026-03-10 00:51:18 +00:00
committed by Mike Fitzpatrick
parent 66640fa535
commit 7012f0fdd2
98 changed files with 4119 additions and 1189 deletions

View File

@@ -0,0 +1,28 @@
import type { PageLoad } from './$types';
import type { PageMeta } from '$lib/seo';
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: [
{
'@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',
},
],
};
export const load: PageLoad = () => {
return { meta: termsPageMeta };
};