forked from suyu/website
Merge branch 'dev' into 'master'
fix: fixes git repo buttons point to wrong repo url and add countermeasure for... See merge request suyu-emu/website!8
This commit is contained in:
commit
030cc495b0
2 changed files with 5 additions and 5 deletions
|
@ -21,12 +21,12 @@
|
|||
<LogoWithTextHorizontal on:click={() => goto("/")} size={50} />
|
||||
</div>
|
||||
<div class="right">
|
||||
<a href="https://git.suyu.dev/explore/organizations" target="_blank">
|
||||
<a href="https://gitlab.com/suyu-emu/suyu" target="_blank" rel="noopener noreferrer">
|
||||
<Button class="!p-2" pill={true}>
|
||||
<CodeBranchOutline />
|
||||
</Button>
|
||||
</a>
|
||||
<a href="https://discord.gg/suyu" target="_blank">
|
||||
<a href="https://discord.gg/suyu" target="_blank" rel="noopener noreferrer">
|
||||
<Button class="!p-2" pill={true}>
|
||||
<DiscordSolid />
|
||||
</Button>
|
||||
|
|
|
@ -83,12 +83,12 @@
|
|||
<div class="buttons">
|
||||
<button
|
||||
on:click={() =>
|
||||
window.open("https://git.suyu.dev/explore/organizations", "_blank")}
|
||||
class="download">Git Repos</button
|
||||
window.open("https://gitlab.com/suyu-emu/suyu", "_blank", "noopener noreferrer")}
|
||||
class="download">Git Repo</button
|
||||
>
|
||||
<button
|
||||
class="discord"
|
||||
on:click={() => window.open("https://discord.gg/suyu", "_blank")}
|
||||
on:click={() => window.open("https://discord.gg/suyu", "_blank", "noopener noreferrer")}
|
||||
>Discord</button
|
||||
>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue