Skip to content

Commit

Permalink
Merge pull request #133 from AviralPatel0526/dev
Browse files Browse the repository at this point in the history
added bold text in coding contest
  • Loading branch information
virajchandra51 authored Oct 23, 2023
2 parents 799224d + 785b261 commit f07873c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/assets/data/eventsData.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const events = [
time: "6:00 PM",
venue: "Online",
img: event4,
guidelines: 'The contest will be organized in three phases:\nPhase 1: DSA Challenge\nPhase 2: CS Fundamentals Challenge\nPhase 3: Aptitude Challenge\nRemember, participation in all three rounds is mandatory, as a leaderboard will determine the top 10 participants based on their cumulative scores. The top 5 participants will be rewarded with cash prizes worth Rs. 5k.📊🏆',
guidelines: (<p style={{fontWeight:'normal'}}> The contest will be organized in three phases:<br/><b>Phase 1:</b> DSA Challenge<br/><b>Phase 2:</b> CS Fundamentals Challenge<br/><b>Phase 3:</b> Aptitude Challenge<br/>Remember, <b>participation in all three rounds is mandatory</b>, as a leaderboard will determine the top 10 participants based on their cumulative scores. The top 5 participants will be rewarded with <b>cash prizes worth Rs. 5k</b>.📊🏆</p>),
desc: "A range of diverse types of coding contests will be organized for the students over the course of 3 days, where the participants will face a variety of challenges, ranging from writing code to debugging a webpage and more.",
link: "",
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/eventCard/EventCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const EventCard = () => {
<h5>
{" "}
<p>GUIDELINES</p>
{EventsData[index].guidelines.split('\n').map(text => <div>{text}</div>)}
{EventsData[index].guidelines}
</h5>
</div>
)}
Expand Down

0 comments on commit f07873c

Please sign in to comment.