Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
rohittp0 committed Oct 3, 2023
2 parents 358bd29 + 288c516 commit 89ba4a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/sections/Hero/Hero.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {Fragment, useState, useEffect} from 'react';
import React, { Fragment, useState, useEffect } from 'react';
import Image from "next/image";
import Nav from "@/sections/Hero/Nav";
import Countdown from "@/sections/Hero/Countdown";
Expand All @@ -20,26 +20,26 @@ const Hero = () => {

return (
<Fragment>
<div className="bg-gray-900 min-h-screen p-2">
<div className="bg-[#204289] min-h-screen p-2">
<div className="p-5 py-10">
{isMobile ? <Mobilenav/> : <Nav/>}
{isMobile ? <Mobilenav /> : <Nav />}
</div>

<div className="flex flex-col text-white font-satoshi-regular items-center justify-center">
<Image src={"/assets/logo.svg"} alt={"logo"} width={200} height={200}/>
<Image src={"/assets/logo.svg"} alt={"logo"} width={200} height={200} />
<h1 className="font-clash-bold text-5xl leading-10 py-10">Make-A-Ton<sup className="font-satoshi-regular">6.0</sup></h1>
<p className="">A 24 HOUR HACKATHON TO EMBRACE THE SPIRIT OF INNOVATION</p>
<button className={`${animateShake ? 'animate-shake' : ''} mt-3 bg-white text-black font-satoshi-bold rounded-[15px] px-5 py-3 border-8 border-gray-500 rotate-20 hover:rotate-0 ease-in-out active:scale-90`}>
register</button>
<p className="mt-10">4th - 5th November, 2023</p>
<div className="flex flex-row mt-5 justify-center items-center">
<Image src={"/assets/location.svg"} alt={"location"} width={20} height={20}/>
<Image src={"/assets/location.svg"} alt={"location"} width={20} height={20} />
<p className="mx-3">Cochin University of Science and Technology</p>
</div>
</div>

<div className="mt-10">
<Countdown/>
<Countdown />
</div>

</div>
Expand Down

0 comments on commit 89ba4a5

Please sign in to comment.