Skip to content

Commit

Permalink
Merge pull request #14 from purnima143/master
Browse files Browse the repository at this point in the history
update forked repo
  • Loading branch information
mitalirs authored May 5, 2021
2 parents e6544b6 + 2df1698 commit bbb307f
Show file tree
Hide file tree
Showing 40 changed files with 3,655 additions and 311 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ In the majority of the colleges and universities across India, thousands of stud

## Areas of Collaboration 👨‍🏭

Project Managers, Developers and Designers would be collaborating on various domains like:
Project Managers, Developers, and Designers would be collaborating on various domains like:

- **UI Prototyping** with figma tool [figma design](https://www.figma.com/file/1gYZlafa8bUZu61ji10unF/Kurakoo?node-id=0%3A1).

Expand All @@ -35,7 +35,7 @@ Project Managers, Developers and Designers would be collaborating on various dom
- **Working on a User-Experience rich platform for a Social Cause**


This would be an enriching experience for all Student Developers, Project Managers and Designers.
This would be an enriching experience for all Student Developers, Project Managers, and Designers.


## Technology Stack 🛠️
Expand All @@ -58,8 +58,8 @@ Below is a basic idea as to how the website works. We will also be working on ad


## General Guidelines :dart:
- Before working on any issue, kindly go through the instructions given in the [contributing](CONTRIBUTING.md) and readme file carefully.
- For each issue, a detailed explanation is mentioned in issue ticket itself, for more details refer to [figma design](https://www.figma.com/file/1gYZlafa8bUZu61ji10unF/Kurakoo?node-id=0%3A1).
- Before working on any issue, kindly go through the instructions given in the [contributing](CONTRIBUTING.md) and readme the file carefully.
- For each issue, a detailed explanation is mentioned in the issue ticket itself, for more details refer to [figma design](https://www.figma.com/file/1gYZlafa8bUZu61ji10unF/Kurakoo?node-id=0%3A1).

- While making any component, make sure that the code for the all generalised/common components is kept in [src->components->common](src/components/common) folder.
- Kindly keep the source code in the [src->components](src/components/) folder while making specific components.
Expand Down Expand Up @@ -111,7 +111,7 @@ git clone https://github.com/purnima143/Kurakoo.git
```
npm start
```
_NOTE: To run the Frontend side of the application it recommended to run the backend server too._
_NOTE: To run the Frontend side of the application is recommended to run the backend server too._
## Start Frontend & Backend simultaneously
Expand Down Expand Up @@ -202,3 +202,5 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
7 changes: 4 additions & 3 deletions client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import "./App.css";
import { BrowserRouter, Switch, Route } from "react-router-dom";
import Preloader from "./components/Preloader/Preloader";
import NotificationPage from "./components/NotificationPage/NotificationPage";
import AddAQuestion from "./components/AddAQuestion/AddAQuestion";
import Answerquestion from "./components/Answer/Answer";
import NotFound from "./components/NotFound/NotFound";

import Team from "./components/Team/team"
import AboutUs from "./components/aboutus/aboutus"
import Homepage from "./components/Homepage-UI/homepage1"
import Signup from "./components/SignUp/SignUp"
Expand All @@ -27,14 +27,15 @@ const App = () => {
<BrowserRouter>
<Switch>
<Route path="/" exact component={Homepage} />
<Route path="/Team" exact component={Team} />
<Route path="/signup" component={Signup} />
<Route path="/signin" component={Signin} />
<Route path="/feed" component={Feed} />
<Route
path="/notification"
component={NotificationPage}
/>
<Route path="/addaquestion" component={AddAQuestion} />
<Route path="/addaquestion" component={Answerquestion} />
<Route path="/aboutus" component={AboutUs} />
<Route path="/profile" component={Profile} />
<Route component={NotFound} />
Expand Down
Loading

0 comments on commit bbb307f

Please sign in to comment.