{"id":51285234,"url":"https://github.com/monntecc/monnte.cc","last_synced_at":"2026-06-30T05:01:24.791Z","repository":{"id":333689334,"uuid":"1138309606","full_name":"monntecc/monnte.cc","owner":"monntecc","description":"Source code of my landing portfolio page","archived":false,"fork":false,"pushed_at":"2026-01-20T14:11:26.000Z","size":84,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2026-01-20T22:46:06.173Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://monnte.cc/","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/monntecc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2026-01-20T14:06:23.000Z","updated_at":"2026-01-20T14:12:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/monntecc/monnte.cc","commit_stats":null,"previous_names":["monntecc/monnte.cc"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/monntecc/monnte.cc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monntecc%2Fmonnte.cc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monntecc%2Fmonnte.cc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monntecc%2Fmonnte.cc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monntecc%2Fmonnte.cc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/monntecc","download_url":"https://codeload.github.com/monntecc/monnte.cc/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monntecc%2Fmonnte.cc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34952850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"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":[],"created_at":"2026-06-30T05:01:24.031Z","updated_at":"2026-06-30T05:01:24.784Z","avatar_url":"https://github.com/monntecc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# monnte.cc\n\nPersonal portfolio website built with Next.js, featuring a minimalist x.ai-inspired design.\n\n## Tech Stack\n\n- **Framework**: Next.js 16 (App Router)\n- **Language**: TypeScript\n- **Styling**: Tailwind CSS 4 + Custom CSS\n- **Fonts**: Inter, Geist Mono\n- **Deployment**: Static Export\n\n## Features\n\n- Minimalist black/white design inspired by x.ai\n- Scroll-triggered animations using Intersection Observer\n- Dynamic experience data loaded from JSON\n- Responsive layout for all devices\n- Skeleton loading states\n- SEO optimized with meta tags\n\n## Getting Started\n\n```bash\n# Install dependencies\nnpm install\n\n# Run development server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run start\n```\n\nOpen [http://localhost:3000](http://localhost:3000) to view the site.\n\n## Project Structure\n\n```\n├── public/\n│   └── data/\n│       └── experiences.json    # Work experience data\n├── src/\n│   ├── app/\n│   │   ├── globals.css         # Global styles \u0026 animations\n│   │   ├── layout.tsx          # Root layout with fonts\n│   │   └── page.tsx            # Home page\n│   ├── components/\n│   │   ├── AnimateOnScroll.tsx # Scroll animation wrapper\n│   │   ├── BackgroundCanvas.tsx# Subtle grid background\n│   │   ├── Contact.tsx         # Contact links section\n│   │   ├── Experience.tsx      # Work experience timeline\n│   │   ├── Footer.tsx          # Footer component\n│   │   ├── Hero.tsx            # Hero section with profile\n│   │   ├── Stats.tsx           # Statistics section\n│   │   └── TechStack.tsx       # Skills/technologies grid\n│   └── types/\n│       └── experience.ts       # TypeScript types\n└── next.config.ts              # Next.js configuration\n```\n\n## Customization\n\n### Update Experience Data\n\nEdit `public/data/experiences.json` to update your work history:\n\n```json\n{\n  \"experiences\": [\n    {\n      \"id\": 1,\n      \"title\": \"Job Title\",\n      \"company\": \"Company Name\",\n      \"employmentType\": \"Full-time\",\n      \"location\": \"Location\",\n      \"period\": {\n        \"start\": \"Month Year\",\n        \"end\": null\n      },\n      \"current\": true,\n      \"responsibilities\": [\"Task 1\", \"Task 2\"],\n      \"technologies\": [\"Tech 1\", \"Tech 2\"]\n    }\n  ]\n}\n```\n\n### Update Personal Info\n\n- **Hero**: Edit `src/components/Hero.tsx`\n- **Stats**: Edit `src/components/Stats.tsx`\n- **Tech Stack**: Edit `src/components/TechStack.tsx`\n- **Contact Links**: Edit `src/components/Contact.tsx`\n- **Metadata**: Edit `src/app/layout.tsx`\n\n### Update Styling\n\n- **Colors**: CSS variables in `src/app/globals.css` (`:root` section)\n- **Animations**: Keyframes in `src/app/globals.css`\n\n## Deployment\n\nThe project is configured for static export. Build output is in the `out/` directory.\n\n```bash\nnpm run build\n```\n\nDeploy to any static hosting:\n- **Vercel**: Connect repo for automatic deployments\n- **Netlify**: Drag \u0026 drop `out/` folder or connect repo\n- **GitHub Pages**: Push `out/` contents to `gh-pages` branch\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonntecc%2Fmonnte.cc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonntecc%2Fmonnte.cc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonntecc%2Fmonnte.cc/lists"}