Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Live at: [https://josapton.github.io](https://josapton.github.io)
- **System Robustness**: Implemented a global React `ErrorBoundary` (Kernel Panic UI), an `OfflineBanner` for PWA state awareness, and strict `Content-Security-Policy` headers.
- **Command Palette**: Press `Ctrl/Cmd + K` for a quick navigation and action menu (with clipboard integration).
- **Theme Manager**: 3-state Context-based Theme Manager (Dark, Light, System Preference).
- **Real-Time GitHub Stats**: Fetches live repository and star counts from the GitHub API with local caching.
- **Dynamic GitHub Stats via CI/CD**: Uses a custom GitHub Actions pipeline to fetch deep metrics and language breakdowns at build-time, injecting them statically without exposing API tokens or hitting rate limits on the client side.
- **Bilingual (i18n)**: Full English (EN) and Indonesian (ID) support with seamless context-based switching.
- **Optimized PWA & SEO**: Structured JSON-LD data, Apple web app meta tags, robust accessibility (ARIA roles), and Service Worker caching.
- **Dynamic Routing**: Built with `react-router-dom` using `BrowserRouter` and GitHub Pages SPA fallback.
Expand Down
Binary file added public/icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<loc>https://josapton.github.io/portfolio</loc>
<priority>0.8</priority>
</url>
<url>
<loc>https://josapton.github.io/about</loc>
<priority>0.8</priority>
</url>
<url>
<loc>https://josapton.github.io/contact</loc>
<priority>0.7</priority>
Expand Down
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ export default defineConfig({
purpose: 'any maskable'
},
{
src: 'favicon.png',
src: 'icon-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'any maskable'
},
{
src: 'favicon.png',
src: 'icon-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable'
Expand Down
Loading