'use client' import { PRINCIPLES } from '@/app/data/content' import { AnimateIn } from '@/app/components' export function IntroductionSection() { return (
Introduction

Standard.site{ ' ' } began as a conversation between developers building long-form platforms on AT Protocol. Each had working implementations. Each had defined similar schemas. Coordination was the missing piece.

Four principles guide the project:

{ PRINCIPLES.map((principle, index) => ( { String(index + 1).padStart(2, '0') }.

{ principle.title }

{ principle.description }

)) }
The lexicons focus on metadata: what a publication is, what a document contains, and where it lives. Content format is left to each platform. The standard grows when builders identify shared needs and align on solutions.
) }