feature/services-pages (#7)
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:
28
src/routes/terms-of-service/+page.ts
Normal file
28
src/routes/terms-of-service/+page.ts
Normal 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 };
|
||||
};
|
||||
Reference in New Issue
Block a user