Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions src/components/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ export const Home = () => {
<div className="flex flex-col items-center justify-center h-screen bg-gradient-to-b from-home_bg1 to-home_bg2 text-white overflow-hidden w-full relative max-w-full">
<img className="z-20 flex object-contain max-h-full h-48" src="/images/HackDuke.png" alt="Hack Duke"></img>
<h1 className="text-2xl z-50"> 02.08-02.09 </h1>
<h1 className="mt-5 text-2xl z-50"> application closes in</h1>
<Countdown date={new Date("2025-02-01T04:59:00Z")} renderer={CountdownRenderer}/>
<a href='https://portal.hackduke.org/' className='text-2xl bg-gradient-to-b from-[#A414B5] to-[#540A5D] pl-8 pr-8 pt-1 pb-1 rounded-xl mt-5 z-50 transform transition duration-200 hover:scale-105'>Apply Now!</a>
<h1 className="mt-5 text-2xl z-50"> applications closed</h1>
{/* <Countdown date={new Date("2025-02-01T04:59:00Z")} renderer={CountdownRenderer}/> */}
{/* <a href='https://portal.hackduke.org/' className='text-2xl bg-gradient-to-b from-[#A414B5] to-[#540A5D] pl-8 pr-8 pt-1 pb-1 rounded-xl mt-5 z-50 transform transition duration-200 hover:scale-105'>Apply Now!</a> */}
{/* waves */}
<section className="waves-container bottom-[0vw]">
<div className="wave wave1"></div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ const NavLinks = ({isMobile}) => {
{links.map((link) => {
return <NavLink key={link.sectionId} sectionId={link.sectionId} title={link.title}/>
})}
<ApplyButton isMobile/>
{/* <ApplyButton isMobile/> */}
</div>
) : (
<div className='flex text-2xl gap-8'>
{links.map((link) => {
return <NavLink key={link.sectionId} sectionId={link.sectionId} title={link.title}/>
})}
<ApplyButton/>
{/* <ApplyButton/> */}
</div>
)
}
Expand Down