Initialize Black 7 PWA with React, Vite, and app icons

Sets up Vite + React + TypeScript with vite-plugin-pwa for offline support.
Adds app icon (line-drawn 7 on black) in all required sizes with a generation script.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-26 19:30:46 -05:00
commit a09e8dac7f
16 changed files with 6430 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
export default function App() {
return (
<div>
<h1>Black 7</h1>
</div>
)
}
+9
View File
@@ -0,0 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
)