Skip to content

Commit 9a69118

Browse files
committed
- add favicons to video to gif converter and svg path editor
- add code case converter - update tools.json and sidebar.html accordingly
1 parent ac6a204 commit 9a69118

File tree

7 files changed

+346
-1
lines changed

7 files changed

+346
-1
lines changed

data/tools.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,5 +1142,16 @@
11421142
"aiPowered": false,
11431143
"featured": false,
11441144
"date": "2025-03-01"
1145+
},
1146+
{
1147+
"id": "code_case_converter",
1148+
"title": "Code Case Converter",
1149+
"description": "Text case transformer for developers, writers, and content creators.",
1150+
"url": "tools/code_case_converter.html",
1151+
"screenshot": "screenshots/screenshot_153.png",
1152+
"type": "tool",
1153+
"aiPowered": false,
1154+
"featured": false,
1155+
"date": "2025-03-01"
11451156
}
11461157
]

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
<body>
154154
<header>
155155
<div class="container header-content">
156-
<a href="/" class="logo"><i class="fas fa-gamepad"></i> GPTGames</a>
156+
<a href="/" class="logo" title='...with emphasis on "Games".'><i class="fas fa-gamepad"></i> GPTGames</a>
157157
<div class="search-bar">
158158
<input type="search" id="searchInput" placeholder="Search games & tools" aria-label="Search">
159159
<span class="clear-search" id="clearSearch" title="Clear search"></span>

screenshots/screenshot_153.png

22.5 KB
Loading

sidebar.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ <h2>Tools by ChatGPT</h2>
239239
<li><a href="/tools/grammar_check.html">AI Grammar Checker</a></li>
240240
<li><a href="/tools/svg_path_editor.html">SVG Path Editor</a></li>
241241
<li><a href="/tools/video_to_gif_converter.html">Video to GIF Converter</a></li>
242+
<li><a href="/tools/code_case_converter.html">Code Case Converter</a></li>
242243
<!-- end -->
243244
</ul>
244245
</div>

tools/code_case_converter.html

Lines changed: 331 additions & 0 deletions
Large diffs are not rendered by default.

tools/svg_path_editor.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>SVG Path Editor</title>
7+
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🖼️</text></svg>">
78
<script src="https://cdn.jsdelivr.net/npm/@svgdotjs/[email protected]/dist/svg.min.js"></script>
89
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
910
<style>

tools/video_to_gif_converter.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Video to GIF Converter</title>
7+
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎞️</text></svg>">
78
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
89
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
910
<style>

0 commit comments

Comments
 (0)