{"id":38515562,"url":"https://github.com/jbcom/jbcom.github.io","last_synced_at":"2026-02-25T02:17:13.489Z","repository":{"id":329231632,"uuid":"1117456259","full_name":"jbcom/jbcom.github.io","owner":"jbcom","description":"jbcom ecosystem showcase - jonbogaty.com | Professional portfolio, OSS packages, demos, and API documentation","archived":false,"fork":false,"pushed_at":"2025-12-20T18:52:12.000Z","size":1178,"stargazers_count":0,"open_issues_count":15,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-21T14:59:50.157Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jbcom.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":".github/CODEOWNERS","security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-16T10:39:11.000Z","updated_at":"2025-12-20T05:16:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jbcom/jbcom.github.io","commit_stats":null,"previous_names":["jbcom/jbcom.github.io"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jbcom/jbcom.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fjbcom.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fjbcom.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fjbcom.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fjbcom.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbcom","download_url":"https://codeload.github.com/jbcom/jbcom.github.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fjbcom.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28502291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T04:31:57.058Z","status":"ssl_error","status_checked_at":"2026-01-17T04:31:45.816Z","response_time":85,"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":[],"created_at":"2026-01-17T06:28:54.480Z","updated_at":"2026-01-17T06:28:54.553Z","avatar_url":"https://github.com/jbcom.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jbcom.github.io\n\n\u003e Jon Bogaty's professional portfolio and jbcom ecosystem showcase\n\n## 🎯 Purpose\n\nThis site serves as:\n1. **Professional Portfolio** - Resume, skills, experience\n2. **Ecosystem Directory** - All jbcom packages with links to their repos\n3. **Static Site** - Fast, accessible, zero JavaScript required\n\n## 🏗️ Architecture: Static-First\n\nThis is a **pure static site** built for GitHub Pages. No React, no build tools, just HTML/CSS.\n\n```\n/\n├── content/              # Content as source (markdown/YAML)\n│   ├── resume.md        # Resume source\n│   ├── about.md         # About page content\n│   ├── vision.md        # Ecosystem vision\n│   └── ecosystem.yml    # 20+ packages with metadata\n├── templates/           # Pandoc templates for resume generation\n│   └── resume-pdf.html  # PDF generation template\n├── assets/\n│   └── css/\n│       └── style.css    # Complete design system implementation\n├── *.html               # Static HTML pages\n└── .github/workflows/\n    └── deploy.yml       # Build \u0026 deploy (generates PDF/DOCX)\n```\n\n### Build Process\n\n1. **Content** - All content stored as markdown or YAML\n2. **Generation** - GitHub Actions generates PDF/DOCX from markdown via pandoc\n3. **Deployment** - Static HTML/CSS deployed to GitHub Pages\n\n**No JavaScript required** for core functionality. Fast page loads (\u003c1s).\n\n## 🎨 Design System\n\n### Colors\n- **Background**: Deep slate (#020617)\n- **Surface**: Slate panels with glassmorphism (#0f172a)\n- **Primary**: Cyan/Teal (#0ea5e9)\n- **Secondary**: Deep blue (#3170aa)\n- **Accent**: Purple (#7c3aed)\n\n### Typography\n- **Headings**: Space Grotesk - bold, technical, modern\n- **Body**: Inter - clean, readable, professional\n- **Code**: JetBrains Mono - monospace, developer-friendly\n\n### Components\n- Glassmorphic cards with backdrop blur\n- Gradient accents on hover states\n- Responsive grid layouts\n- Mobile bottom navigation\n\n## 📱 Responsive Design\n\n| Breakpoint | Layout |\n|------------|--------|\n| xs (0-599px) | Bottom nav, single column |\n| sm (600-899px) | Collapsible drawer, 2 columns |\n| md (900-1199px) | Persistent sidebar, 2-3 columns |\n| lg (1200px+) | Full sidebar, 3+ columns |\n\n## 🚀 Development\n\n```bash\n# Install dependencies\nnpm install\n\n# Start dev server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run preview\n\n# Deploy to GitHub Pages\nnpm run deploy\n```\n\n## 📁 Structure\n\n```\nsrc/\n├── components/\n│   ├── Layout.tsx           # Main layout with responsive sidebar\n│   └── StrataBackground.tsx # The 3D layered background\n├── data/\n│   └── ecosystem.ts         # Package catalog\n├── pages/\n│   ├── HomePage.tsx         # Landing with hero\n│   ├── AboutPage.tsx        # Bio and skills\n│   ├── EcosystemPage.tsx    # Package directory\n│   ├── ProjectPage.tsx      # Individual package\n│   └── DemosPage.tsx        # Interactive strata demos\n├── theme.ts                 # Material UI theme\n├── main.tsx                 # Entry point\n└── App.tsx                  # Router and layer composition\n```\n\n## 🐕 Dogfooding\n\nThis site demonstrates what strata can do:\n- The animated background uses strata components\n- The demos page showcases interactive scenes\n- All 3D is powered by React Three Fiber\n\nThe best way to show what a library can do is to use it.\n\n## 📦 Tech Stack\n\n- **React 18** - UI framework\n- **TypeScript** - Type safety\n- **Vite** - Build tool\n- **Material UI 5** - Component library\n- **React Router 6** - Navigation\n- **React Three Fiber** - 3D rendering\n- **React Three Drei** - R3F helpers\n\n## 📄 License\n\nMIT © Jon Bogaty\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbcom%2Fjbcom.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbcom%2Fjbcom.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbcom%2Fjbcom.github.io/lists"}