diff --git a/README.md b/README.md
index 4384dd66..663181a0 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,27 @@
-
+

spotube.netlify.app
-
-
+
+
-
+
-
+
-
+
-
+
-
+
diff --git a/lib/pages/settings/about.dart b/lib/pages/settings/about.dart
index ac1f4caa..9bd33506 100644
--- a/lib/pages/settings/about.dart
+++ b/lib/pages/settings/about.dart
@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:platform_ui/platform_ui.dart';
+import 'package:spotube/components/shared/image/universal_image.dart';
import 'package:spotube/components/shared/page_window_title_bar.dart';
import 'package:spotube/hooks/use_package_info.dart';
@@ -78,7 +79,7 @@ class AboutSpotube extends HookConsumerWidget {
InkWell(
onTap: () {
launchUrlString(
- "https://raw.githubusercontent.com/KRTirtho/spotube/main/LICENSE",
+ "https://raw.githubusercontent.com/KRTirtho/spotube/master/LICENSE",
mode: LaunchMode.externalApplication,
);
},
@@ -102,6 +103,20 @@ class AboutSpotube extends HookConsumerWidget {
),
),
const SizedBox(height: 20),
+ MouseRegion(
+ cursor: SystemMouseCursors.click,
+ child: GestureDetector(
+ onTap: () => launchUrl(
+ Uri.parse("https://discord.gg/uJ94vxB6vg"),
+ mode: LaunchMode.externalApplication,
+ ),
+ child: const UniversalImage(
+ path:
+ "https://discord.com/api/guilds/1012234096237350943/widget.png?style=banner2",
+ ),
+ ),
+ ),
+ const SizedBox(height: 20),
Wrap(
runSpacing: 20,
spacing: 20,