{"id":31760292,"url":"https://github.com/yezz123/portfolio","last_synced_at":"2025-12-30T19:48:25.030Z","repository":{"id":38266375,"uuid":"299941467","full_name":"yezz123/portfolio","owner":"yezz123","description":"My portfolio built with Next.js \u0026 shadcnUI :sparkles:","archived":false,"fork":false,"pushed_at":"2025-10-06T03:40:47.000Z","size":68263,"stargazers_count":29,"open_issues_count":3,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-06T04:02:48.089Z","etag":null,"topics":["awesome","nextjs","react","reactjs","vercel","website"],"latest_commit_sha":null,"homepage":"https://yezz.me","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/yezz123.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":"2020-09-30T14:12:50.000Z","updated_at":"2025-10-06T03:57:25.000Z","dependencies_parsed_at":"2024-02-28T00:00:26.308Z","dependency_job_id":"b7eae817-3a9f-4877-95c9-1a6888196437","html_url":"https://github.com/yezz123/portfolio","commit_stats":null,"previous_names":["yezz123/portfolio"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yezz123/portfolio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yezz123%2Fportfolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yezz123%2Fportfolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yezz123%2Fportfolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yezz123%2Fportfolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yezz123","download_url":"https://codeload.github.com/yezz123/portfolio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yezz123%2Fportfolio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002071,"owners_count":26083285,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["awesome","nextjs","react","reactjs","vercel","website"],"created_at":"2025-10-09T21:22:37.517Z","updated_at":"2025-12-30T19:48:24.991Z","avatar_url":"https://github.com/yezz123.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Yezz.me\n\nA modern, interactive portfolio website built with Next.js, Frame Motion, and ShadCN UI. Features dynamic content management through YAML and MDX files.\n\n## Features\n\n- 🎨 **Modern Design**: Beautiful, responsive design with dark/light mode support\n- 📝 **Dynamic Content**: Blog posts, projects, and talks managed through YAML/MDX\n- 📱 **Responsive**: Works perfectly on all devices\n- ⚡ **Performance**: Built with Next.js 15 and optimized for speed\n- 🔍 **SEO Optimized**: Proper metadata and Open Graph tags\n- 🎯 **Accessibility**: WCAG compliant components\n\n## Tech Stack\n\n- **Framework**: Next.js 15 with App Router\n- **Styling**: Tailwind CSS + ShadCN UI\n- **Content**: MDX + YAML\n- **Animations**: Framer Motion\n- **Icons**: Lucide React\n- **TypeScript**: Full type safety\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 20+\n- pnpm\n\n### Installation\n\n- Clone the repository:\n\n```bash\ngit clone https://github.com/yezz123/portfolio\ncd portfolio\n```\n\n- Install dependencies:\n\n```bash\npnpm install\n```\n\n- Start the development server:\n\n```bash\npnpm run dev\n```\n\n- Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n## Customization\n\n### Personal Information\n\nEdit `data/personal-info.yaml` to update your personal details:\n\n```yaml\nname: \"Your Name\"\ntitle: \"Your Title\"\nbio: \"Your short bio\"\nbioLong: |\n  Your longer bio here...\navatar: \"/images/avatar.jpg\"\nlocation: \"Your Location\"\nemail: \"your-email@example.com\"\ngithub: \"yourusername\"\ntwitter: \"yourusername\"\nlinkedin: \"yourusername\"\n```\n\n### Projects\n\nAdd your projects in `data/projects.yaml`:\n\n```yaml\n- id: \"project-id\"\n  name: \"Project Name\"\n  description: \"Project description\"\n  url: \"https://project-url.com\"\n  githubUrl: \"https://github.com/username/repo\"\n  imageUrl: \"/images/projects/project.jpg\"\n  technologies: [\"React\", \"Next.js\", \"TypeScript\"]\n  featured: true\n  pinned: true\n```\n\n### Blog Posts\n\nCreate new blog posts in `src/content/blog/` as `.mdx` files:\n\n```mdx\n---\ntitle: \"Your Blog Post Title\"\ndate: \"2024-01-15\"\nexcerpt: \"Short description of your post\"\ntags: [\"React\", \"Next.js\", \"Tutorial\"]\nfeatured: true\n---\n\n# Your Blog Post\n\nYour content here...\n```\n\n### Talks\n\nAdd new talks in `content/talks/` as `.mdx` files:\n\n```mdx\n---\ntitle: \"Your Talk Title\"\ndate: \"2024-01-15\"\nvenue: \"Conference Name\"\ndescription: \"Talk description\"\nslidesUrl: \"https://slides.com/your-slides\"\nvideoUrl: \"https://youtube.com/watch?v=example\"\nimageUrl: \"/images/talks/talk.jpg\"\ntags: [\"React\", \"JavaScript\"]\n---\n\nYour content here...\n```\n\n### Uses\n\nConfigure your setup and tools in `data/uses.yaml`:\n\n```yaml\n- category: \"desk\"\n  name: \"MacBook Pro\"\n  description: \"My main development machine\"\n  icon: \"💻\"\n\n- category: \"tools\"\n  name: \"VS Code\"\n  description: \"My code editor\"\n  url: \"https://code.visualstudio.com\"\n  icon: \"📝\"\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Submit a pull request\n\n## License\n\nMIT License - feel free to use this template for your own portfolio!\n\n## Support\n\nIf you have questions or need help customizing the portfolio:\n\n- Create an issue on GitHub\n- Review the example content files\n\n---\n\nBuilt with ❤️ using Next.js, Tailwind CSS, and modern web technologies.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyezz123%2Fportfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyezz123%2Fportfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyezz123%2Fportfolio/lists"}