Skip to content

Commit

Permalink
Student Feedback Card
Browse files Browse the repository at this point in the history
  • Loading branch information
raihanuldev committed Apr 16, 2024
1 parent 147f0a8 commit e4f6bb2
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 46 deletions.
35 changes: 18 additions & 17 deletions src/Pages/Home/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@ import { Helmet } from "react-helmet-async";
// import Banner from "../Banner/Banner";
import Coures from "../Coures/Coures";
import Instructors from "../Instructors/Instructors";
import Testimonial from '../Testimonial/Testimonial.jsx'
import Testimonial from "../Testimonial/Testimonial.jsx";
import Hero from "../Hero/Hero";

const Home = () => {

return (
<div>
<div>
<Helmet>
<title>Home || SpeakUp</title>
</Helmet>
</div>
<Hero/>
{/* <Banner></Banner> */}
<Coures/>
<Instructors/>
<Testimonial/>
</div>
);
return (
<div>
<div>
<Helmet>
<title>Home || SpeakUp</title>
</Helmet>
</div>
<Hero />
{/* <Banner></Banner> */}
<div className="mx-20">
<Coures />
<Instructors />
</div>
<Testimonial />
</div>
);
};

export default Home;
export default Home;
52 changes: 23 additions & 29 deletions src/Pages/Home/Testimonial/Testimonial.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,29 @@ import { Navigation, Pagination, Mousewheel, Keyboard } from "swiper";
import Cart from "./Cart";

const Testimonial = () => {

return (
<div className="my-7">
<div>
<h2 className="text-3xl text-center font-semibold mt-3">Our Students says,</h2>
<p className="text-center">Some Testimonial from our Students</p>
</div>
<div className="items-center">
<Swiper
cssMode={true}
navigation={true}
pagination={true}
mousewheel={true}
keyboard={true}
modules={[Navigation, Pagination, Mousewheel, Keyboard]}
className="mySwiper">
<SwiperSlide>
<Cart img="https://scontent.fdac2-1.fna.fbcdn.net/v/t39.30808-6/314334617_1867452343587154_716205749463897386_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=174925&_nc_eui2=AeGI6eB3BMJWY0miEJ-tsdfCgJUKLs4_qqiAlQouzj-qqC7KHIClTFPWvI1V1j7DSJOuEMFKvxmwvz0iJkyL2wrz&_nc_ohc=wbwO7lycgIoAX_Sf8JI&_nc_zt=23&_nc_ht=scontent.fdac2-1.fna&oh=00_AfCqKYpR6Zi86XJZ2Hj9mOz01qMkGwBVk0sxLCVqEjc-9A&oe=646D4E33" ></Cart>
</SwiperSlide>
<SwiperSlide>
<Cart img='https://scontent.fdac2-1.fna.fbcdn.net/v/t39.30808-6/285270547_1748865732112483_131887826714952621_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=174925&_nc_eui2=AeHb-LnqiNR5W8ekZVraqDGWu2zD_VvTRfa7bMP9W9NF9p7u0-csDPGSEGqhLPAi-X0Tf7uMXVdlvAtoaCpY9SHc&_nc_ohc=rwQcC-5JRo0AX-5SlnP&_nc_zt=23&_nc_ht=scontent.fdac2-1.fna&oh=00_AfBAyzIm71laHJq0exNKnHKnbsfXoYowxjRa-XRNQ4WN_A&oe=646ED5D0'></Cart>
</SwiperSlide>
<SwiperSlide>
<Cart img="https://scontent.fdac2-1.fna.fbcdn.net/v/t39.30808-6/314334617_1867452343587154_716205749463897386_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=174925&_nc_eui2=AeGI6eB3BMJWY0miEJ-tsdfCgJUKLs4_qqiAlQouzj-qqC7KHIClTFPWvI1V1j7DSJOuEMFKvxmwvz0iJkyL2wrz&_nc_ohc=wbwO7lycgIoAX_Sf8JI&_nc_zt=23&_nc_ht=scontent.fdac2-1.fna&oh=00_AfCqKYpR6Zi86XJZ2Hj9mOz01qMkGwBVk0sxLCVqEjc-9A&oe=646D4E33"></Cart>
</SwiperSlide>
</Swiper>
</div>
return (
<div className="my-7">
<div>
<h2 className="text-3xl text-center font-semibold mt-3">
Our Students says,
</h2>
<p className="text-center">Some Testimonial from our Students</p>
</div>
<div className="card w-96 bg-base-200 shadow-xl flex flex-col p-5 transform transition-all duration-1000 hover:scale-105 my-3">
<div>
<p>
The ‘Programming Hero’ has a specialized team that assists students
in obtaining job placements. This is a special reward incentive for
dedicated l................
</p>
</div>
);
<div className="py-2">
<p className=" font-semibold">Raihan Sharif</p>
<p>Learned Japanes Language </p>
</div>
</div>
</div>
);
};

export default Testimonial;
export default Testimonial;

0 comments on commit e4f6bb2

Please sign in to comment.