Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
brandstetterm committed Dec 4, 2023
1 parent 74f1cf8 commit 284f284
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 9 deletions.
10 changes: 9 additions & 1 deletion src/pages/[lang]/Legal/Cookies.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
---
import LegalLayout from "../../layouts/LegalLayout.astro";
import type {GetStaticPaths} from "astro";
import LegalLayout from "../../../layouts/LegalLayout.astro";
import "./legal.scss";
export const getStaticPaths = (() => {
return [
{params: {lang: "en"}},
{params: {lang: "de"}},
];
}) satisfies GetStaticPaths;
---

<LegalLayout>
Expand Down
10 changes: 9 additions & 1 deletion src/pages/[lang]/Legal/Privacy.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
---
import LegalLayout from "../../layouts/LegalLayout.astro";
import type {GetStaticPaths} from "astro";
import LegalLayout from "../../../layouts/LegalLayout.astro";
import "./legal.scss";
export const getStaticPaths = (() => {
return [
{params: {lang: "en"}},
{params: {lang: "de"}},
];
}) satisfies GetStaticPaths;
---

<LegalLayout>
Expand Down
10 changes: 9 additions & 1 deletion src/pages/[lang]/Legal/Terms.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
---
import LegalLayout from "../../layouts/LegalLayout.astro";
import type { GetStaticPaths } from "astro";
import LegalLayout from "../../../layouts/LegalLayout.astro";
import "./legal.scss";
export const getStaticPaths = (() => {
return [
{params: {lang: "en"}},
{params: {lang: "de"}},
];
}) satisfies GetStaticPaths;
---

<LegalLayout>
Expand Down
4 changes: 2 additions & 2 deletions src/views/ReachNewHeights/ReachNewHeights.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ const content = await getTranslatedContent("Hero_Section", lang!);
</div>
<img
src="assets/images/reach-new-heights_light.webp"
alt="Reach new heights"
alt={content.imageAlt1}
class="reach-new-heights__image reach-new-heights__image--light"
/>
<img
src="assets/images/reach-new-heights_dark.webp"
alt="Reach new heights"
alt={content.imageAlt1}
class="reach-new-heights__image reach-new-heights__image--dark"
/>
<div class="reach-new-heights__information">
Expand Down
7 changes: 3 additions & 4 deletions src/views/ReachNewHeights/ReachNewHeights.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@
flex-direction: column;
align-items: center;

> .information-item__icon--dark {
display: none;
}

> h2 {
color: var(--black);
font-size: 16px;
Expand All @@ -127,6 +123,9 @@
}
}
}
.information-item__icon--dark {
display: none;
}

@media (min-width: 768px) {
.reach-new-heights__headline > h1 {
Expand Down

0 comments on commit 284f284

Please sign in to comment.