Skip to content

Commit 556489c

Browse files
sebyx07claude
andcommitted
Add favicon and web manifest for documentation site
- Generate custom favicon with 'B' letter and database accent - Create multiple sizes: 32x32 (ico), 192x192, 512x512 (png) - Add Apple touch icon (180x180) - Create web manifest for PWA support - Update index.template.html with all favicon links - Use Bootswatch Darkly theme colors (#375a7f, #00bc8c) Favicon features: - Blue rounded square background (#375a7f) - White bold 'B' letter - Green database line accent (#00bc8c) - Multiple sizes for browser compatibility 🤖 Generated with Claude Code https://claude.com/claude-code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5d64a47 commit 556489c

6 files changed

Lines changed: 28 additions & 0 deletions

File tree

site/public/apple-touch-icon.png

9.02 KB
Loading

site/public/favicon-192.png

9.44 KB
Loading

site/public/favicon-512.png

40.3 KB
Loading

site/public/favicon.ico

4.19 KB
Binary file not shown.

site/public/index.template.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@
1313

1414
<title>BetterStructureSql - Use SQL Databases to the Fullest</title>
1515

16+
<!-- Favicons -->
1617
<link rel="icon" type="image/x-icon" href="/better_structure_sql/favicon.ico" />
18+
<link rel="icon" type="image/png" sizes="192x192" href="/better_structure_sql/favicon-192.png" />
19+
<link rel="icon" type="image/png" sizes="512x512" href="/better_structure_sql/favicon-512.png" />
20+
<link rel="apple-touch-icon" sizes="180x180" href="/better_structure_sql/apple-touch-icon.png" />
21+
<link rel="manifest" href="/better_structure_sql/manifest.json" />
1722
</head>
1823
<body>
1924
<div id="root"></div>

site/public/manifest.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "BetterStructureSql Documentation",
3+
"short_name": "BetterStructureSql",
4+
"description": "Clean, maintainable database schema dumps for Rails. Use SQL databases to the fullest.",
5+
"start_url": "/",
6+
"display": "standalone",
7+
"background_color": "#222222",
8+
"theme_color": "#375a7f",
9+
"icons": [
10+
{
11+
"src": "/favicon-192.png",
12+
"sizes": "192x192",
13+
"type": "image/png",
14+
"purpose": "any maskable"
15+
},
16+
{
17+
"src": "/favicon-512.png",
18+
"sizes": "512x512",
19+
"type": "image/png",
20+
"purpose": "any maskable"
21+
}
22+
]
23+
}

0 commit comments

Comments
 (0)