Skip to content

Commit

Permalink
Add space to about page
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Oct 7, 2023
1 parent 72422ca commit e8aabd8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/screens/about/DataSection.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import { Anchor, Text, Title } from "@mantine/core";
import { Anchor, Space, Text, Title } from "@mantine/core";
import { getOpenDataRoute } from "../../../src/routes";

const DataSection = () => {
return (
<>
<Title order={5}>Leaderboards</Title>
Live data from Relic servers.
<Space h={"xs"} />
<Title order={5}>Player Cards</Title>
Live data from Relic servers mixed with data from our database.
<Space h={"xs"} />
<Title order={5}>Stats Data</Title>
Data from our database. Updated daily ~6 AM UTC unless specified otherwise.
<div style={{ paddingLeft: 25 }}>
Expand All @@ -24,6 +26,7 @@ const DataSection = () => {
You can download the data we are scraping. More info on{" "}
<Anchor href={getOpenDataRoute()}> Open Data</Anchor> page.
</div>
<Space h={"xs"} />
<Title order={5}>Explorer</Title>
All the data for units, DPS calculators, faction overviews are generated directly from the
game files. There are often a bugs in the COH source files, please report any problems you
Expand Down

0 comments on commit e8aabd8

Please sign in to comment.