import ThemedPicture from "../ui/atoms/themed-picture"; import { useGleanClick } from "../telemetry/glean-context"; import { useViewed } from "../hooks"; import { CURRICULUM } from "../telemetry/constants"; import bannerDark from "../../public/assets/curriculum/curriculum-partner-banner-illustration-large-dark.svg"; import bannerLight from "../../public/assets/curriculum/curriculum-partner-banner-illustration-large-light.svg"; import "./partner-banner.scss"; export function PartnerBanner() { const gleanClick = useGleanClick(); const observedNode = useViewed(() => { gleanClick(`${CURRICULUM}: partner banner view`); }); return (

Learn the curriculum with Scrimba and become job ready

{ gleanClick(`${CURRICULUM}: partner banner click`); }} > Scrimba's Frontend Developer Career Path {" "} teaches the MDN Curriculum Core with fun interactive lessons and challenges, knowledgeable teachers, and a supportive community. Go from zero to landing your first front-end job!

{ gleanClick(`${CURRICULUM}: partner banner click`); }} > Find out more
); }