Skip to content

Commit

Permalink
Merge pull request #14 from kushwahramkumar2003/features
Browse files Browse the repository at this point in the history
merge ram branch to features
  • Loading branch information
kushwahramkumar2003 authored Nov 28, 2023
2 parents 16747d6 + 8bee81c commit d1685bf
Show file tree
Hide file tree
Showing 28 changed files with 5,708 additions and 517 deletions.
42 changes: 41 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"concurrently": "^8.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.19.0",
"web-vitals": "^2.1.4"
},
"scripts": {
Expand Down Expand Up @@ -38,6 +39,7 @@
]
},
"devDependencies": {
"react-scripts": "^5.0.1"
"react-scripts": "^5.0.1",
"tailwindcss": "^3.3.5"
}
}
21 changes: 18 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
// import logo from './logo.svg';
import Login from './Components/login';
import Login from "./Components/login"
import Signup from "./Components/SignUp"
import Navbar from "./Components/Navbar"
import { BrowserRouter as Router, Routes, Route} from "react-router-dom";

import './App.css';
import Quiz from "./Components/Quiz";

function App() {
return (
<Login></Login>

<Router>
<Routes>
<Route path="/" element={<Navbar/>}></Route>
<Route exact path="/login" element={<Login/>} ></Route>
<Route exact path="/SignUp" element={<Signup/>}></Route>
<Route exact path="/Quiz" element={<Quiz/>} ></Route>

</Routes>
</Router>



);
}
Expand Down
450 changes: 450 additions & 0 deletions src/Components/Images/Features images/Aptitude Speed Challenges.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
513 changes: 513 additions & 0 deletions src/Components/Images/Features images/Diverse Language Coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
485 changes: 485 additions & 0 deletions src/Components/Images/Features images/Feedback for Improvement.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,001 changes: 1,001 additions & 0 deletions src/Components/Images/Features images/Personalized Skill Profiles.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
821 changes: 821 additions & 0 deletions src/Components/Images/Features images/Timed Programming Quizzes.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/email-mesage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/location.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/phone-call.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/square-instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Components/Images/icons/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/Components/Images/leftcorner-design.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d1685bf

Please sign in to comment.