{"id":13942186,"url":"https://github.com/hqasmei/portfolio","last_synced_at":"2026-01-31T10:31:07.753Z","repository":{"id":296719294,"uuid":"990791549","full_name":"hqasmei/portfolio","owner":"hqasmei","description":"My portfolio ✨","archived":false,"fork":false,"pushed_at":"2025-11-13T07:00:01.000Z","size":1613,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-13T07:17:19.284Z","etag":null,"topics":["react-router-v7","sst","tailwindcss"],"latest_commit_sha":null,"homepage":"https://www.hosnaqasmei.com/","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/hqasmei.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-26T16:33:57.000Z","updated_at":"2025-11-13T07:00:06.000Z","dependencies_parsed_at":"2025-06-02T00:52:56.171Z","dependency_job_id":"aa6b6fa4-97d9-41d3-ad93-cb6ce01f5840","html_url":"https://github.com/hqasmei/portfolio","commit_stats":null,"previous_names":["hqasmei/portfolio"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hqasmei/portfolio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hqasmei%2Fportfolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hqasmei%2Fportfolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hqasmei%2Fportfolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hqasmei%2Fportfolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hqasmei","download_url":"https://codeload.github.com/hqasmei/portfolio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hqasmei%2Fportfolio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28938524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T10:18:23.202Z","status":"ssl_error","status_checked_at":"2026-01-31T10:18:22.693Z","response_time":128,"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":["react-router-v7","sst","tailwindcss"],"created_at":"2024-08-08T02:01:44.481Z","updated_at":"2026-01-31T10:31:07.747Z","avatar_url":"https://github.com/hqasmei.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# React Router v7 Portfolio Template\n\nA modern, production-ready template for building portfolio websites using React Router v7 and Tailwind CSS.\n\n## Features\n\n- 🚀 Server-side rendering with React Router v7\n- 🌓 Light/Dark mode toggle\n- 📊 Responsive layouts for all devices\n- 🔄 Data loading and mutations with React Router loaders\n- 🔒 TypeScript for type safety\n- 📱 Mobile-friendly navigation with drawer\n- 🖌️ Lucide react icons for beautiful iconography\n- 📝 MDX support for blog posts\n- 🌐 SEO-friendly with dynamic meta tags\n\n## Getting Started\n\n### Installation\n\nInstall the dependencies:\n\n```bash\nnpm install\n```\n\n### Development\n\nStart the development server with HMR:\n\n```bash\nnpm run dev\n```\n\nYour application will be available at `http://localhost:3000`.\n\n## Project Structure\n\n```\n├── src/\n│   ├── components/     # Reusable UI components\n│   ├── content/        # MDX blog posts\n│   ├── lib/            # Utility functions\n│   ├── routes/         # React Router route components\n│   │   ├── root.tsx    # Root layout\n│   │   ├── home.tsx    # Homepage\n│   │   ├── posts.tsx    # Blog listing\n│   │   └── posts.$slug.tsx  # Individual blog posts\n│   └── styles/         # CSS modules forstyling\n├── public/             # Static assets\n└── package.json        # Project dependencies\n```\n\n## Building for Production\n\nCreate a production build:\n\n```bash\nnpm run build\n```\n\n## Deployment\n\n### SST Deployment\n\nFor serverless deployment using SST:\n\n```bash\nnpx sst deploy --stage prod   # Deploy to production\nnpx sst remove --stage prod   # Remove from production\n```\n\nTo set and remove secrets follow the below commands. Need to make sure you have the sst cli installed.\n\n```bash\nsst secret set NAME_OF_SECRET VALUE --stage prod\nsst secret remove NAME_OF_SECRET --stage prod\n```\n\n## Customization\n\n### Adding Blog Posts\n\nAdd new blog posts as MDX files in the `src/content` directory with frontmatter:\n\n```mdx\n---\ntitle: 'My New Blog Post'\ndate: '2025-05-15'\nauthor: 'Your Name'\nsummary: 'A brief summary of the post'\ntags: ['react', 'web development']\n---\n\n# Content goes here\n\nYour markdown content...\n```\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhqasmei%2Fportfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhqasmei%2Fportfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhqasmei%2Fportfolio/lists"}