import React, { useEffect } from "react"; import "@material-ui/core"; import { AccountCircleRounded as AccountCircleIcon, ArrowDropDownRounded as ArrowDropDownRoundedIcon } from "@material-ui/icons"; import "./css/Home.css"; import NavBar from './NavBar'; import Footer from "./Footer"; import Collapsible from "react-collapsible"; export default function Home(props) { const navbarItems = [ { type: "link", name: "Login", link: "/login", icon: , hideTextMobile: false, } ]; document.title = "Parandum"; const page = props.page; const logEvent = props.logEvent; useEffect(() => { if (page) { page.load(); return () => page.unload(); } if (logEvent) logEvent("page_view"); }, [logEvent, page]); return (

Parandum

A language-learning platform built by Matthew Grove. With current support for sharing sets and use on mobile, more features are coming soon!


To get started, click login 👆


If you have any feedback, please feel free to email us at contact@parandum.mgrove.uk.


What's New?

v2.3.3}>
  • Bug fixes:
    • On the search page, all sets are shown instead of only the last 50 showing and previous ones being overwritten
v2.3.2}>
  • Bug fixes:
    • On the search page, all sets are now visible rather than just the first 48
v2.3.0}>
  • Add option to ignore accents during tests
  • Update cookie notice
  • Update contact email address
  • Add ability to bulk-create sets and bulk-add vocabulary
  • Bug fixes:
    • Minor styling improvements
    • Efficiency improvements
    • When a set is in a group and the group is deleted, navigating to the home screen no longer throws an error
v2.2.0} >
  • Allow saving a set with no changes
  • Bug fixes:
    • Minor styling improvements
    • Efficiency improvements
    • Users are now correctly removed from groups
v2.1.9}>
  • Add an optional on-screen configurable keyboard during tests for easier access to accented characters
v2.1.8}>
  • Bug fixes:
    • Test options are now set correctly when starting tests
v2.1.7}>
  • Bug fixes:
    • Ensure backwards-compatibility with old versions of Parandum
v2.1.6}>
  • Add option to show number of answers for each prompt
  • Ensure test options are carried over to new tests that are made from pre-existing ones (i.e. with the restart test buttons)
{/* TODO: style */}
) }