From c3ad7743e693e8b64eb4eeabcc018eeeaea9b60c Mon Sep 17 00:00:00 2001 From: AmanTahiliani Date: Fri, 3 Jul 2026 01:13:39 -0400 Subject: [PATCH] feat(web): add F1-themed favicon, fonts, and PWA polish --- frontend/index.html | 23 +++++++++++++++++++++-- frontend/public/manifest.json | 15 +++++++++++++++ frontend/src/styles/app.css | 2 +- 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 frontend/public/manifest.json diff --git a/frontend/index.html b/frontend/index.html index 70677b4..56d22cb 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2,9 +2,28 @@ - + + + + + + + + + + + + - box-box + + + + + + + + + box-box | Live F1 Dashboard
diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 0000000..a8ce2fd --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "box-box", + "name": "box-box | Live F1 Dashboard", + "icons": [ + { + "src": "/favicon.jpg", + "type": "image/jpeg", + "sizes": "192x192 512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#0d0d0d", + "background_color": "#0d0d0d" +} diff --git a/frontend/src/styles/app.css b/frontend/src/styles/app.css index eedbc9a..036c139 100644 --- a/frontend/src/styles/app.css +++ b/frontend/src/styles/app.css @@ -21,7 +21,7 @@ --tyre-inter: #39b54a; --tyre-wet: #0080ff; - --f-ui: system-ui, -apple-system, 'Segoe UI', sans-serif; + --f-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif; --f-mono: 'JetBrains Mono', 'Cascadia Code', 'Consolas', monospace; --s1: 2px; --s2: 4px; --s3: 6px; --s4: 10px;