Now with legal policies and services pages
This commit is contained in:
28
src/routes/privacy-policy/+page.ts
Normal file
28
src/routes/privacy-policy/+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 = '/privacy-policy';
|
||||
const PAGE_URL = `${BASE}${PATH}`;
|
||||
|
||||
const privacyPageMeta: PageMeta = {
|
||||
title: 'Privacy Policy | mifi Ventures',
|
||||
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',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export const load: PageLoad = () => {
|
||||
return { meta: privacyPageMeta };
|
||||
};
|
||||
Reference in New Issue
Block a user