Skip to content

Commit 452f67c

Browse files
authored
Merge pull request #27 from IEEE-SB-RIT/eventUpdates
Registration Closed and new event updated
2 parents 9d362a5 + 841232d commit 452f67c

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

public/roboEvents/skyshow.webp

97 KB
Loading

src/components/linkButton.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const LinkButton = ({content, link = "#"}: LinkButtonProps) => {
77
return (
88
<a
99
href={link}
10-
target="_blank"
1110
rel="noopener noreferrer"
1211
className=" flex items-center w-full py-2 px-4 justify-center rounded-xl text-md font-medium bg-[#e834eb] hover:bg-[#e834eb]/80 active:scale-95 transition-all duration-300 text-white shadow-md hover:border hover:border-white/20 hover:backdrop-blur-md"
1312
>

src/datas/EventData.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,22 @@ const EventDatas: EventData[] = [
7777
],
7878
src: `${basePath}event_08.webp`,
7979
},
80+
{
81+
id: 15,
82+
title: "",
83+
eventName: "Skies in Motion",
84+
type: "",
85+
venue: "Rit Kottayam",
86+
date: "2025-09-26 to 2025-09-28",
87+
salutaion: "Rise of the Machines",
88+
src: `${basePath}skyshow.webp`,
89+
partners: [
90+
{
91+
name: "Rit Kottayam",
92+
role: "Drone Show by Drone Racers Kerala ",
93+
},
94+
],
95+
},
8096
{
8197
id: 14,
8298
title: "event 4",

src/pages/Events.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ const Events = () => {
182182
event.formLink ? (
183183
<LinkButton link={event.formLink} content="Register Now"/>
184184
) : (
185-
<LinkButton link={"https://www.yepdesk.com/roboignite"}
186-
content="Get Tickets"/>
185+
<LinkButton link={""}
186+
content="Registeration Closed"/>
187187
)
188188
)}
189189

src/pages/Landing.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Typewriter } from "react-simple-typewriter";
33
import RobotCanvas from "../components/RobotCanvas";
44
import GradientBackground from "../components/gradientBg";
55
import Button from "../components/Button.tsx";
6-
import EarlyBirdModal from "../components/EarlyBirdModal";
6+
// import EarlyBirdModal from "../components/EarlyBirdModal";
77

88
const Landing = () => {
99
const [showModal, setShowModal] = useState(false);
@@ -81,15 +81,15 @@ const Landing = () => {
8181
/>
8282
<div className="my-6 z-[50]">
8383
<Button
84-
text={"Grab Your Tickets!"}
85-
isNavigate={false}
86-
link={"https://www.yepdesk.com/roboignite"}
84+
text={"Tickets Sold Out"}
85+
isNavigate={true}
86+
link={""}
8787
/>
8888
</div>
8989
</div>
9090

9191
{/* Use the new modal component */}
92-
<EarlyBirdModal isOpen={showModal} onClose={() => setShowModal(false)} />
92+
{/*<EarlyBirdModal isOpen={showModal} onClose={() => setShowModal(false)} />*/}
9393
</div>
9494
);
9595
};

0 commit comments

Comments
 (0)