Skip to content

Commit

Permalink
Merge pull request #67 from ms-club-sliit/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
ChathukaViduranga authored Sep 14, 2024
2 parents 2d96bac + 337d634 commit 1d74d1f
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions app/_components/Home/Hero/index.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import Image from "next/image";
import HackathonImage from "../../../../public/images/AIBot.png";
import { useRouter } from 'next/navigation';
import { useRouter } from "next/navigation";

export default function Home() {
const router = useRouter();
Expand All @@ -17,15 +17,17 @@ export default function Home() {
IT'S HACKATHON TIME!
</h2>
<div className="py-2 lg:py-5">
<h1 className="text-3xl lg:text-6xl font-bold text-left">ARE YOU READY?</h1>
<h1 className="text-3xl lg:text-6xl font-bold text-left">
ARE YOU READY?
</h1>
<p className="text-xs lg:text-lg text-gray-600 lg:w-[500px] text-left">
Showcase your creativity and technical skills In our tech
competition!
</p>
</div>
</div>
<div className="flex flex-col lg:flex-row items-start my-2 gap-3 lg:gap-5">
<button className="text-xs lg:text-base px-4 py-2 lg:px-8 lg:py-3 text-white bg-blue-500 rounded-lg lg:rounded-xl hover:bg-blue-700 font-bold"
{/* <button className="text-xs lg:text-base px-4 py-2 lg:px-8 lg:py-3 text-white bg-blue-500 rounded-lg lg:rounded-xl hover:bg-blue-700 font-bold"
onClick={() => {
router.push('/register');
}}>
Expand All @@ -37,7 +39,12 @@ export default function Home() {
}}>
Full Instructions
<span className="material-symbols-outlined">chevron_right</span>
</button>
</button> */}

<p className="text-xs lg:text-lg text-gray-600 lg:w-[500px] text-left">
Registration for the competition is now closed. Thank you to
everyone who registered!
</p>
</div>
</div>
<div className="absolute lg:static right-5 bottom-1">
Expand All @@ -48,6 +55,6 @@ export default function Home() {
/>
</div>
</div>
</div >
</div>
);
}

0 comments on commit 1d74d1f

Please sign in to comment.