diff --git a/src/pages/Education.page.tsx b/src/pages/Education.page.tsx new file mode 100644 index 00000000..22352fb9 --- /dev/null +++ b/src/pages/Education.page.tsx @@ -0,0 +1,71 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { Container, Title, Text, Anchor, Center, Stack } from "@mantine/core"; +import { colors, spacing } from "@/designTokens"; +import { BulletsColumn } from "@/components/columns/BulletsColumn"; +import { BulletsValue } from "@/components/columns/types"; + +const EducationPage = () => { + const location = useLocation(); + + useEffect(() => { + document.title = "Educational use | PolicyEngine"; + window.scrollTo(0, 0); + }, [location]); + + const educationalContent: BulletsValue = { + items: [ + { + text: "Classroom guides for teaching tax and benefit policies", + }, + { + text: "University case studies of PolicyEngine in research and teaching", + }, + { + text: "Educational resources for various learning levels", + }, + { + text: "Integration with educational curricula", + }, + { + text: "Workshop materials and lesson plans", + }, + ], + }; + + return ( + +
+ + + Coming soon + + + + We're currently developing comprehensive content about how PolicyEngine can be used in educational settings. This page will include: + + + + + + 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