diff --git a/src/pages/Education.page.tsx b/src/pages/Education.page.tsx new file mode 100644 index 00000000..361a3221 --- /dev/null +++ b/src/pages/Education.page.tsx @@ -0,0 +1,84 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { Container, Title, Text, List, Anchor, Box, Stack } from "@mantine/core"; +import { colors, spacing, typography } from "@/designTokens"; + +const EducationPage = () => { + const location = useLocation(); + + useEffect(() => { + document.title = "Educational use | PolicyEngine"; + window.scrollTo(0, 0); + }, [location]); + + return ( + <> + + + + Coming soon + + + + We're currently developing comprehensive content about how + PolicyEngine can be used in educational settings. This page will + include: + + + + + + Classroom guides for teaching tax and benefit policies + + + University case studies of PolicyEngine in research and teaching + + + Educational resources for various learning levels + + + Integration with educational curricula + + + Workshop materials and lesson plans + + + + + + If you're using PolicyEngine in an educational setting and + would like to contribute your story or resources, please contact us + at{" "} + + hello@policyengine.org + + . + + + + + ); +}; + +export default EducationPage; \ No newline at end of file