add About component with three-column feature grid, adjust heading and paragraph font sizes, and define color utility classes for ivory, green, and void

This commit is contained in:
2025-12-05 16:40:14 +01:00
parent 726382e041
commit d1b5b286f5
4 changed files with 87 additions and 4 deletions

View File

@@ -82,17 +82,17 @@ export const H1 = createTextComponent(
)
export const H2 = createTextComponent(
'h2',
'text-5xl lg:text-6xl font-medium leading-tight tracking-tight',
'text-4xl lg:text-5xl font-medium leading-tight tracking-tight',
{ font: 'quicking' }
)
export const H3 = createTextComponent(
'h3',
'text-4xl lg:text-5xl font-medium leading-tight tracking-tight',
'text-3xl lg:text-4xl font-medium leading-tight tracking-tight',
{ font: 'quicking' }
)
export const H4 = createTextComponent(
'h4',
'text-4xl lg:text-5xl font-medium leading-snug tracking-tight',
'text-2xl lg:text-3xl font-medium leading-snug tracking-tight',
{ font: 'quicking' }
)
@@ -181,6 +181,6 @@ export const CT = createTextComponent(
)
export const CP = createTextComponent(
'p',
'text-sm lg:text-base tracking-wide leading-normal font-light',
'text-base lg:text-lg tracking-normal leading-normal font-light',
{ font: 'sans' }
)