https://github.com/alitnk/overreacted-clone
A clone of overreacted.io created using React, Next.js, Tailwind CSS and Redux.
https://github.com/alitnk/overreacted-clone
nextjs react typescript
Last synced: 9 months ago
JSON representation
A clone of overreacted.io created using React, Next.js, Tailwind CSS and Redux.
- Host: GitHub
- URL: https://github.com/alitnk/overreacted-clone
- Owner: alitnk
- Created: 2022-03-09T10:26:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-09T12:08:27.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T10:43:10.814Z (11 months ago)
- Topics: nextjs, react, typescript
- Language: TypeScript
- Homepage:
- Size: 130 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# overreacted.io clone
This project is a clone of [overreacted.io](https://overreacted.io/), created using Next.js, TypeScript, Tailwind CSS and Redux (+Redux Toolkit)
## Dependencies
To install the dependencies, run:
```sh
yarn
# or run `npm install`
```
## Building The Project
The application makes use of SSG (Static Site Generation) features of Next.js, to see the performance impact of SSG in action, you should first build the project using:
```sh
yarn build
# or run `npm run build`
```
Note that this might take a while since Next.js should make a few calls to the posts API and generate all the static pages.
After the build is completed, run:
```sh
yarn start
# or run `npm run start`
```
and visit the application on http://localhost:3000
## Running on Development Mode
If you want to run the application on development mode, run:
```sh
yarn dev
# or run `npm run dev`
```
and visit the application on http://localhost:3000