29 lines
807 B
TypeScript
29 lines
807 B
TypeScript
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 };
|
|
};
|