diff --git a/Dockerfile b/Dockerfile
index 2985481..a5f8f00 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,7 +25,6 @@ RUN sed -i 's/\r$//g' docker-entrypoint.sh && \
rm -rf /var/cache/apk/* && \
mkdir /.cache && chmod 777 /.cache
-COPY favicon ./favicon
COPY app ./app
COPY --from=builder /metube/dist/metube ./ui/dist/metube
diff --git a/app/main.py b/app/main.py
index 1c1cbf6..f77181c 100644
--- a/app/main.py
+++ b/app/main.py
@@ -207,7 +207,6 @@ if config.URL_PREFIX != '/':
def index_redirect_dir(request):
return web.HTTPFound(config.URL_PREFIX)
-routes.static(config.URL_PREFIX + 'favicon/', os.path.join(config.BASE_DIR, 'favicon'))
routes.static(config.URL_PREFIX + 'download/', config.DOWNLOAD_DIR, show_index=config.DOWNLOAD_DIRS_INDEXABLE)
routes.static(config.URL_PREFIX + 'audio_download/', config.AUDIO_DOWNLOAD_DIR, show_index=config.DOWNLOAD_DIRS_INDEXABLE)
routes.static(config.URL_PREFIX, os.path.join(config.BASE_DIR, 'ui/dist/metube'))
diff --git a/favicon/README.md b/favicon/README.md
deleted file mode 100644
index 439e228..0000000
--- a/favicon/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# Your Favicon Package
-
-This package was generated with [RealFaviconGenerator](https://realfavicongenerator.net/) [v0.16](https://realfavicongenerator.net/change_log#v0.16)
-
-## Install instructions
-
-To install this package:
-
-Extract this package in <web site>/favicon/. If your site is http://www.example.com, you should be able to access a file named http://www.example.com/favicon/favicon.ico.
-
-Insert the following code in the `head` section of your pages:
-
-
-
-
-
-
-
-
-
-
-
-*Optional* - Check your favicon with the [favicon checker](https://realfavicongenerator.net/favicon_checker)
\ No newline at end of file
diff --git a/favicon/android-chrome-192x192.png b/favicon/android-chrome-192x192.png
deleted file mode 100644
index bc22269..0000000
Binary files a/favicon/android-chrome-192x192.png and /dev/null differ
diff --git a/favicon/android-chrome-384x384.png b/favicon/android-chrome-384x384.png
deleted file mode 100644
index abd6b9d..0000000
Binary files a/favicon/android-chrome-384x384.png and /dev/null differ
diff --git a/favicon/html_code.html b/favicon/html_code.html
deleted file mode 100644
index 411b55b..0000000
--- a/favicon/html_code.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/favicon/site.webmanifest b/favicon/site.webmanifest
deleted file mode 100644
index a476f60..0000000
--- a/favicon/site.webmanifest
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "",
- "short_name": "",
- "icons": [
- {
- "src": "android-chrome-192x192.png",
- "sizes": "192x192",
- "type": "image/png"
- },
- {
- "src": "android-chrome-384x384.png",
- "sizes": "384x384",
- "type": "image/png"
- }
- ],
- "theme_color": "#ffffff",
- "background_color": "#ffffff",
- "display": "standalone"
-}
diff --git a/favicon/apple-touch-icon.png b/ui/src/assets/icons/apple-touch-icon.png
similarity index 100%
rename from favicon/apple-touch-icon.png
rename to ui/src/assets/icons/apple-touch-icon.png
diff --git a/favicon/browserconfig.xml b/ui/src/assets/icons/browserconfig.xml
similarity index 100%
rename from favicon/browserconfig.xml
rename to ui/src/assets/icons/browserconfig.xml
diff --git a/favicon/favicon-16x16.png b/ui/src/assets/icons/favicon-16x16.png
similarity index 100%
rename from favicon/favicon-16x16.png
rename to ui/src/assets/icons/favicon-16x16.png
diff --git a/favicon/favicon-32x32.png b/ui/src/assets/icons/favicon-32x32.png
similarity index 100%
rename from favicon/favicon-32x32.png
rename to ui/src/assets/icons/favicon-32x32.png
diff --git a/favicon/favicon.ico b/ui/src/assets/icons/favicon.ico
similarity index 100%
rename from favicon/favicon.ico
rename to ui/src/assets/icons/favicon.ico
diff --git a/favicon/mstile-150x150.png b/ui/src/assets/icons/mstile-150x150.png
similarity index 100%
rename from favicon/mstile-150x150.png
rename to ui/src/assets/icons/mstile-150x150.png
diff --git a/favicon/safari-pinned-tab.svg b/ui/src/assets/icons/safari-pinned-tab.svg
similarity index 100%
rename from favicon/safari-pinned-tab.svg
rename to ui/src/assets/icons/safari-pinned-tab.svg
diff --git a/ui/src/favicon.ico b/ui/src/favicon.ico
index 997406a..82ba7a5 100644
Binary files a/ui/src/favicon.ico and b/ui/src/favicon.ico differ
diff --git a/ui/src/index.html b/ui/src/index.html
index f620859..4e03924 100644
--- a/ui/src/index.html
+++ b/ui/src/index.html
@@ -4,13 +4,13 @@