diff --git a/public/favicon.svg b/public/favicon.svg
deleted file mode 100644
index 05e7018..0000000
--- a/public/favicon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/web-app-manifest-192x192.png b/public/web-app-manifest-192x192.png
new file mode 100644
index 0000000..788c3a4
Binary files /dev/null and b/public/web-app-manifest-192x192.png differ
diff --git a/public/web-app-manifest-512x512.png b/public/web-app-manifest-512x512.png
new file mode 100644
index 0000000..4f6dbc6
Binary files /dev/null and b/public/web-app-manifest-512x512.png differ
diff --git a/src/app/apple-icon.png b/src/app/apple-icon.png
new file mode 100644
index 0000000..cd8a3d7
Binary files /dev/null and b/src/app/apple-icon.png differ
diff --git a/src/app/favicon.ico b/src/app/favicon.ico
new file mode 100644
index 0000000..f27ec84
Binary files /dev/null and b/src/app/favicon.ico differ
diff --git a/src/app/icon0.svg b/src/app/icon0.svg
new file mode 100644
index 0000000..41003ed
--- /dev/null
+++ b/src/app/icon0.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/src/app/icon1.png b/src/app/icon1.png
new file mode 100644
index 0000000..6135905
Binary files /dev/null and b/src/app/icon1.png differ
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e5d20f7..5b0cab3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -11,7 +11,6 @@ import { NuqsAdapter } from "nuqs/adapters/next/app";
export const metadata: Metadata = {
title: "Gitfaster",
description: "A faster web client for GitHub",
- icons: [{ rel: "icon", url: "/favicon.svg" }],
};
export default function RootLayout({
diff --git a/src/app/manifest.json b/src/app/manifest.json
new file mode 100644
index 0000000..6ab74c0
--- /dev/null
+++ b/src/app/manifest.json
@@ -0,0 +1,21 @@
+{
+ "name": "Gitfaster",
+ "short_name": "Gitfaster",
+ "icons": [
+ {
+ "src": "/web-app-manifest-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "/web-app-manifest-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable"
+ }
+ ],
+ "theme_color": "#ffffff",
+ "background_color": "#ffffff",
+ "display": "standalone"
+}