Skip to content

Commit 2f4bcd1

Browse files
committed
Improve styling of pilot welcome msg
1 parent bbb7677 commit 2f4bcd1

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

src/ui/screens/landing-page/sections/top-section/LandingPageTopSection.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import RegularButton from "@/ui/shared-components/buttons/RegularButton";
55
import LandingPageSectionWrapper from "../../components/LandingPageSectionWrapper";
66
import LandingPageTopSectionShared from "./components/LandingPageTopSectionShared";
77
import featureFlags from "@/featureFlags";
8+
import { Typography } from "@mui/material";
9+
import { Link } from 'react-router-dom';
810

911
const LandingPageTopSection = ({ runway }) => {
1012
const isDesktop = useStore((state) => state.isDesktop);
@@ -21,13 +23,12 @@ const LandingPageTopSection = ({ runway }) => {
2123
<LandingPageTopSectionShared />
2224
{runway === "bielefunke" && featureFlags.bielefunke && (
2325
<>
24-
<div>
25-
Willkommen beim Pilotprojekt Bielefeld!
26-
<br/>
27-
Gebt uns gerne Feedback. TODO: dedicated Email address?
28-
<br/>
29-
TODO: Link zum Katalog mit Vorauswahl & Anspruch prüfen für Vorauswahl
30-
</div>
26+
<Typography variant="h2">Willkommen beim Pilotprojekt Bielefeld!</Typography>
27+
<Typography variant="body1" sx={{ textAlign: 'left' }}>
28+
Gebt uns gerne Feedback: (dedicated email address?)
29+
<br/><br/>
30+
Siehe <Link to={"/eligibility-overview"}>hier</Link> die Leistungen die wir im Rahmen des Pilotprojekts bis jetzt eingepflegt haben.
31+
</Typography>
3132
</>
3233
)}
3334
<RegularButton variant={'yellowContained'} link='/user-routing' />

0 commit comments

Comments
 (0)