Skip to content

Commit

Permalink
improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Oct 11, 2023
1 parent 270f303 commit d80a916
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
8 changes: 4 additions & 4 deletions pwa/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"prepare": "cd .. && husky install"
},
"dependencies": {
"@conduction/components": "2.2.13",
"@conduction/components": "2.2.14",
"@conduction/theme": "1.0.45",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
Expand Down
18 changes: 8 additions & 10 deletions pwa/src/templates/jumbotronTemplate/JumbotronTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,15 @@ export const JumbotronTemplate: React.FC = () => {
>
<Page>
<PageContent>
<div>
<CardWrapper aria-label={t("Jumbotron card")} role="contentinfo" className={styles.card}>
<Heading2 className={styles.title}>
{t("Woo-publications of")} {process.env.GATSBY_ORGANISATION_NAME}
</Heading2>
<CardWrapper aria-label={t("Jumbotron card")} role="contentinfo" className={styles.card}>
<Heading2 className={styles.title}>
{t("Woo-publications of")} {process.env.GATSBY_ORGANISATION_NAME}
</Heading2>

<Paragraph className={styles.description}>
{t("On this page you will find the Woo-publications of")} {process.env.GATSBY_ORGANISATION_NAME}
</Paragraph>
</CardWrapper>
</div>
<Paragraph className={styles.description}>
{t("On this page you will find the Woo-publications of")} {process.env.GATSBY_ORGANISATION_NAME}
</Paragraph>
</CardWrapper>
</PageContent>
</Page>
</div>
Expand Down
5 changes: 5 additions & 0 deletions pwa/src/templates/landing/LandingTemplate.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@
.container > *:not(:last-child) {
margin-block-end: var(--utrecht-space-block-lg);
}

.header1 {
margin-block-start: 0px;
margin-block-end: 0px;
}
1 change: 1 addition & 0 deletions pwa/src/templates/landing/LandingTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export const LandingTemplate: React.FC = () => {

return (
<>
<h1 className={styles.header1}></h1>
<JumbotronTemplate />

<Page>
Expand Down

0 comments on commit d80a916

Please sign in to comment.