Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add home and article pages #1

Open
wants to merge 17 commits into
base: stage
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
REACT_APP_API_KEY = ""
REACT_APP_API_URL = "https://newsapi.org/v2/"
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.next
# testing
/coverage

# production
/build

# misc
.env
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
45 changes: 44 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,44 @@
# ABlOG Project
# ABlOG Project with redux

## Live version

[ABlOG Project on netlify](https://dev--ablog1.netlify.app/)

## Contents

In this ABlOG Project project we have the following sections done:

- [x] Navigation
- [x] Blog
- [x] Card
- [x] Skeleton
- [x] Search input

## Technologies Used

This project is mainly based on [React.js](https://reactjs.org/) plus others few libraries listed below:

- [Tailwind css](https://tailwindcss.com/)
- [redux](https://www.npmjs.com/package/redux)
- [react-redux](https://www.npmjs.com/package/react-redux)
- [reduxjs-toolkit](https://www.npmjs.com/package/@reduxjs/toolkit)
- [react-slick](https://www.npmjs.com/package/react-slick)
- [slick-carousel](https://www.npmjs.com/package/slick-carousel)
- [react-loading-skeleton](https://www.npmjs.com/package/react-loading-skeleton)
- [react-feather](https://www.npmjs.com/package/react-feather)

## How To Run The Project

First, install the project's dependencies:

```
npm install
```

Then, run the development server:

```
npm start
```

There you go 😊, You can preview the project on [http://localhost:3000](http://localhost:3000)
Loading