Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
virajchandra51 committed Oct 13, 2023
1 parent 71d57e6 commit b396589
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
14 changes: 13 additions & 1 deletion src/assets/data/hackathonData.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,24 @@ const hackathonData = [
},
{
id: '#11',
title: "E - Gaming (Valorant)",
date: "28th October",
description: "Valorant Gaming Competition.",
},
{
id: '#12',
title: "E - Gaming (BGMI)",
date: "29th October",
description: "BGMI Gaming Competition.",
},
{
id: '#13',
title: "Virtual Escape Room",
date: "31th October",
description: "Immersive puzzle game in the form of a virtual escape room.",
},
{
id: '#12',
id: '#14',
title: "Hackathon Begins",
date: "1st Nov, 8:00 AM",
description: "Commencement of Codeutsava 7.0!",
Expand Down
11 changes: 5 additions & 6 deletions src/components/eventCard/EventCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,30 +27,29 @@ export const EventCard = () => {
</div>
<div className="gallery">
<div className="gallery-viewer">
<img ref={eventImage} src={EventsData[index].img} alt="" />
<img src={EventsData[index].img} alt="" />
</div>
</div>
<div className="line-gallery"></div>
<div className="dets">
<div className="dets-top dets-section">
<div className="restaurant-ki-list">
<h1 ref={eventName}>{EventsData[index].title}</h1>
<h1>{EventsData[index].title}</h1>
</div>
<div className="res-desc">
<h5 ref={rating}>{EventsData[index].link}</h5>
<h5>{EventsData[index].link}</h5>
</div>
</div>
<div className="dets-bottom dets-section">
<div className="details">
<div className="head-blocks dimension">
<h1 ref={price}>DATE</h1>
<h1>DATE</h1>
<div className="dimensions-list vals">
<h1 ref={dims}>{EventsData[index].date}</h1>
<h1>{EventsData[index].date}</h1>
</div>
</div>
</div>
<a
ref={desc}
className="codeutsava__events-register-link"
href="#"
target="_blank"
Expand Down

0 comments on commit b396589

Please sign in to comment.