Skip to content

Commit 79f243d

Browse files
committed
fix(og): 全面黒だった logo/favicon を再生成し、1200x630 の og-image を追加
logo.png と favicon.png は 512x512・単色黒の壊れたPNGで、サイトのロゴ・ favicon・OG画像すべてが真っ黒だった。HTTP 200 が返るため気づかれていなかった (toolify365 の /api/og が 1x1 透明PNGを返していたのと同型)。 - ブランド色 #6c7bff→#00D4E8 のグラデタイル + SK ワードマークで再生成 - og-image.png (1200x630) を新規追加し index の og:image を差し替え - about/apps/contact に OG + twitter:card summary_large_image を追加 Claude-Session: https://claude.ai/code/session_016dfnX31REyfbQsYCyj7Cbn
1 parent 0fc6c96 commit 79f243d

7 files changed

Lines changed: 40 additions & 1 deletion

File tree

about.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1111
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
1212
<link rel="stylesheet" href="/legal.css">
13+
<meta property="og:title" content="About — SK APPS">
14+
<meta property="og:description" content="SK APPS — independent developer publishing mobile apps and free web tools across 17 languages.">
15+
<meta property="og:type" content="website">
16+
<meta property="og:url" content="https://appdevelopsk.com/about">
17+
<meta property="og:image" content="https://appdevelopsk.com/og-image.png">
18+
<meta property="og:image:width" content="1200">
19+
<meta property="og:image:height" content="630">
20+
<meta name="twitter:card" content="summary_large_image">
21+
<meta name="twitter:title" content="About — SK APPS">
22+
<meta name="twitter:description" content="SK APPS — independent developer publishing mobile apps and free web tools across 17 languages.">
23+
<meta name="twitter:image" content="https://appdevelopsk.com/og-image.png">
1324
</head>
1425
<body>
1526
<nav><div class="nav-inner">

apps.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@
2828
footer { text-align:center; color:var(--sub); font-size:.85rem; padding:2rem; }
2929
footer a { color:var(--accent); }
3030
</style>
31+
<meta property="og:title" content="All Apps – SK APPS">
32+
<meta property="og:description" content="Browse all 98 mobile apps by SK APPS — productivity, education, health, entertainment and more. Free on Google Play.">
33+
<meta property="og:type" content="website">
34+
<meta property="og:url" content="https://appdevelopsk.com/apps">
35+
<meta property="og:image" content="https://appdevelopsk.com/og-image.png">
36+
<meta property="og:image:width" content="1200">
37+
<meta property="og:image:height" content="630">
38+
<meta name="twitter:card" content="summary_large_image">
39+
<meta name="twitter:title" content="All Apps – SK APPS">
40+
<meta name="twitter:description" content="Browse all 98 mobile apps by SK APPS — productivity, education, health, entertainment and more. Free on Google Play.">
41+
<meta name="twitter:image" content="https://appdevelopsk.com/og-image.png">
3142
</head>
3243
<body>
3344
<header>

contact.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1111
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
1212
<link rel="stylesheet" href="/legal.css">
13+
<meta property="og:title" content="Contact — SK APPS">
14+
<meta property="og:description" content="Contact SK APPS by email for support, feedback, business inquiries, or privacy requests.">
15+
<meta property="og:type" content="website">
16+
<meta property="og:url" content="https://appdevelopsk.com/contact">
17+
<meta property="og:image" content="https://appdevelopsk.com/og-image.png">
18+
<meta property="og:image:width" content="1200">
19+
<meta property="og:image:height" content="630">
20+
<meta name="twitter:card" content="summary_large_image">
21+
<meta name="twitter:title" content="Contact — SK APPS">
22+
<meta name="twitter:description" content="Contact SK APPS by email for support, feedback, business inquiries, or privacy requests.">
23+
<meta name="twitter:image" content="https://appdevelopsk.com/og-image.png">
1324
</head>
1425
<body>
1526
<nav><div class="nav-inner">

favicon.png

26.6 KB
Loading

index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@
1111
<meta property="og:description" content="Games, tools, AI-powered apps and more. 98 apps crafted with care.">
1212
<meta property="og:type" content="website">
1313
<meta property="og:url" content="https://appdevelopsk.com">
14-
<meta property="og:image" content="https://appdevelopsk.com/logo.png">
14+
<meta property="og:image" content="https://appdevelopsk.com/og-image.png">
15+
<meta property="og:image:width" content="1200">
16+
<meta property="og:image:height" content="630">
17+
<meta name="twitter:card" content="summary_large_image">
18+
<meta name="twitter:title" content="SK APPS – Innovative Mobile Experiences">
19+
<meta name="twitter:description" content="Games, tools, AI-powered apps and more. 98 apps crafted with care.">
20+
<meta name="twitter:image" content="https://appdevelopsk.com/og-image.png">
1521
<link rel="icon" type="image/png" href="/logo.png">
1622

1723
<!-- Google AdSense -->

logo.png

31.7 KB
Loading

og-image.png

44.1 KB
Loading

0 commit comments

Comments
 (0)