JSON-LD Improvements
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful

This commit is contained in:
2026-03-12 00:24:28 -03:00
parent d7e427f164
commit cf6ff70cfb
14 changed files with 369 additions and 243 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
import type { PageMeta } from '$lib/seo';
import { defaultJsonLdGraph } from './json-ld';
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.',
jsonLd: defaultJsonLdGraph,
canonical: 'https://mifi.ventures',
jsonLd: [...baseJsonLdGraph, homepageJsonLdGraph, ...catalogJsonLdGraph],
};