diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index ffc066e..2476d0c 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -142,7 +142,7 @@ }, { name: "FAQ", - href: "/coming-soon", + href: "/faq", }, { name: "Discord", @@ -290,7 +290,7 @@ > Blog Docs - FAQ + FAQ
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 4af965f..bf08371 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -70,7 +70,7 @@

0) { + console.log("Latest release tag:", releases[0].tag_name); + return releases[0].tag_name; // Assuming the first release is the latest + } else { + console.log("No releases found."); + return null; + } + } catch (error) { + console.error("Error fetching latest release tag:", error); + return null; + } +} + +export const load = (async () => { + let latestReleaseTag = await fetchLatestReleaseTag(); + console.log(latestReleaseTag) + return latestReleaseTag //? { body: latestReleaseTag } : { status: 404 }; +}) \ No newline at end of file diff --git a/src/routes/download/+page.svelte b/src/routes/download/+page.svelte new file mode 100644 index 0000000..f4426a5 --- /dev/null +++ b/src/routes/download/+page.svelte @@ -0,0 +1,104 @@ + + + + + Downloading Suyu + + + diff --git a/src/routes/faq/+page.svelte b/src/routes/faq/+page.svelte new file mode 100644 index 0000000..90c55c7 --- /dev/null +++ b/src/routes/faq/+page.svelte @@ -0,0 +1,43 @@ + + FAQ + + +
+ + + + + +

+ FAQ +

+

+ Got some questions? We got answers! +

+

Q: How is this project different from Yuzu? How do we know you won't have the same fate as Yuzu?

+

A: Unlike Yuzu, Suyu does not 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.

+

Q: What is the purpose of Suyu?

+

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.

+

Q: How can I contribute to Suyu?

+

A: You can contribute to this project by submitting a pull request on our GitLab page. We are always looking for new contributors to help us improve the project!

+

Q: Where can I download Suyu?

+

A: You can download the latest build of Suyu from our GitLab. Please make sure you are using the right URL (our GitLab username is suyu-emu!)

+

Q: What is the current progress for Suyu?

+

A: As of 3/20/2024, we have released our first Windows binary 🎉! You can find it here. We are always trying to make more and more progress, so please feel free to join the Discord!

+