-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# PR Checklist - [ ] Did you check if it works normally in all models? *ignore this when it dosen't uses models* - [ ] Did you check if it works normally in all of web, local and node hosted versions? if it dosen't, did you blocked it in those versions? - [ ] Did you added a type def? # Description
- Loading branch information
Showing
16 changed files
with
225 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
import Hub from "./Realm/RealmMain.svelte"; | ||
import { OpenRealmStore } from "src/ts/stores"; | ||
import { ArrowLeft } from "lucide-svelte"; | ||
import { isNodeServer, isTauri } from "src/ts/storage/globalApi"; | ||
import { isNodeServer, isTauri, openURL } from "src/ts/storage/globalApi"; | ||
import { language } from "src/lang"; | ||
import { getRisuHub, hubAdditionalHTML } from "src/ts/characterCards"; | ||
import RisuHubIcon from "./Realm/RealmHubIcon.svelte"; | ||
|
@@ -46,6 +46,47 @@ | |
{:else} | ||
<div class="text-textcolor2">{language.hideRealm}</div> | ||
{/if} | ||
<div class="mt-4 mb-4 w-full border-t border-t-selected"></div> | ||
<h1 class="text-2xl font-bold mb-4"> | ||
Related Links | ||
</h1> | ||
<div class="w-full flex gap-4 p-2 flex-wrap justify-center"> | ||
<button class="bg-darkbg rounded-lg p-4 flex flex-col hover:bg-selected transition-colors relative lg:w-96 w-full items-start text-start" on:click={() => { | ||
openURL("https://discord.gg/Exy3NrqkGm") | ||
}}> | ||
<h2 class="text-xl">Discord</h2> | ||
<span class="text-textcolor2"> | ||
Join our Discord server to chat with other users and the developer. | ||
</span> | ||
</button> | ||
<button class="bg-darkbg rounded-lg p-4 flex flex-col hover:bg-selected transition-colors relative lg:w-96 w-full items-start text-start" on:click={() => { | ||
openURL("https://risuai.net") | ||
}}> | ||
<h2 class="text-xl"> | ||
Website | ||
</h2> | ||
<span class="text-textcolor2"> | ||
See the official website for the project. | ||
</span> | ||
</button> | ||
<button class="bg-darkbg rounded-lg p-4 flex flex-col hover:bg-selected transition-colors relative lg:w-96 w-full items-start text-start" on:click={() => { | ||
openURL("https://github.com/kwaroran/RisuAI") | ||
}}> | ||
<h2 class="text-xl">Github</h2> | ||
<span class="text-textcolor2"> | ||
View the source code and contribute to the project. | ||
</span> | ||
</button> | ||
<button class="bg-darkbg rounded-lg p-4 flex flex-col hover:bg-selected transition-colors relative lg:w-96 w-full items-start text-start" on:click={() => { | ||
openURL("mailto:[email protected]") | ||
}}> | ||
<h2 class="text-xl">Email</h2> | ||
<span class="text-textcolor2"> | ||
Contact the developer directly. | ||
</span> | ||
</button> | ||
</div> | ||
|
||
{:else} | ||
<div class="flex items-center mt-4"> | ||
<button class="mr-2 text-textcolor2 hover:text-green-500" on:click={() => ($OpenRealmStore = false)}> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.