feat: FAQ

This commit is contained in:
million1156 2024-03-20 15:18:44 -05:00
parent 50572b55e1
commit 4225dc58f3
3 changed files with 13 additions and 4 deletions

View file

@ -142,7 +142,7 @@
}, },
{ {
name: "FAQ", name: "FAQ",
href: "/coming-soon", href: "/faq",
}, },
{ {
name: "Discord", name: "Discord",
@ -290,7 +290,7 @@
> >
<a href="/coming-soon" class="px-5 py-3 transition hover:text-white">Blog</a> <a href="/coming-soon" class="px-5 py-3 transition hover:text-white">Blog</a>
<a href="/coming-soon" class="px-5 py-3 transition hover:text-white">Docs</a> <a href="/coming-soon" class="px-5 py-3 transition hover:text-white">Docs</a>
<a href="/coming-soon" class="px-5 py-3 transition hover:text-white">FAQ</a> <a href="/faq" class="px-5 py-3 transition hover:text-white">FAQ</a>
</div> </div>
<div class="flex w-full flex-row items-center justify-end text-[#A6A5A7]"> <div class="flex w-full flex-row items-center justify-end text-[#A6A5A7]">
<div class="flex flex-row gap-4 max-[625px]:hidden"> <div class="flex flex-row gap-4 max-[625px]:hidden">

View file

@ -1,5 +1,5 @@
<svelte:head> <svelte:head>
<title>Coming Soon</title> <title>FAQ</title>
</svelte:head> </svelte:head>
<div <div
@ -30,5 +30,14 @@
<p class="max-w-[36rem] text-lg leading-relaxed text-[#A6A5A7]"> <p class="max-w-[36rem] text-lg leading-relaxed text-[#A6A5A7]">
Got some questions? We got answers! Got some questions? We got answers!
</p> </p>
<p class="useless-text">Accounts are used for:</p> <p class="text-[15px] leading-[1.41] md:text-[19px] md:leading-[1.1]">Q: How is this project different from Yuzu? How do we know you won't have the same fate as Yuzu?</p>
<p class= "text-m text-[15px]">A: Unlike Yuzu, Suyu does <b>not</b> include many of the core "requirements" to run it. You need to legally dump your Nintendo Switch to obtain a title.keys file, which Yuzu did not do. Additionally, you must dump your own firmware.</p>
<p class="text-[15px] leading-[1.41] md:text-[19px] md:leading-[1.1]">Q: What is the purpose of Suyu?</p>
<p class= "text-m text-[15px]">A: The purpose of this project is to provide a free, open-source alternative to the now-dead Yuzu emulator. We believe that the community should be able to emulate their Switch device (legally) and be able to enjoy their favorite game titles.</p>
<p class="text-[15px] leading-[1.41] md:text-[19px] md:leading-[1.1]">Q: How can I contribute to Suyu?</p>
<p class= "text-m text-[15px]">A: You can contribute to this project by submitting a pull request on our <a href="https://gitlab.com/suyu-emu/suyu">GitLab</a> page. We are always looking for new contributors to help us improve the project!</p>
<p class="text-[15px] leading-[1.41] md:text-[19px] md:leading-[1.1]">Q: Where can I download Suyu?</p>
<p class= "text-m text-[15px]">A: You can download the latest build Suyu from our <a href="https://gitlab.com/suyu-emu/suyu/-/releases">GitLab</a>. Please make sure you are using the right URL (our GitLab username is suyu-emu!)</p>
<p class="text-[15px] leading-[1.41] md:text-[19px] md:leading-[1.1]">Q: What is the current progress for Suyu?</p>
<p class= "text-m text-[15px]">A: As of 3/20/2024, we have released our first Windows binary 🎉! You can find it <a href="https://gitlab.com/suyu-emu/suyu/-/releases">here</a>. We are always trying to make more and more progress, so please feel free to <a href="https://discord.gg/suyu">join the Discord!</a></p>
</div> </div>