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

Default container — section landmark, xl max-width, lg rhythm.

); } export function Narrow() { return (

Narrow container with md rhythm.

); } export function AsMain() { return (

Rendered as the main landmark with split padding.

); } export function ProseWidth() { return (

Prose-width container ideal for long-form reading.

); }