import React from 'react'; import { PixelCenter } from './PixelCenter'; export function Default() { return (

Centered content with the default max-width and page gutter.

); } export function NarrowProse() { return (

A narrower max-width is useful for long-form reading flows where measure matters.

); } export function TextCentered() { return (

Both the wrapper and the inner text are centered.

); } export function AsSection() { return (

Polymorphic: renders as a semantic <section> on the pixel surface.

); }