Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes issue #56 #57

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eduaid_web/src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ const Home = () => {
<div className="flex justify-center gap-6">
<div className="mt-8 rounded-2xl">
<a href="question-type">
<button className="items-center text-lg flex justify-center gap-4 text-white px-6 py-3 mx-auto mt-6 border-gradient hover:wave-effect rounded-md">
<button className="flex items-center text-lg justify-center gap-4 text-white px-6 py-3 mx-auto mt-6 rounded-md shadow-md transition-transform duration-300 transform hover:scale-105 hover:bg-gradient-to-r from-[#FF005C] to-[#00CBE7]">
Let’s get Started{" "}
<img src={arrow} width={28} height={24} alt="" />
</button>
</a>
</div>
<div className="mt-8 rounded-2xl">
<a href="history">
<button className="items-center text-lg flex justify-center gap-4 text-white px-6 py-3 mx-auto mt-6 border-gradient hover:wave-effect rounded-md">
<button className="flex items-center text-lg justify-center gap-4 text-white px-6 py-3 mx-auto mt-6 rounded-md shadow-md transition-transform duration-300 transform hover:scale-105 hover:bg-gradient-to-r from-[#FF005C] to-[#00CBE7]">
Your previous Work!
<img src={arrow} width={28} height={24} alt="" />
</button>
Expand Down