forked from vaibhavc13/study_material_inventory_software
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added pages material,courses,queries,blog pages
- Loading branch information
1 parent
4218089
commit ef56bdc
Showing
7 changed files
with
199 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"homepage":"https://vaibhavc13t.github.io/study_material_inventory_software/","name":"study_material_inventory_software","version":"0.1.0","private":true,"dependencies":{"@fortawesome/fontawesome-svg-core":"^6.5.1","@fortawesome/free-brands-svg-icons":"^6.5.1","@fortawesome/free-regular-svg-icons":"^6.5.1","@fortawesome/free-solid-svg-icons":"^6.5.1","@fortawesome/react-fontawesome":"^0.2.0","@testing-library/jest-dom":"^5.17.0","@testing-library/react":"^13.4.0","@testing-library/user-event":"^13.5.0","bootstrap":"^5.3.2","font-awesome":"^4.7.0","react":"^18.2.0","react-countup":"^6.5.0","react-dom":"^18.2.0","react-player":"^2.14.1","react-scripts":"5.0.1","react-slick":"^0.30.2","reactstrap":"^9.2.2","remixicon":"^4.1.0","remixicon-react":"^1.0.0","slick-carousel":"^1.8.1","web-vitals":"^2.1.4"},"scripts":{"predeploy":"npm run build","deploy":"gh-pages -d build","start":"react-scripts start","build":"react-scripts build","test":"react-scripts test","eject":"react-scripts eject"},"eslintConfig":{"extends":["react-app","react-app/jest"]},"browserslist":{"production":[">0.2%","not dead","not op_mini all"],"development":["last 1 chrome version","last 1 firefox version","last 1 safari version"]},"devDependencies":{"gh-pages":"^6.1.1"}} | ||
{"homepage":"https://vaibhavc13t.github.io/study_material_inventory_software/","name":"study_material_inventory_software","version":"0.1.0","private":true,"dependencies":{"@fortawesome/fontawesome-svg-core":"^6.5.1","@fortawesome/free-brands-svg-icons":"^6.5.1","@fortawesome/free-regular-svg-icons":"^6.5.1","@fortawesome/free-solid-svg-icons":"^6.5.1","@fortawesome/react-fontawesome":"^0.2.0","@testing-library/jest-dom":"^5.17.0","@testing-library/react":"^13.4.0","@testing-library/user-event":"^13.5.0","bootstrap":"^5.3.2","font-awesome":"^4.7.0","react":"^18.2.0","react-countup":"^6.5.0","react-dom":"^18.2.0","react-player":"^2.14.1","react-router-dom":"^6.22.1","react-scripts":"5.0.1","react-slick":"^0.30.2","reactstrap":"^9.2.2","remixicon":"^4.1.0","remixicon-react":"^1.0.0","slick-carousel":"^1.8.1","web-vitals":"^2.1.4"},"scripts":{"predeploy":"npm run build","deploy":"gh-pages -d build","start":"react-scripts start","build":"react-scripts build","test":"react-scripts test","eject":"react-scripts eject"},"eslintConfig":{"extends":["react-app","react-app/jest"]},"browserslist":{"production":[">0.2%","not dead","not op_mini all"],"development":["last 1 chrome version","last 1 firefox version","last 1 safari version"]},"devDependencies":{"gh-pages":"^6.1.1"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,29 @@ | ||
|
||
import Home from "./pages/Home"; | ||
import Queries from "./pages/Queries"; | ||
import Blogs from "./pages/blogs"; | ||
import Materials from "./pages/materials"; | ||
|
||
import ReactDOM from "react-dom/client"; | ||
import { BrowserRouter, Routes, Route } from "react-router-dom"; | ||
|
||
function App() { | ||
return <Home />; | ||
return (<BrowserRouter> | ||
<Routes> | ||
<Route path="/study_material_inventory_software" element={<Home />}/> | ||
<Route index element={<Home />} /> | ||
<Route path="/study_material_inventory_software/blogs" element={<Blogs />} /> | ||
<Route path="/study_material_inventory_software/blogs/Courses" element={<allCourses />} /> | ||
<Route path="/study_material_inventory_software/blogs/Queries" element={<Queries />} /> | ||
<Route path="/study_material_inventory_software/materials" element={<Materials />} > | ||
{/* <Route index element={<Home />} /> | ||
<Route path="blogs" element={<Blogs />} /> | ||
<Route path="contact" element={<Contact />} /> | ||
<Route path="*" element={<NoPage />} />*/} | ||
</Route> | ||
</Routes> | ||
</BrowserRouter>) | ||
|
||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React, { Fragment } from "react"; | ||
import Header from "../components/Header/Header"; | ||
import HeroSection from "../components/Hero-Section/HeroSection"; | ||
import CompanySection from "../components/Company-section/Company"; | ||
|
||
import AboutUs from "../components/About-us/AboutUs"; | ||
import Courses from "../components/Courses-section/Courses"; | ||
import ChooseUs from "../components/Choose-us/ChooseUs"; | ||
import Features from "../components/Feature-section/Features"; | ||
import FreeCourse from "../components/Free-course-section/FreeCourse"; | ||
|
||
import Testimonials from "../components/Testimonial/Testimonials"; | ||
|
||
import Newsletter from "../components/Newsletter/Newsletter"; | ||
import Footer from "../components/Footer/Footer"; | ||
|
||
const allCourses = () => { | ||
return ( | ||
<Fragment> | ||
<Header /> | ||
<HeroSection /> | ||
|
||
<FreeCourse /> | ||
|
||
<ChooseUs /> | ||
<Features /> | ||
<Courses /> | ||
|
||
<Footer /> | ||
</Fragment> | ||
); | ||
}; | ||
|
||
export default allCourses; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React, { Fragment } from "react"; | ||
import Header from "../components/Header/Header"; | ||
import HeroSection from "../components/Hero-Section/HeroSection"; | ||
import CompanySection from "../components/Company-section/Company"; | ||
|
||
import AboutUs from "../components/About-us/AboutUs"; | ||
import Courses from "../components/Courses-section/Courses"; | ||
import ChooseUs from "../components/Choose-us/ChooseUs"; | ||
import Features from "../components/Feature-section/Features"; | ||
import FreeCourse from "../components/Free-course-section/FreeCourse"; | ||
|
||
import Testimonials from "../components/Testimonial/Testimonials"; | ||
|
||
import Newsletter from "../components/Newsletter/Newsletter"; | ||
import Footer from "../components/Footer/Footer"; | ||
import { queries } from "@testing-library/react"; | ||
|
||
const Queries = () => { | ||
return ( | ||
<Fragment> | ||
<Header /> | ||
<HeroSection /> | ||
|
||
<FreeCourse /> | ||
|
||
<ChooseUs /> | ||
<Features /> | ||
<Courses /> | ||
|
||
<Footer /> | ||
</Fragment> | ||
); | ||
}; | ||
|
||
export default Queries; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React, { Fragment } from "react"; | ||
import Header from "../components/Header/Header"; | ||
import HeroSection from "../components/Hero-Section/HeroSection"; | ||
import CompanySection from "../components/Company-section/Company"; | ||
|
||
import AboutUs from "../components/About-us/AboutUs"; | ||
import Courses from "../components/Courses-section/Courses"; | ||
import ChooseUs from "../components/Choose-us/ChooseUs"; | ||
import Features from "../components/Feature-section/Features"; | ||
import FreeCourse from "../components/Free-course-section/FreeCourse"; | ||
|
||
import Testimonials from "../components/Testimonial/Testimonials"; | ||
|
||
import Newsletter from "../components/Newsletter/Newsletter"; | ||
import Footer from "../components/Footer/Footer"; | ||
|
||
const blogs = () => { | ||
return ( | ||
<Fragment> | ||
<Header /> | ||
<HeroSection /> | ||
|
||
<FreeCourse /> | ||
|
||
<ChooseUs /> | ||
<Features /> | ||
<Courses /> | ||
|
||
<Footer /> | ||
</Fragment> | ||
); | ||
}; | ||
|
||
export default blogs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React, { Fragment } from "react"; | ||
import Header from "../components/Header/Header"; | ||
import HeroSection from "../components/Hero-Section/HeroSection"; | ||
import CompanySection from "../components/Company-section/Company"; | ||
|
||
import AboutUs from "../components/About-us/AboutUs"; | ||
import Courses from "../components/Courses-section/Courses"; | ||
import ChooseUs from "../components/Choose-us/ChooseUs"; | ||
import Features from "../components/Feature-section/Features"; | ||
import FreeCourse from "../components/Free-course-section/FreeCourse"; | ||
|
||
import Testimonials from "../components/Testimonial/Testimonials"; | ||
|
||
import Newsletter from "../components/Newsletter/Newsletter"; | ||
import Footer from "../components/Footer/Footer"; | ||
|
||
const Materials = () => { | ||
return ( | ||
<Fragment> | ||
<Header /> | ||
|
||
|
||
<FreeCourse /> | ||
|
||
|
||
|
||
|
||
<Footer /> | ||
</Fragment> | ||
); | ||
}; | ||
|
||
export default Materials; |