{"id":23955645,"url":"https://github.com/aditya1or0/gemini-clone","last_synced_at":"2026-05-07T16:42:11.530Z","repository":{"id":271201684,"uuid":"911187596","full_name":"Aditya1or0/gemini-clone","owner":"Aditya1or0","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-06T07:47:07.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T10:45:21.026Z","etag":null,"topics":["gemini-clone"],"latest_commit_sha":null,"homepage":"https://gemini-clone-puce.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Aditya1or0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-02T12:45:54.000Z","updated_at":"2025-01-25T13:00:01.000Z","dependencies_parsed_at":"2025-01-06T08:49:04.874Z","dependency_job_id":null,"html_url":"https://github.com/Aditya1or0/gemini-clone","commit_stats":null,"previous_names":["aditya1or0/gemini-clone"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Aditya1or0/gemini-clone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fgemini-clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fgemini-clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fgemini-clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fgemini-clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aditya1or0","download_url":"https://codeload.github.com/Aditya1or0/gemini-clone/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fgemini-clone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32746662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gemini-clone"],"created_at":"2025-01-06T15:51:20.314Z","updated_at":"2026-05-07T16:42:11.511Z","avatar_url":"https://github.com/Aditya1or0.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gemini Clone 🤖\n\nA React-based clone of Google's Gemini AI interface, built with modern web technologies and styled using Tailwind CSS.\n\n## 🌟 Features\n\n- Real-time AI responses using the Gemini API\n- Clean and responsive user interface\n- Chat history management\n- Code highlighting for programming responses\n- Markdown support for formatted text\n- Mobile-friendly design\n\n## 🛠️ Tech Stack\n\n- **Frontend Framework:** React.js\n- **Styling:** Tailwind CSS\n- **API Integration:** Google Gemini API\n- **Markdown Support:** React-Markdown\n- **Build Tool:** Vite\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js (v16 or higher)\n- npm or yarn\n- Google Cloud Platform account\n- Gemini API key\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/Aditya1or0/gemini-clone.git\ncd gemini-clone\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Create a `.env` file in the root directory:\n\n```env\nVITE_GEMINI_API_KEY=your_api_key_here\n```\n\n4. Start the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nThe application will be available at `http://localhost:5173`\n\n## 📝 Environment Variables\n\nCreate a `.env` file with the following variables:\n\n```env\nVITE_GEMINI_API_KEY=your_api_key_here\n```\n\n## 🔧 Configuration\n\n### Gemini API Setup\n\n1. Visit the [Google Cloud Console](https://console.cloud.google.com)\n2. Create a new project or select an existing one\n3. Enable the Gemini API\n4. Create API credentials\n5. Copy the API key to your `.env` file\n\n## 📦 Project Structure\n\n```\n└── Aditya1or0-gemini-clone/\n    ├── README.md\n    ├── eslint.config.js\n    ├── index.html\n    ├── package.json\n    ├── vite.config.js\n    ├── public/\n    └── src/\n        ├── App.jsx\n        ├── index.css\n        ├── main.jsx\n        ├── assets/\n        │   └── assets.js\n        ├── components/\n        │   ├── Main/\n        │   │   ├── Main.css\n        │   │   └── Main.jsx\n        │   └── Sidebar/\n        │       ├── Sidebar.css\n        │       └── Sidebar.jsx\n        ├── config/\n        │   └── gemini.js\n        └── context/\n            └── Context.jsx\n```\n\n### Directory Structure Explanation\n\n- `src/components/`: Contains the main UI components\n  - `Main/`: Houses the main chat interface\n  - `Sidebar/`: Contains the sidebar navigation and chat history\n- `src/config/`: Contains configuration files for the Gemini API\n- `src/context/`: Contains React context for state management\n- `src/assets/`: Stores static assets and asset utilities\n\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- Google Gemini API team for providing the API\n- React.js community for excellent documentation\n- Tailwind CSS team for the amazing styling framework\n\n## 📞 Contact\n\nAditya - [@Aditya1or0](https://github.com/Aditya1or0)\n\nProject Link: [https://github.com/Aditya1or0/gemini-clone](https://github.com/Aditya1or0/gemini-clone)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya1or0%2Fgemini-clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faditya1or0%2Fgemini-clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya1or0%2Fgemini-clone/lists"}