Skip to content

Commit d23a697

Browse files
committed
added rulebook
1 parent 0ee4f83 commit d23a697

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

342 KB
Binary file not shown.

src/components/ui/DownloadBrochureButton.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function DownloadBrochureButton({
1010
}) {
1111
const downloadBrochure = () => {
1212
const link = document.createElement('a');
13-
link.href = '/brochure.pdf';
13+
link.href = '/Participant_Rulebook_Updated.pdf';
1414
link.download = 'OpenCode-Brochure.pdf';
1515
document.body.appendChild(link);
1616
link.click();
@@ -27,7 +27,7 @@ export default function DownloadBrochureButton({
2727
{showIcon && (
2828
<Download className="w-4 h-4 transition-transform group-hover:translate-y-0.5" />
2929
)}
30-
Brochure
30+
Rule Book
3131
</Button>
3232
);
3333
}

0 commit comments

Comments
 (0)