-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters