diff --git a/packages/pinorama-studio/src/components/title-bar/title-bar.tsx b/packages/pinorama-studio/src/components/title-bar/title-bar.tsx index 6a82c80..bad2632 100644 --- a/packages/pinorama-studio/src/components/title-bar/title-bar.tsx +++ b/packages/pinorama-studio/src/components/title-bar/title-bar.tsx @@ -4,35 +4,26 @@ import { PinoramaLogo } from "./components/pinorama-logo" import { SettingsButton } from "./components/settings-button" import { ThemeToggleButton } from "./components/theme-toggle-button" -const Left = () => ( -
- -
-) - -const Center = () => ( -
- -
-) - -const Right = () => ( -
- - - -
-) - export function TitleBar() { return (
- + {/* Left */} +
+ +
-
+ {/* Center */} +
+ +
- + {/* Right */} +
+ + + +
)