Skip to content

Commit

Permalink
studio: update favicon to official logo (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesconix authored Aug 19, 2024
1 parent 306a952 commit 54639cb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/angry-candles-begin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"pinorama-studio": patch
---

update favicon to official logo
4 changes: 2 additions & 2 deletions packages/pinorama-studio/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<link rel="icon" type="image/webp" href="/pinorama-logo.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pinorama Studio 🌀</title>
<title>Pinorama Studio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
Expand Down
Binary file removed packages/pinorama-studio/public/favicon.png
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { ShellIcon } from "lucide-react"
import { FormattedMessage } from "react-intl"

export function PinoramaLogo() {
return (
<div className="flex items-center space-x-1.5 font-medium">
<ShellIcon className="h-[18px] w-[18px]" />
<img src="/pinorama-logo.webp" width={18} height={18} alt="Pinorama" />
<div className="leading-tight">
<FormattedMessage id="app.name" />{" "}
<small className="text-xs font-normal text-muted-foreground">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ConnectionStatusButton } from "./components/connection-status-button"
import { ConnectionToggleButton } from "./components/connection-toggle-button"
import { PinoramaLogo } from "./components/pinorama-logo"
import { SettingsButton } from "./components/settings-button"
import { ThemeToggleButton } from "./components/theme-toggle-button"

export function TitleBar() {
Expand All @@ -21,7 +20,6 @@ export function TitleBar() {
{/* Right */}
<div className="flex items-center space-x-1.5">
<ThemeToggleButton />
<SettingsButton />
<ConnectionToggleButton />
</div>
</div>
Expand Down

0 comments on commit 54639cb

Please sign in to comment.