Skip to content

Commit

Permalink
About page
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamarcke committed Apr 6, 2024
1 parent 339ecb5 commit 41b352d
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 2 deletions.
Binary file added public/img/about_button_discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/about_button_patreon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/about_preview_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/about_preview_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
83 changes: 83 additions & 0 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
import React from "react";
import {
Container,
Flex,
Group,
Image,
SimpleGrid,
Stack,
Text,
} from "@mantine/core";

const About = () => {
return (
<Container fluid p={0}>
<SimpleGrid
w={"100%"}
cols={{
base: 1,
lg: 2,
}}
className={"p-2 mb-8"}
>
<Flex className={"w-full h-full items-center"}>
<Text className={"text-center lg:text-start"}>
Welcome to GameNode, where the community is the key to
review and recommend the best games in the market! You
can search games by platforms, genres and popularity,
and find detailed reviews made by our users.
</Text>
</Flex>
<Image
alt={"Preview of a GameNode design"}
src={"/img/about_preview_1.png"}
/>

<Image
alt={"Another of a GameNode design"}
src={"/img/about_preview_2.png"}
/>
<Flex className={"w-full h-full items-center"}>
<Text className={"text-center lg:text-start"}>
With our website, you will have access to a community of
avid gamers which are always ready to share their
opinion. You can also connect with your friends and get
the latest news and updates on games.
</Text>
</Flex>
<Stack className={" h-full justify-center w-fit"}>
<Text className={"text-center lg:text-start"}>
Join our community on Discord or contribute with our
code on Github.
</Text>
<Flex className={"w-full justify-center lg:justify-start"}>
<a href={"https://discord.gg/8cPtfHtk"}>
<Image
alt={"Discord button"}
src={"/img/about_button_discord.png"}
className={"w-40"}
/>
</a>
</Flex>
</Stack>
<Stack className={"h-full justify-center w-full"}>
<Text className={"text-center lg:text-end"}>
Help us keep GameNode alive and ad-free by donating in
our Patreon
</Text>
<Flex className={"w-full justify-center lg:justify-end"}>
<a href={"https://patreon.com/GameNodeApp"}>
<Image
alt={"Patreon button"}
src={"/img/about_button_patreon.png"}
className={"w-40"}
/>
</a>
</Flex>
</Stack>
</SimpleGrid>
</Container>
);
};

export default About;
4 changes: 2 additions & 2 deletions src/pages/privacy/index.tsx → src/pages/privacy.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { Container, Flex, Paper, Stack, Text, Title } from "@mantine/core";

const Index = () => {
const Privacy = () => {
return (
<Container fluid p={0}>
<Flex justify={"center"}>
Expand Down Expand Up @@ -77,4 +77,4 @@ const Index = () => {
);
};

export default Index;
export default Privacy;

0 comments on commit 41b352d

Please sign in to comment.