File tree Expand file tree Collapse file tree
src/ui/screens/landing-page/sections/top-section Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ import RegularButton from "@/ui/shared-components/buttons/RegularButton";
55import LandingPageSectionWrapper from "../../components/LandingPageSectionWrapper" ;
66import LandingPageTopSectionShared from "./components/LandingPageTopSectionShared" ;
77import featureFlags from "@/featureFlags" ;
8+ import { Typography } from "@mui/material" ;
9+ import { Link } from 'react-router-dom' ;
810
911const 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' />
You can’t perform that action at this time.
0 commit comments