refactor(ui): rewrite Heading component to act as central typography system, fix line-heights, and apply to MDX pages

Former-commit-id: dc62485b60679b810b5f74bfb5a22915b7a62314
This commit is contained in:
2026-05-07 13:56:26 +02:00
parent 540cebf5ca
commit b4d4b59add
185 changed files with 511 additions and 438 deletions

View File

@@ -19,6 +19,7 @@ import { JobListingBlock } from '@/components/blocks/JobListingBlock';
import { CallToAction } from '@/components/blocks/CallToAction';
import { Button } from '@/components/ui/Button';
const mdxComponents = {
HomeHero,
HomeSubCompanyTiles,
@@ -28,6 +29,7 @@ const mdxComponents = {
JobListingBlock,
CallToAction,
Button,
Heading,
};
interface PageProps {

View File

@@ -13,6 +13,7 @@ import { CompetenceBentoGrid as HomeCompetenceBentoGrid } from '@/components/blo
import { ReferencesSlider as HomeReferencesSlider } from '@/components/blocks/ReferencesSlider';
import { Button } from '@/components/ui/Button';
import { Heading } from '@/components/ui/Heading';
const mdxComponents = {
HomeHero,
@@ -20,6 +21,7 @@ const mdxComponents = {
HomeCompetenceBentoGrid,
HomeReferencesSlider,
Button,
Heading,
};
export async function generateMetadata(props: any): Promise<Metadata> {