semantic bufo search find-bufo.com
bufo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add iOS home screen icon and PWA manifest support

adds apple-touch-icon meta tags and web app manifest to enable proper
icon display when users add the site to their iOS home screen. includes
theme color metadata for better PWA experience.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

zzstoatzz 0761e9ff aa8e775a

+20
+3
static/index.html
··· 5 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 6 <title>find bufo</title> 7 7 <link rel="icon" type="image/png" href="/static/favicon.png"> 8 + <link rel="apple-touch-icon" href="/static/favicon.png"> 9 + <link rel="manifest" href="/static/manifest.json"> 10 + <meta name="theme-color" content="#8ba888"> 8 11 <style> 9 12 * { 10 13 margin: 0;
+17
static/manifest.json
··· 1 + { 2 + "name": "find bufo", 3 + "short_name": "find bufo", 4 + "description": "hybrid search for bufo.zone", 5 + "start_url": "/", 6 + "display": "standalone", 7 + "background_color": "#8ba888", 8 + "theme_color": "#8ba888", 9 + "icons": [ 10 + { 11 + "src": "/static/favicon.png", 12 + "sizes": "112x112", 13 + "type": "image/png", 14 + "purpose": "any maskable" 15 + } 16 + ] 17 + }