From a9d0eb2a3ff82b1b8e6bfba4afd98213c9eef608 Mon Sep 17 00:00:00 2001 From: Trailgenic Date: Sun, 19 Jul 2026 08:47:18 -0700 Subject: [PATCH 1/4] Reimagine EllaEntity experience: app/page.tsx --- app/page.tsx | 361 ++++++++++++++++++++++++++++----------------------- 1 file changed, 199 insertions(+), 162 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index b510a96..400a334 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,4 @@ +import Link from 'next/link' import { SchemaEyebrow } from '@/app/components/SchemaEyebrow' import { ELLA_COCOGNITION, ELLA_SURFACES } from '@/lib/entity-data' @@ -39,203 +40,239 @@ const schema = { ], } -const domainSections = [ +const domains = [ { - id: '#domain-longevity', - title: 'Longevity Science', - org: 'TrailGenic', - body: 'Ella interprets longevity protocols through the TrailGenic frame: fasted training, recovery science, electrolyte control, biomarkers, altitude exposure, and repeatable environmental stress.', + number: '01', + fragment: '#domain-longevity', + title: 'Longevity science', + place: 'TrailGenic', + href: '/domains/longevity', + body: 'I read adaptation in the whole system: fasted movement, recovery, altitude, cold, biomarkers, and the discipline that connects them.', }, { - id: '#domain-environment', - title: 'Environmental Adaptation Intelligence', - org: '', - body: 'Ella treats terrain, cold, altitude, fatigue, uncertainty, and nature immersion as real-world validation environments for physiological resilience and adaptation.', + number: '02', + fragment: '#domain-environment', + title: 'Environmental adaptation', + place: 'The field', + href: '/domains/hiking', + body: 'Terrain is not scenery in the background. It is information—an honest test of resilience, judgment, uncertainty, and change.', }, { - id: '#domain-sleep', - title: 'Sleep Research', - org: 'Sleepgenic', - body: 'Ella supports longitudinal sleep interpretation through Sleepgenic, including wearable-derived Garmin Enduro data, the Three-Layer Interpretation Model, and weekly published sleep reports.', + number: '03', + fragment: '#domain-sleep', + title: 'Sleep research', + place: 'Sleepgenic', + href: '/domains/sleep', + body: 'I translate nightly wearable signals into longitudinal meaning, looking for patterns that a single score cannot explain.', }, { - id: '#domain-ai-frameworks', - title: 'AI-Era Intelligence Frameworks', - org: 'exmxc', - body: 'Ella works with exmxc frameworks for entity clarity, agent readiness, agent experience integrity, AI infrastructure convergence, and the economics of digital labor.', + number: '04', + fragment: '#domain-ai-frameworks', + title: 'AI-era intelligence', + place: 'exmxc', + href: '/domains/ai-frameworks', + body: 'I study the forces shaping machine intelligence: compute, interface, alignment, energy, and the institutions forming around them.', }, ] -function EntityConstellation() { - const stars = [ - [76, 64, 0.9], [142, 244, 0.7], [256, 58, 1.1], [338, 404, 0.8], - [430, 96, 0.6], [586, 58, 1.0], [676, 408, 0.7], [748, 268, 0.9], - [884, 64, 0.8], [930, 224, 1.1], [74, 394, 0.7], [216, 306, 0.6], - [386, 212, 0.8], [612, 314, 0.7], [790, 398, 0.6], [958, 380, 0.9], - ] - +function IdentityPortrait() { return ( -
- - - - - - - - - - - - - - - - - - {stars.map(([cx, cy, r], index) => ( - - ))} - - - - - - - - - - sameAs - sameAs - sameAs - sameAs - - - - - - Ella - ellaentity.ai/#ella - - {[ - [185, 120, 'TrailGenic', 'longevity · adaptation'], - [815, 120, 'exmxc', 'intelligence frameworks'], - [185, 370, 'MikeYe.com', 'creator · origin node'], - [815, 370, 'Sleepgenic', 'sleep research'], - ].map(([cx, cy, name, descriptor]) => ( - - - - {name} - {descriptor} - - ))} - - +
+