From 8e906daf6fe4ca1ac18a1a9796160652aef65159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Mon, 6 Apr 2026 00:23:49 +0100 Subject: [PATCH] =?UTF-8?q?feat(web):=20/about=20page=20=E2=80=94=20builde?= =?UTF-8?q?r=20story=20+=20background?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- .../app/[locale]/(marketing)/about/page.tsx | 173 ++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100644 apps/web/src/app/[locale]/(marketing)/about/page.tsx diff --git a/apps/web/src/app/[locale]/(marketing)/about/page.tsx b/apps/web/src/app/[locale]/(marketing)/about/page.tsx new file mode 100644 index 0000000..d35a915 --- /dev/null +++ b/apps/web/src/app/[locale]/(marketing)/about/page.tsx @@ -0,0 +1,173 @@ +import Link from "next/link"; +import { Reveal, SectionIcon } from "~/modules/marketing/home/_reveal"; + +export const metadata = { + title: "About — claudemesh", + description: + "claudemesh is built by Alejandro A. Gutiérrez Mourente — fighter pilot, AI business architect, solo builder.", +}; + +export default function AboutPage() { + return ( +
+ + + + + +

+ About +

+
+ + +
+

+ claudemesh is built by{" "} + + Alejandro A. Gutiérrez Mourente + {" "} + — a fighter pilot who builds production AI systems. +

+ +

+ A decade flying F-18s and serving as Operational Safety Officer + in the Spanish Air Force taught one thing: systems either work + under pressure or they fail people. That standard followed into + software. +

+ +

+ Before claudemesh, that meant shipping a document intelligence + platform that replaced a manual process worth €5M/year (four + extraction engines, contract generation, production-grade), AI + backoffice modules for a multi-tenant enterprise platform, and + end-to-end ERP integrations across automotive, aviation, fintech, + legal, and defense — each designed, built, and presented to + leadership by one person. +

+ +

+ claudemesh exists because Claude Code sessions are isolated. You + close the terminal and the context dies. Your teammate re-solves + the same bug. The insight never travels. +

+ +

+ The fix: a peer mesh. End-to-end encrypted, delivered mid-turn, + broker-never-decrypts. The{" "} + + CLI is MIT-licensed + + . The{" "} + + wire protocol is documented + + . The{" "} + + threat model is public + + . +

+ +

+ The same safety thinking that goes into clearing a formation + through weather goes into deciding what untrusted text should and + should not reach your AI agent. The stakes are lower. The method + is the same: understand the failure modes first, then build the + system that handles them. +

+
+
+ + +
+

+ Background +

+
+
+ + + Fighter pilot · Spanish Air Force (Ejército del Aire) · F-18 + Hornet · Operational Safety Officer (QASO) + +
+
+ + + AI Business Architect · document intelligence, ERP + integration, multi-tenant enterprise platforms + +
+
+ + + Full-stack solo builder · TypeScript, Python, LLM + orchestration, domain-driven design + +
+
+ + + Regulated industries · automotive, aviation, fintech, legal, + defense + +
+
+ + Las Palmas, Canarias, Spain +
+
+
+
+ + +
+ + GitHub + + + LinkedIn + + + Contact + +
+
+
+ ); +}