diff --git a/src/components/Download.vue b/src/components/Download.vue
new file mode 100644
index 0000000..293da70
--- /dev/null
+++ b/src/components/Download.vue
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+ Choose the version of PlayCover
+ you would like to
+ download.
+
+
+ The nightly build has the newest features and bug fixes, but may be unstable.
+ The latest build is thoroughly tested and is recommended for most users.
+
+
+
+
+
+
+
+
+
diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue
index 963dbba..6741280 100644
--- a/src/components/NavBar.vue
+++ b/src/components/NavBar.vue
@@ -55,7 +55,7 @@ onMounted(() => {
diff --git a/src/components/Release.vue b/src/components/Release.vue
index 2f66f80..67000ea 100644
--- a/src/components/Release.vue
+++ b/src/components/Release.vue
@@ -43,12 +43,17 @@ const markdownHTML = marked.parse(markdown)
}}
-
diff --git a/src/pages/download.astro b/src/pages/download.astro
new file mode 100644
index 0000000..b41db47
--- /dev/null
+++ b/src/pages/download.astro
@@ -0,0 +1,8 @@
+---
+import Layout from '../layouts/Layout.astro';
+import Downloads from "../components/Download.vue";
+---
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/index.astro b/src/pages/index.astro
index e221381..c20d255 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -9,7 +9,7 @@ import FeaturedGames from '../components/FeaturedGames.vue';
-
+
diff --git a/src/utils/statics.ts b/src/utils/statics.ts
index 1c963d2..476f456 100644
--- a/src/utils/statics.ts
+++ b/src/utils/statics.ts
@@ -63,6 +63,11 @@ const pages = [
url: 'https://discord.gg/RNCHsQHr3S',
openInNewTab: true,
},
+ {
+ name: 'GitHub',
+ url: 'https://github.com/PlayCover/PlayCover',
+ openInNewTab: true,
+ },
];
export { featuredGames, pages };