diff --git a/assets/logo_transparent.png b/assets/logo_transparent.png new file mode 100644 index 0000000..0868f0a Binary files /dev/null and b/assets/logo_transparent.png differ diff --git a/src/app/TitleBar.tsx b/src/app/TitleBar.tsx index 66e709b..c470b77 100644 --- a/src/app/TitleBar.tsx +++ b/src/app/TitleBar.tsx @@ -3,6 +3,8 @@ import { selectedAppIdAtom } from "@/atoms/appAtoms"; import { useLoadApps } from "@/hooks/useLoadApps"; import { useRouter } from "@tanstack/react-router"; import { useSettings } from "@/hooks/useSettings"; +import { Button } from "@/components/ui/button"; +import logo from "../../assets/logo_transparent.png"; export const TitleBar = () => { const [selectedAppId] = useAtom(selectedAppIdAtom); @@ -16,12 +18,26 @@ export const TitleBar = () => { ? `App: ${selectedApp.name}` : "(no app selected)"; - return ( -
-
-
{displayText}
+ const handleAppClick = () => { + if (selectedApp) { + navigate({ to: "/app-details", search: { appId: selectedApp.id } }); + } + }; -
Dyad
+ return ( +
+
+ Dyad Logo +
); }; diff --git a/src/styles/globals.css b/src/styles/globals.css index 8c86d19..3a20bb2 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -59,7 +59,7 @@ } .no-app-region-drag { - app-region: initial; + app-region: no-drag; } .h-screenish {