{"id":27304201,"url":"https://github.com/rrishiddh/image-gallery-nextjs","last_synced_at":"2026-04-13T16:32:51.090Z","repository":{"id":287363591,"uuid":"964486115","full_name":"rrishiddh/image-gallery-nextjs","owner":"rrishiddh","description":"A simple image gallery web application with upload and delete functionality, built using AI with Next.js, TypeScript and Material UI.","archived":false,"fork":false,"pushed_at":"2025-04-11T10:13:51.000Z","size":76,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T11:50:53.630Z","etag":null,"topics":["cloudinary-integration","material-ui","nextjs","reacthooks","typescript"],"latest_commit_sha":null,"homepage":"https://image-gallery-nextjs-rrishiddh.vercel.app","language":"TypeScript","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/rrishiddh.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,"zenodo":null}},"created_at":"2025-04-11T09:37:32.000Z","updated_at":"2025-04-11T10:13:53.000Z","dependencies_parsed_at":"2025-04-11T11:50:56.814Z","dependency_job_id":"a792255d-3890-44ce-ad0f-2d2c0b3759e6","html_url":"https://github.com/rrishiddh/image-gallery-nextjs","commit_stats":null,"previous_names":["rrishiddh/image-gallery-nextjs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrishiddh%2Fimage-gallery-nextjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrishiddh%2Fimage-gallery-nextjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrishiddh%2Fimage-gallery-nextjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrishiddh%2Fimage-gallery-nextjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rrishiddh","download_url":"https://codeload.github.com/rrishiddh/image-gallery-nextjs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248510752,"owners_count":21116262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cloudinary-integration","material-ui","nextjs","reacthooks","typescript"],"created_at":"2025-04-12T03:23:01.265Z","updated_at":"2026-04-13T16:32:46.025Z","avatar_url":"https://github.com/rrishiddh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NextGen Image Gallery\n\nA simple image gallery web application with upload and delete functionality, built using AI with Next.js, TypeScript and Material UI.\n\n## Live Demo\n\n[Live Demo](https://image-gallery-nextjs-rrishiddh.vercel.app/)\n\n## GitHub Repository\n\n[GitHub Repository](https://github.com/rrishiddh/image-gallery-nextjs)\n\n## Features\n\n- Upload single/multiple images using Cloudinary\n- Display uploaded images in a responsive grid\n- Click on images to open a larger preview\n- Delete images with confirmation popup\n- Pagination with \"Load More\" button\n- Search functionality to filter images by title or tags\n- Fully responsive design\n- Basic header and footer with Material UI\n\n## Technologies Used\n\n- **Next.js 15**\n- **TypeScript**\n- **Material UI** \n- **Cloudinary** \n- **React Hooks**\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js \n- npm or yarn\n- Cloudinary account\n\n### Installation\n\n1. Clone the repository\n   ```bash\n   git clone https://github.com/yourusername/image-gallery.git\n   cd image-gallery\n   ```\n\n2. Install dependencies\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. Create a `.env.local` file in the root directory with your Cloudinary credentials\n   ```\n   NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=your_cloudinary_cloud_name\n   CLOUDINARY_API_KEY=your_cloudinary_api_key\n   CLOUDINARY_API_SECRET=your_cloudinary_api_secret\n   ```\n\n4. Set up Cloudinary upload preset\n   - Log in to your Cloudinary dashboard\n   - Go to Settings \u003e Upload\n   - Scroll down to \"Upload presets\"\n   - Click \"Add upload preset\"\n   - Set \"Mode\" to \"Unsigned\"\n   - Set \"Preset name\" to \"gallery_upload\"\n   - Save the preset\n\n5. Run the development server\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n6. Open [http://localhost:3000](http://localhost:3000) in your browser to see the application\n\n## Project Structure\n\n```\nsrc/\n├── app/\n│   ├── api/\n│   │   ├── images/\n│   │   │   ├── route.ts         # API routes for images\n│   ├── components/\n│   │   ├── Header.tsx           # Header component\n│   │   ├── Footer.tsx           # Footer component\n│   │   ├── ImageGrid.tsx        # Grid to display images\n│   │   ├── ImageModal.tsx       # Modal for image preview\n│   │   ├── UploadButton.tsx     # Button to upload images\n│   │   ├── DeleteConfirmation.tsx # Confirmation dialog\n│   │   ├── SearchBar.tsx        # Search functionality\n│   ├── layout.tsx               # Root layout\n│   ├── page.tsx                 # Home page\n├── utils/\n│   ├── cloudinary.ts            # Cloudinary utilities\n├── types/\n│   ├── image.ts                 # Type definitions\n```\n\n## Building for Production\n\nTo build the application for production, run:\n\n```bash\nnpm run build\n# or\nyarn build\n```\n\nThen, to start the production server:\n\n```bash\nnpm start\n# or\nyarn start\n```\n\n## Notes for Development\n\n- This project uses Next.js App Router for routing\n- Material UI is used for the UI components\n- Images are stored and managed using Cloudinary\n- The application is fully responsive and works on all device sizes\n\n## Future Improvements\n\n- Add user authentication\n- Add image categorization and collections\n- Add image editing functionality\n- Implement drag and drop for image uploads\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrishiddh%2Fimage-gallery-nextjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frrishiddh%2Fimage-gallery-nextjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrishiddh%2Fimage-gallery-nextjs/lists"}