Skip to content

Commit

Permalink
HomePage modifyed
Browse files Browse the repository at this point in the history
  • Loading branch information
raihanuldev committed Apr 16, 2024
1 parent 2e4ec88 commit 8e39235
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Pages/Home/Coures/Coures.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const Coures = () => {
}, []);
return (
<div>
<h2 className="text-center text-3xl font-semibold">
We Provide Extra Ordinary Coures
<h2 className="text-center text-3xl font-bold my-3" >
Coures_
</h2>
<div className="grid md:grid-cols-3 space-y-7">
{coures.map((object) => (
Expand Down
4 changes: 3 additions & 1 deletion src/Pages/Home/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Coures from "../Coures/Coures";
import Instructors from "../Instructors/Instructors";
import Testimonial from "../Testimonial/Testimonial.jsx";
import Hero from "../Hero/Hero";
import Mission from "../Mission/Mission.jsx";

const Home = () => {
return (
Expand All @@ -18,7 +19,8 @@ const Home = () => {
<div className="mx-20">
<Coures />
<Instructors />
<Testimonial />
<Testimonial />
<Mission />
</div>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions src/Pages/Home/Instructors/Instructors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const Instructors = () => {

return (
<div>
<h2 className="text-center text-3xl my-3 font-semibold">
Our Best Dedicated Popular Mentors
<h2 className="text-center text-3xl my-3 font-bold">
Mentors Panel_
</h2>
<div className="grid md:grid-cols-3 space-y-7">
{instructors.map((instructor) => (
Expand Down
6 changes: 3 additions & 3 deletions src/Pages/Home/Testimonial/Testimonial.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ const Testimonial = () => {
return (
<div className="my-7">
<div>
<h2 className="text-3xl text-center font-semibold mt-3">
Our Students says,
<h2 className="text-3xl text-center font-bold mt-3">
Students Feedback_
</h2>
<p className="text-center">Some Testimonial from our Students</p>
<p className="text-center font-semibold">Some Testimonial from our Students</p>
</div>
{/* Temp fake Dataa */}
<div className="grid grid-cols-1 md:grid-cols-3">
Expand Down

0 comments on commit 8e39235

Please sign in to comment.