Skip to content

Commit

Permalink
Added about page
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodeoclash committed Apr 18, 2022
1 parent fc86dd0 commit 83cce70
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion src/pages/About.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
import { Heading, Text, Box, Link } from "@chakra-ui/react";
import {
Heading,
Text,
Box,
Link,
UnorderedList,
ListItem,
} from "@chakra-ui/react";

import NoSidebar from "../layouts/NoSidebar";

Expand Down Expand Up @@ -41,6 +48,26 @@ export default function About() {
Twitter
</Link>
</Text>

<Heading as={"h1"} fontSize={"large"} mt={"8"}>
Thanks to
</Heading>
<Text my={"2"}>
Vodon Pro has been built with the support and help of a number of
great coaches. In no particular order:
</Text>
<UnorderedList my={2}>
<ListItem>
Etro from the{" "}
<Link
href="https://apexfundamentalists.com/"
isExternal
textDecoration={"underline"}
>
Apex Fundamentalists
</Link>
</ListItem>
</UnorderedList>
</Box>
</NoSidebar>
);
Expand Down

0 comments on commit 83cce70

Please sign in to comment.