import React, { useEffect } from "react";
import "@material-ui/core";
import { AccountCircleRounded as AccountCircleIcon } from "@material-ui/icons";
import "./css/Home.css";
import NavBar from './NavBar';
import Footer from "./Footer";
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 me at parandum@mgrove.uk.
)
}