Hi Everyone!
This segment is designed to test your skills as a potential future member of the I/T department and working on all the core competencies related to the department. Start running this on localhost and read the instructions!!
To make changes in your own version, please fork this project, and when you are done make a pull request to this dir! Thank you.
Make sure to add your Anonymous Application ID to this file.
This is a Next.js project bootstrapped with create-next-app.
First, clone the repository:
git clone git@github.com:Senior-Caucus/nextjs-app.git
cd nextjs-appIf you don't have Node.js and npm installed, follow these steps to install them:
- Download the Node.js installer from the official website.
- Run the installer, following the prompts to complete the installation. This will also install npm.
Alternatively, you can use a package manager like Homebrew:
brew install nodeThen, install the necessary packages:
npm install npm install styled-components @types/styled-components axiosNext, run the development server:
npm run devOpen http://localhost:3000 with your browser to see the result.
You can start by looking at src/app/page.tsx for the instructions. The page auto-updates as you edit the file.
Ensure your app has this structure:
src
├── app
│ ├── page.tsx
│ ├── Home.module.css
│ ├── about
│ │ ├── page.tsx
│ │ └── About.module.css
public
└── random-image.jpgTo learn more about Next.js, take a look at the following resource:
- Next.js Documentation - learn about Next.js features and API.