Skip to content

Commit e99f468

Browse files
committed
remove krankenversicherung and fix overflow issue
1 parent 0982349 commit e99f468

2 files changed

Lines changed: 27 additions & 40 deletions

File tree

public/assets/data/requirement-profiles/requirement-profiles-hydration.json

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1886,18 +1886,5 @@
18861886
"de_es": "**§ 185 SGB IX – Arbeitsassistenz** \nMenschen mit Schwerbehinderung können Hilfe durch eine Assistenz am Arbeitsplatz bekommen. Das Integrationsamt bezahlt die vollen Kosten dafür aus einem speziellen Geldtopf. \n\n**§ 185 Abs. 9 SGB IX – Antrag** \nWenn das Integrationsamt nach sechs Wochen nicht über einen Antrag entschieden hat, gilt der Antrag automatisch als genehmigt. Wichtig ist, dass im Antrag genau steht, welche Leistung gewünscht wird.",
18871887
"en": "**Section 185 SGB IX – Work Assistance** \nPeople with severe disabilities can receive assistance at the workplace. The Integration Office pays the full costs from a special fund. \n\n**Section 185 (9) SGB IX – Application** \nIf the Integration Office has not decided on an application after six weeks, the application is automatically considered approved. It is important that the application clearly states which service is requested."
18881888
}
1889-
},
1890-
"ff:allgemeine-krankenversicherungspflicht": {
1891-
"id": "ff:allgemeine-krankenversicherungspflicht",
1892-
"status": "beta",
1893-
"category": "social_benefit",
1894-
"title": {
1895-
"de": "Allgemeine Krankenversicherungspflicht",
1896-
"en": "General Health Insurance Obligation"
1897-
},
1898-
"teaser": {
1899-
"de": "In Deutschland besteht eine allgemeine Krankenversicherungspflicht: Jeder mit Wohnsitz oder gewöhnlichem Aufenthalt muss versichert sein, entweder in der gesetzlichen (GKV) oder der privaten Krankenversicherung (PKV). Welche Absicherung gilt, hängt von der Lebenssituation ab; bei Unklarheiten hilft die Clearingstelle weiter.",
1900-
"en": "In Germany, there is a general obligation to have health insurance: Everyone with a residence or habitual abode must be insured, either in the statutory (GKV) or private health insurance (PKV). The applicable coverage depends on the life situation; if in doubt, the clearing office can assist."
1901-
}
19021889
}
19031890
}

src/ui/screens/landing-page/sections/how-it-works/LandingPageHowItWorks.js

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -89,33 +89,33 @@ const LandingPageHowItWorks = () => {
8989
) : (
9090
<VBox alignItems="center" sx={{ gap: 6, width: "100%" }}>
9191
<Typography variant="h1">{t("home.howItWorks.header")}</Typography>
92-
<VBox sx={{ alignItems: 'center', maxWidth: "400px" }}>
93-
<Swiper
94-
spaceBetween={20}
95-
slidesPerView={1}
96-
pagination={{ clickable: true }}
97-
modules={[Pagination]}
98-
style={{
99-
width: "100%",
100-
"--swiper-pagination-color": "#263046",
101-
"--swiper-pagination-bullet-inactive-color": "#d1d5db",
102-
"--swiper-pagination-bullet-inactive-opacity": "0.4",
103-
"--swiper-pagination-bullet-size": "10px",
104-
"--swiper-pagination-bullet-horizontal-gap": "8px",
105-
}}
106-
>
107-
{cards.map((card, i) => (
108-
<SwiperSlide key={i}>
109-
<LandingPageInfoCard
110-
title={card.title}
111-
text={card.text}
112-
image={mobileImages[i]}
113-
isDesktop={false}
114-
/>
115-
</SwiperSlide>
116-
))}
117-
</Swiper>
118-
</VBox>
92+
<VBox sx={{ alignItems: "center", width: "100%", maxWidth: 400, overflow: "hidden" }}>
93+
<Swiper
94+
spaceBetween={20}
95+
slidesPerView={1}
96+
pagination={{ clickable: true }}
97+
modules={[Pagination]}
98+
style={{
99+
width: "100%",
100+
"--swiper-pagination-color": "#263046",
101+
"--swiper-pagination-bullet-inactive-color": "#d1d5db",
102+
"--swiper-pagination-bullet-inactive-opacity": "0.4",
103+
"--swiper-pagination-bullet-size": "10px",
104+
"--swiper-pagination-bullet-horizontal-gap": "8px",
105+
}}
106+
>
107+
{cards.map((card, i) => (
108+
<SwiperSlide key={i}>
109+
<LandingPageInfoCard
110+
title={card.title}
111+
text={card.text}
112+
image={mobileImages[i]}
113+
isDesktop={false}
114+
/>
115+
</SwiperSlide>
116+
))}
117+
</Swiper>
118+
</VBox>
119119
</VBox>
120120
)}
121121
</LandingPageSectionWrapper>

0 commit comments

Comments
 (0)