diff --git a/README.md b/README.md index 76c299b..039bb31 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ A powerful client-side AI image generation tool using OpenRouter API. Generate thumbnails, artwork, and creative images with multiple state-of-the-art models. -![Imagen UI](UI.webp) -![Imagen UI-1](UI-1.webp) +![Imagen UI](assets/UI.webp) +![Imagen UI-1](assets/UI-1.webp) ## ✨ Features @@ -91,10 +91,10 @@ This is a **100% client-side application**: ``` imagen/ -├── index.html # Main UI structure -├── styles.css # Premium dark theme styling -├── app.js # Core logic + API integration -└── README.md # This file +├── src/ # Source code (JS/CSS) +├── assets/ # Images and design assets +├── index.html # Main entry point +└── README.md # Documentation ``` ## 📜 License diff --git a/UI-1.webp b/assets/UI-1.webp similarity index 100% rename from UI-1.webp rename to assets/UI-1.webp diff --git a/UI.webp b/assets/UI.webp similarity index 100% rename from UI.webp rename to assets/UI.webp diff --git a/index.html b/index.html index ca68199..eba1d23 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ Imagen - + @@ -161,7 +161,7 @@ - + \ No newline at end of file diff --git a/app.js b/src/app.js similarity index 100% rename from app.js rename to src/app.js diff --git a/styles.css b/src/styles.css similarity index 100% rename from styles.css rename to src/styles.css