{"id":23741396,"url":"https://github.com/jhenbertgit/next-portfolio","last_synced_at":"2026-03-05T08:30:23.930Z","repository":{"id":269269843,"uuid":"906910913","full_name":"jhenbertgit/next-portfolio","owner":"jhenbertgit","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-27T11:03:11.000Z","size":4735,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-31T10:55:45.459Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jhenbertgit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-12-22T09:27:30.000Z","updated_at":"2024-12-27T11:03:15.000Z","dependencies_parsed_at":"2024-12-22T10:26:33.551Z","dependency_job_id":"89ee6184-1cbc-4632-b216-aef20f22e440","html_url":"https://github.com/jhenbertgit/next-portfolio","commit_stats":null,"previous_names":["jhenbertgit/next-portfolio"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhenbertgit%2Fnext-portfolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhenbertgit%2Fnext-portfolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhenbertgit%2Fnext-portfolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhenbertgit%2Fnext-portfolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jhenbertgit","download_url":"https://codeload.github.com/jhenbertgit/next-portfolio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239889024,"owners_count":19713702,"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":[],"created_at":"2024-12-31T10:56:06.450Z","updated_at":"2026-03-05T08:30:23.835Z","avatar_url":"https://github.com/jhenbertgit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Portfolio Website\n\nThis is my portfolio website.\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Node.js (v18.0.0 or higher)\n- npm or yarn or pnpm\n- Git\n\n### Environment Setup\n\n1. Clone the repository\n\n```bash\ngit clone https://github.com/jhenbertgit/next-portfolio.git\ncd next-portfolio\n```\n\n2. Install dependencies\n\n```bash\nnpm install\n# or\nyarn install\n# or\npnpm install\n```\n\n3. Set up environment variables\n\n```bash\ncp .env.example .env.local\n```\n\nEdit `.env.local` with your configuration values.\n\n4. Start development server\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n```\n\nThe application will be available at [http://localhost:3000](http://localhost:3000)\n\n## 🛠 Development Guide\n\n### Project Structure\n\n```\n├── public/              # Static files\n├── src/\n│   ├── app/             # Next.js 13+ App Router\n│   │   ├── api/         # API routes\n│   │   ├── globals.css  # Global styles\n│   │   ├── layout.tsx   # Layout component\n│   │   ├── page.tsx     # Page component\n│   ├── components/      # Shared components\n│   ├── lib/             # Utility functions\n```\n\n### Key Technologies\n\n- Next.js 13+\n- TypeScript\n- Tailwind CSS\n\n### Coding Standards\n\n- Use TypeScript for type safety\n- Follow ESLint configuration\n- Use Prettier for code formatting\n- Follow component naming convention: `PascalCase.tsx`\n\n### Common Commands\n\n```bash\n# Development\nnpm run dev         # Start development server\n\n# Testing\nnpm run test       # Run tests\nnpm run test:watch # Run tests in watch mode\n\n# Linting\nnpm run lint       # Run ESLint\nnpm run format     # Run Prettier\n\n# Building\nnpm run build      # Create production build\nnpm start         # Start production server\n```\n\n### Git Workflow\n\n1. Create feature branch from `main`\n\n```bash\ngit checkout -b feature/your-feature-name\n```\n\n2. Make your changes and commit using conventional commits\n\n```bash\ngit commit -m \"feat: add new feature\"\ngit commit -m \"fix: resolve bug issue\"\n```\n\n3. Push changes and create Pull Request\n\n```bash\ngit push origin feature/your-feature-name\n```\n\n## 🔧 Configuration\n\n### Environment Variables\n\nRequired environment variables:\n\n```\nRESEND_API_KEY=\nNEXT_PUBLIC_FROM_EMAIL=\nNEXT_PUBLIC_TO_EMAIL=\n```\n\n### API Integration\n\n- API documentation available at [resend](https://resend.com/docs/introduction)\n\n## 🐛 Troubleshooting\n\nCommon issues and solutions:\n\n1. **Port 3000 already in use**\n\n```bash\nkill -9 $(lsof -t -i:3000)\n# or\nnpm run dev -- -p 3001\n```\n\n2. **Node modules issues**\n\n```bash\nrm -rf node_modules\nrm package-lock.json\nnpm install\n```\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](/LICENSE.md) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhenbertgit%2Fnext-portfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjhenbertgit%2Fnext-portfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhenbertgit%2Fnext-portfolio/lists"}