Skip to content

Commit 340bf10

Browse files
AimePazzoAime-Patrick
AimePazzo
authored andcommitted
[Delivers #187584865] started desiging signup page
1 parent 988e126 commit 340bf10

36 files changed

+7738
-3658
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# production
1010
/build
11-
11+
dist
1212
# misc
1313
.DS_Store
1414
.env.local

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ Our e-commerce web application server, developed by Team Ninjas, facilitates smo
1717
[![Netlify Status](https://api.netlify.com/api/v1/badges/a3ed5a75-a862-4f3b-ba21-8369180cf3e6/deploy-status)](https://app.netlify.com/sites/e-commerce-ninja-fn-staging/deploys)
1818
[![Coverage Status](https://coveralls.io/repos/github/atlp-rwanda/e-commerce-ninjas-fe/badge.svg)](https://coveralls.io/github/atlp-rwanda/e-commerce-ninjas-fe)
1919
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/atlp-rwanda/e-commerce-ninjas-fe/tree/develop.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/atlp-rwanda/e-commerce-ninjas-fe/tree/develop)
20+
[![CI](https://github.com/atlp-rwanda/e-commerce-ninjas-fe/actions/workflows/ci.yml/badge.svg)](https://github.com/atlp-rwanda/e-commerce-ninjas-fe/actions/workflows/ci.yml)
2021

2122
## Completed features
2223
- Setup empty react
2324
- Setup Redux store
2425
- Setup StoryBook documentation
26+
- Sign up page
2527

2628
## Get started
2729
- Clone repository
@@ -47,7 +49,7 @@ npm run storybook
4749

4850
## Folder Structure
4951

50-
- `public`: Contains static files like `index.html` and images.
52+
- `public`: Contains static files and folder like `index.html` and images.
5153
- `src`: The main source folder for the React application.
5254
- `components`: Reusable UI components.
5355
- `pages`: Different pages/screens of the application.

netlify.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[[redirects]]
2+
from = "/*"
3+
to = "/index.html"
4+
status = 200
5+
6+
[[redirects]]
7+
from = "/api/*"
8+
to = "/index.html"
9+
status = 200
10+
force = true

0 commit comments

Comments
 (0)