Initial react-zen migration.
Some checks failed
Node.js CI / build (push) Has been cancelled

This commit is contained in:
Mike Cao 2026-01-19 21:09:22 -08:00
parent 30c45f888f
commit 3b4776b0e0
6 changed files with 2055 additions and 16 deletions

View file

@ -23,7 +23,7 @@ export function PageHeader({
}) {
return (
<Grid
columns={{ xs: '1fr', md: '1fr 1fr' }}
columns={{ base: '1fr', md: '1fr 1fr' }}
paddingY="6"
marginBottom="6"
border={showBorder ? 'bottom' : undefined}
@ -38,10 +38,10 @@ export function PageHeader({
)}
{title && titleHref ? (
<LinkButton href={titleHref} variant="quiet">
<Heading size={{ xs: '2', md: '3', lg: '4' }}>{title}</Heading>
<Heading size={{ base: 'lg', md: '2xl', lg: '3xl' }}>{title}</Heading>
</LinkButton>
) : (
title && <Heading size={{ xs: '2', md: '3', lg: '4' }}>{title}</Heading>
title && <Heading size={{ base: 'lg', md: '2xl', lg: '3xl' }}>{title}</Heading>
)}
</Row>
{description && (