Table Of Contents
A website for a fake gaming community built with Next JS and styled components library.
In this project I learned how to build dynamic pages using data from an API and tools such as getStaticProps and getStaticPaths from Next js. This means that I would type the general jsx elements and the javascript would enter the expected data into the chosen webpage.
I also learned how to make styled components. This was easy to learn as I just needed to install and import the package and then add the css styling I wanted.
This a brief guide on setting this project up locally.
If you do not have npm installed enter the command below into command prompt if you are on windows or into terminal if you are a mac user.
$ npm install npm@latest -g
With npm installed you can then clone (download a copy) of this repository (entire project and history):
# Clone this repository
$ git clone https://github.com/hamsame/gamerland/
# Go into the repository
$ cd gamerland
# Remove current origin repository
$ git remote remove origin
Enter the commands beneath to start coding
# Install dependencies
$ npm install
# Start local development server
$ npm run dev