Skip to content

Commit dc34483

Browse files
committed
fix: Update application tray icon, website hero image, and header text styling.
1 parent 2698bc3 commit dc34483

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

application/src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,13 @@ function openSystemPreferences(pane) {
216216
// Create tray icon from PNG file
217217
function createTrayIcon(isRecording = false) {
218218
// Use the ear icon PNG for tray
219-
const iconPath = path.join(__dirname, "assets", "icons", "message-2.png");
219+
const iconPath = path.join(__dirname, "../assets", "logo.png");
220220

221221
let icon;
222222
if (fs.existsSync(iconPath)) {
223223
icon = nativeImage.createFromPath(iconPath);
224224
// Resize to 16x16 for tray (standard size)
225-
icon = icon.resize({ width: 16, height: 16 });
225+
icon = icon.resize({ width: 20, height: 20 });
226226
} else {
227227
// Fallback: create a simple circle icon
228228
const size = 16;

website/assets/images/hero.jpg

-677 Bytes
Loading

website/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<div class="flex items-center justify-between h-14 sm:h-16">
4646
<a href="#" class="flex items-center gap-2 font-semibold text-gray-900">
4747
<img src="assets/images/logo.png" alt="Push to Talk" class="w-9 h-9">
48-
<span class="hidden sm:inline">Push to Talk</span>
48+
<span class="hidden sm:inline font-bold">Push to Talk</span>
4949
</a>
5050
<div class="flex items-center gap-4 sm:gap-8">
5151
<a href="#como-funciona" class="text-xs sm:text-sm font-medium text-gray-500 hover:text-gray-900 transition-colors whitespace-nowrap">Como funciona</a>

0 commit comments

Comments
 (0)