Updated packages.

This commit is contained in:
Patrick Fic
2021-05-12 16:26:48 -07:00
parent 64ebdd7d40
commit 1b1e267d70
8 changed files with 54295 additions and 358 deletions

View File

@@ -1,5 +1,6 @@
import React from "react";
import { Typography } from "antd";
export default function AboutPage() {
return (
<div style={{ textAlign: "center", margin: "1rem 0rem" }}>
@@ -10,8 +11,13 @@ export default function AboutPage() {
&copy; 2019 - {new Date().getFullYear()} Snapt Software Inc. used under
license to ImEX Systems Inc.
</Typography.Title>
<Typography.Title level={1}>Third Party Notices</Typography.Title>
<Typography.Text>Placeholder.</Typography.Text>
<Typography.Title level={2}>Third Party Notices</Typography.Title>
<a href="/3rdparty-app.txt">
<Typography.Title level={4}>Application</Typography.Title>
</a>
<a href="/3rdparty-api.txt">
<Typography.Title level={4}>API</Typography.Title>
</a>
</div>
);
}