Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix: more legacy code
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrik-Klijnsma-Work committed Jul 3, 2023
1 parent aa66622 commit 3dc059f
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions packages/app/src/pages/over.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,28 +65,25 @@ const Over = (props: StaticProps<typeof getStaticProps>) => {
<link key="dc-type" rel="dcterms:type" href="https://standaarden.overheid.nl/owms/terms/webpagina" />
<link key="dc-type-title" rel="dcterms:type" href="https://standaarden.overheid.nl/owms/terms/webpagina" title="webpagina" />
</Head>

<Box textVariant="body1" bg="white">
<Box paddingBottom={space[5]}>
<Box marginBottom={space[4]} maxWidth={sizes.maxWidthText}>
<Heading variant="h2" level={1}>
{content.title}
</Heading>
</Box>
<TwoColumnLayout>
<div>
<RichContent blocks={content.intro} contentWrapper={RichContentWrapper} />
<FullscreenChartTile disableBorder>
<Box marginTop={space[2]}>
<ContentImage node={content.timelineImage} contentWrapper={RichContentWrapper} enableShadow />
</Box>
</FullscreenChartTile>
</div>
<div>
<RichContent blocks={content.description} contentWrapper={RichContentWrapper} />
</div>
</TwoColumnLayout>
<Box paddingBottom={space[5]}>
<Box marginBottom={space[4]} maxWidth={sizes.maxWidthText}>
<Heading variant="h2" level={1}>
{content.title}
</Heading>
</Box>
<TwoColumnLayout>
<div>
<RichContent blocks={content.intro} contentWrapper={RichContentWrapper} />
<FullscreenChartTile disableBorder>
<Box marginTop={space[2]}>
<ContentImage node={content.timelineImage} contentWrapper={RichContentWrapper} enableShadow />
</Box>
</FullscreenChartTile>
</div>
<div>
<RichContent blocks={content.description} contentWrapper={RichContentWrapper} />
</div>
</TwoColumnLayout>
</Box>
</Box>
</Layout>
Expand Down

0 comments on commit 3dc059f

Please sign in to comment.