Skip to content

Commit

Permalink
change logo to circular stacked logo and remove it from navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
srijanpatel committed Feb 13, 2025
1 parent 2f0094d commit 13821dd
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Binary file added frontend/public/pyspur-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/pyspur_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions frontend/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,11 @@ const Header: React.FC<HeaderProps> = ({ activePage, associatedWorkflowId, runId
<NavbarBrand className="h-full max-w-fit">
{activePage === 'dashboard' ? (
<div className="flex items-center gap-2 cursor-pointer">
<img src="/pyspur-logo.svg" alt="PySpur Logo" className="h-6 w-6 dark:invert" />
<p className="font-bold text-lg text-default-900">PySpur</p>
</div>
) : (
<Link href="/" className="cursor-pointer">
<div className="flex items-center gap-2">
<img src="/pyspur-logo.svg" alt="PySpur Logo" className="h-6 w-6 dark:invert" />
<p className="font-bold text-default-900">PySpur</p>
</div>
</Link>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const MyApp: React.FC<AppProps> = ({ Component, pageProps }) => {
return (
<Provider store={store}>
<Head>
<link rel="icon" type="image/svg+xml" href="/pyspur-logo.svg" />
<link rel="icon" type="image/png" href="/pyspur-black.png" media="(prefers-color-scheme: light)" />
<link rel="icon" type="image/png" href="/pyspur-white.png" media="(prefers-color-scheme: dark)" />
</Head>
<HeroUIProvider>
<NextThemesProvider attribute="class" defaultTheme="light">
Expand Down

0 comments on commit 13821dd

Please sign in to comment.