Skip to content

Commit

Permalink
Merge pull request #284 from 007aneesh/main
Browse files Browse the repository at this point in the history
talks section added
  • Loading branch information
Mansi168 committed May 23, 2023
2 parents f040cf0 + 8e5ee7c commit 21cad93
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function App() {
<BrowserRouter>
<Routes>

<Route exact path="/UMatter" element={<Home />} />
<Route exact path="/" element={<Home />} />
<Route exact path="/signin" element={<SigninPage />} />
<Route path="/blogs" element={<BlogPage />} />
<Route exact path="/signin/forgotPassword" element={<Forgot_password/>}/>
Expand Down
30 changes: 30 additions & 0 deletions src/Components/Blogs/review.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.main{
padding: 5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main h3{
font-size: 2rem;
}
iframe{
width: 46vw;
height: 50vh;
margin-bottom: 50px;
margin-top: 70px;
}
.ele{
display: flex;
flex-direction: column;
}
@media only screen and (max-width: 768px) {
iframe{
width: 550px;
height: 300px;

}
.main{
padding: 10rem 5rem;
}
}
69 changes: 69 additions & 0 deletions src/Components/Blogs/review.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
import React from "react";
import "./review.css";
const Reviews = () => {
return (
<div className="main">
<h3>Let's hear what others have to say!!</h3>
<div className="ele">
<iframe
src="https://www.youtube.com/embed/vKS-dIj81rk"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/Nf0x5kIdw70"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/zJ9ty5_Z-Lo"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/HFgtol421r4"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/NKE9BQ5QVfE"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/BjD7uxSwGWY"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/fakc0l1pe-E"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube.com/embed/rJ9yqzHciEU"
title="YouTube video player"
frameborder="0"
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
</div>
</div>
);
};

export default Reviews;
3 changes: 2 additions & 1 deletion src/pages/blogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ import React from "react";
import Footer from "../Components/Footer";
import Navbar from "../Components/Navbar";
import Blogs from "../Components/Blogs";

import Reviews from "../Components/Blogs/review";
const BlogPage = () => {
return (
<>
<Navbar />
<Blogs />
<Reviews />
<Footer />
</>
);
Expand Down

1 comment on commit 21cad93

@vercel
Copy link

@vercel vercel bot commented on 21cad93 May 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.