Added better error boundary page. Started some CSS and layout refactoring. **Major Changes**.

This commit is contained in:
Patrick Fic
2020-06-10 17:52:38 -07:00
parent 52849e1af7
commit afbec7d79e
18 changed files with 475 additions and 455 deletions

View File

@@ -1,19 +1,13 @@
import { Layout, Typography } from "antd";
import React from "react";
import { Typography, Layout } from "antd";
import HeaderContainer from "../../components/header/header.container";
import ManageSignInButton from "../../components/manage-sign-in-button/manage-sign-in-button.component";
export default function LandingPage() {
const { Header, Content } = Layout;
return (
<Layout style={{ minHeight: "100vh" }}>
<Header>
<HeaderContainer landingHeader />
</Header>
<Layout style={{ height: "100vh" }}>
<ManageSignInButton />
<Content className='content-container' style={{ padding: "0em 4em 4em" }}>
<Typography.Title>ImEX.Online</Typography.Title>
</Content>
<Typography.Title>ImEX.Online</Typography.Title>
</Layout>
);
}