Imagino is a modern, AI-powered web app that lets users generate unique Images simply by entering a text prompt. It also features user authentication and a profile page to manage generated content. Designed with a clean UI and smooth experience, Imagino is the creative tool you didnโt know you needed.
- ๐ Authentication โ Secure login/signup to access personalized features.
- ๐ง AI Images Generator โ Generate logos with AI using prompt-based inputs.
- ๐ค User Image โ View your Images and manage generated Images.
- ๐ Responsive UI with Dark Mode โ Fully responsive design using Tailwind CSS.
| Frontend | Backend | API | Auth |
|---|---|---|---|
| React | Node.js + Express | ClipDrop API | JWT / Local Auth |
- Node.js (v18+ recommended)
- npm or yarn
git clone https://github.com/your-username/imagino.git
cd imagino
# For frontend
cd client
npm install
# For backend
cd ../server
npm install
# Run backend
cd server
npm run dev
# Run frontend in another terminal
cd ../client
npm run dev