diff --git a/README.md b/README.md
index 61cf76c..10a01b1 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,10 @@ services:
- name: GitHub
url: https://github.com/IRHM/appbord
icon: github
+
+ - name: Issues
+ url: https://github.com/IRHM/appbord/issues
+ new_tab: true
```
## Docker
diff --git a/components/ServicesList.tsx b/components/ServicesList.tsx
index 4214fbf..ebfbfd1 100644
--- a/components/ServicesList.tsx
+++ b/components/ServicesList.tsx
@@ -11,7 +11,7 @@ export default function ServicesList({ services }: ServicesListProps) {
{services.map(
(s: Service) =>
s.name && (
-
+
{s.name}
diff --git a/config.yml b/config.yml
index 481bf41..0822c70 100644
--- a/config.yml
+++ b/config.yml
@@ -20,3 +20,7 @@ services:
- name: GitHub
url: https://github.com/IRHM/appbord
icon: github
+
+ - name: Issues
+ url: https://github.com/IRHM/appbord/issues
+ new_tab: true
diff --git a/utils/types.ts b/utils/types.ts
index 06e6407..0f58866 100644
--- a/utils/types.ts
+++ b/utils/types.ts
@@ -8,6 +8,7 @@ export type Service = {
name: string;
url: string;
icon?: string;
+ new_tab?: boolean;
};
export type Weather = {