import { Footer } from "~/components/footer";
import {
header,
item,
itemContainer,
itemGithubLink,
itemLink,
link,
love,
outer,
} from "~/components/about.css";
export default function About() {
return (
{[
{
name: "Saerro",
url: "https://saerro.ps2.live",
github: "https://github.com/genudine/saerro",
description:
"Population GraphQL API focussing on deep granularity.",
},
{
name: "Metagame API",
url: "https://metagame.ps2.live",
github: "https://github.com/genudine/metagame",
description: "World states, contininent locks, alerts, etc.",
},
{
name: "Population API",
url: "https://agg.ps2.live/population",
github: "https://github.com/genudine/agg-population",
description: "Population as seen by many services, averaged.",
},
{
name: "Census Playground",
url: "https://try.ps2.live",
github: "https://github.com/genudine/try.ps2.live",
description: "Explore and share the Census API.",
},
{
name: "ps2.live",
url: "https://ps2.live",
github: "https://github.com/genudine/ps2.live",
description: "This website. It's pretty cool.",
},
{
name: "Medkit",
url: "https://github.com/genudine/medkit2",
github: "https://github.com/genudine/medkit2",
description:
"PS2 Discord bot for population/continents in channel names.",
},
].map(({ name, url, github, description }, i) => (
-
{name}
{description}
github
))}
Built with 💖 by Pomf =3
);
}