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} />
|
<LogoWithTextHorizontal on:click={() => goto("/")} size={50} />
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<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}>
|
<Button class="!p-2" pill={true}>
|
||||||
<CodeBranchOutline />
|
<CodeBranchOutline />
|
||||||
</Button>
|
</Button>
|
||||||
</a>
|
</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}>
|
<Button class="!p-2" pill={true}>
|
||||||
<DiscordSolid />
|
<DiscordSolid />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
|
@ -83,12 +83,12 @@
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button
|
<button
|
||||||
on:click={() =>
|
on:click={() =>
|
||||||
window.open("https://git.suyu.dev/explore/organizations", "_blank")}
|
window.open("https://gitlab.com/suyu-emu/suyu", "_blank", "noopener noreferrer")}
|
||||||
class="download">Git Repos</button
|
class="download">Git Repo</button
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="discord"
|
class="discord"
|
||||||
on:click={() => window.open("https://discord.gg/suyu", "_blank")}
|
on:click={() => window.open("https://discord.gg/suyu", "_blank", "noopener noreferrer")}
|
||||||
>Discord</button
|
>Discord</button
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue