From a47c40723bdead7a9f733c54f85a55a4ab033111 Mon Sep 17 00:00:00 2001 From: Mehmet Kahya Date: Wed, 15 Jan 2025 18:48:28 +0300 Subject: [PATCH] Remove legacy files and update paths for improved structure - Deleted api.js, config.js, style.css, and theme.js to streamline the project and remove unused code. - Updated index.html to reflect new file paths for CSS and JavaScript, enhancing organization and maintainability. - Ensured all references to removed files are cleaned up to prevent errors and improve loading efficiency. --- style.css => css/style.css | 0 index.html | 8 ++++---- api.js => js/api.js | 0 config.js => js/config.js | 0 theme.js => js/theme.js | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename style.css => css/style.css (100%) rename api.js => js/api.js (100%) rename config.js => js/config.js (100%) rename theme.js => js/theme.js (100%) diff --git a/style.css b/css/style.css similarity index 100% rename from style.css rename to css/style.css diff --git a/index.html b/index.html index 01bd63b..b972274 100644 --- a/index.html +++ b/index.html @@ -37,7 +37,7 @@ - + @@ -254,9 +254,9 @@ alert("Hello, If you see the failed to load message, please clicked the 'New Address' button multiple times. If you see the failed to load message again, please contact me on GitHub or LinkedIn. Thank you for using my project. ❤️. I'm still developing this project. "); - - - + + + \ No newline at end of file diff --git a/api.js b/js/api.js similarity index 100% rename from api.js rename to js/api.js diff --git a/config.js b/js/config.js similarity index 100% rename from config.js rename to js/config.js diff --git a/theme.js b/js/theme.js similarity index 100% rename from theme.js rename to js/theme.js