Skip to content

Commit

Permalink
Title on View Project links to Devpost (#111)
Browse files Browse the repository at this point in the history
* Title on View Project links to Devpost

* Fix the linking to the Title on View Project links to Devpost and bold it

* Undo weird formatting

Uhhhh I probably need to add a prettier rule cause it shouldn't have formatted it that way...

---------

Co-authored-by: Michael Zhao <37679458+MichaelZhao21@users.noreply.github.com>
  • Loading branch information
vvyn and MichaelZhao21 authored Aug 22, 2024
1 parent 9f49595 commit 40f02c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/components/judge/ProjectDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ const ProjectDisplay = (props: ProjectDisplayProps) => {

return (
<div className={twMerge('px-2', props.className)}>
<h1 className="text-3xl mb-1">{project.name}</h1>
<h1 className="text-3xl mb-1 font-bold">
<a href={project.url} target="_blank" rel="noopener noreferrer">
{project.name}
</a>
</h1>
<h2 className="text-xl mb-1">Table {project.location}</h2>
<Paragraph className="text-light" text={project.description} />
</div>
Expand Down

0 comments on commit 40f02c9

Please sign in to comment.