12 lines
758 B
TypeScript
12 lines
758 B
TypeScript
import type { PageMeta } from '$lib/seo';
|
|
import { baseJsonLdGraph, catalogJsonLdGraph } from '$lib/data/json-ld/baseJsonLdGraphs';
|
|
import { homepageJsonLdGraph } from '$lib/data/json-ld/webpageJsonLdGraphs';
|
|
|
|
export const homeMeta: PageMeta = {
|
|
title: 'mifi Ventures — Hands-On Product Architecture for Early-Stage SaaS | Boston, MA',
|
|
description:
|
|
'Product architecture and senior software engineering for early-stage SaaS teams. Mike Fitzpatrick works inside your codebase to build foundations that ship fast without structural debt—frontend systems, MVP launch, fractional CTO, and stage-aligned infrastructure.',
|
|
canonical: 'https://mifi.ventures',
|
|
jsonLd: [...baseJsonLdGraph, homepageJsonLdGraph, ...catalogJsonLdGraph],
|
|
};
|