This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
parandum/src/Home.js
T

39 lines
964 B
JavaScript

import React 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() {
const navbarItems = [
{
type: "link",
name: "Login",
link: "/login",
icon: <AccountCircleIcon />,
hideTextMobile: false,
}
];
document.title = "Parandum";
return (
<div>
<NavBar items={navbarItems} />
<main>
<div className="description-section">
<h1>Parandum</h1>
<p>A language-learning platform built by Matthew Grove. With current support for sharing sets and use on mobile, more features are coming soon!</p>
<br/>
<p>To get started, click login 👆</p>
<br/>
<p>If you have any feedback, please feel free to email me at <a href="mailto:parandum@mgrove.uk">parandum@mgrove.uk</a>.</p>
</div>
</main>
<Footer />
</div>
)
}