Skip to content

Commit

Permalink
Add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
bhackett1024 committed Jan 18, 2025
1 parent 3f306a2 commit 8e27657
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 5 deletions.
4 changes: 1 addition & 3 deletions app/components/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ export function Header() {
<div className="flex items-center gap-2 z-logo text-bolt-elements-textPrimary cursor-pointer">
<div className="i-ph:sidebar-simple-duotone text-xl" />
<a href="/" className="text-2xl font-semibold text-accent flex items-center">
{/* <span className="i-bolt:logo-text?mask w-[46px] inline-block" /> */}
<img src="/logo-light-styled.png" alt="logo" className="w-[90px] inline-block dark:hidden" />
<img src="/logo-dark-styled.png" alt="logo" className="w-[90px] inline-block hidden dark:block" />
<img src="/logo-styled.svg" alt="logo" className="w-[45px] inline-block rotate-90" />
</a>
</div>
{chat.started && ( // Display ChatDescription and HeaderActionButtons only when the chat has started.
Expand Down
3 changes: 1 addition & 2 deletions app/components/sidebar/Menu.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const Menu = () => {
variants={menuVariants}
className="flex selection-accent flex-col side-menu fixed top-0 w-[350px] h-full bg-bolt-elements-background-depth-2 border-r rounded-r-3xl border-bolt-elements-borderColor z-sidebar shadow-xl shadow-bolt-elements-sidebar-dropdownShadow text-sm"
>
<div className="h-[45px]" /> {/* Spacer for top margin */}
<div className="h-[55px]" /> {/* Spacer for top margin */}
<div className="flex-1 flex flex-col h-full w-full overflow-hidden">
<div className="flex gap-2 px-2 mb-0 ml-2.5">
<a
Expand Down Expand Up @@ -224,7 +224,6 @@ export const Menu = () => {
</div>
</div>
<SettingsWindow open={isSettingsOpen} onClose={() => setIsSettingsOpen(false)} />
<SaveProblem />
</motion.div>
);
};
Binary file removed public/logo-dark-styled.png
Binary file not shown.
Binary file removed public/logo-light-styled.png
Binary file not shown.
Loading

0 comments on commit 8e27657

Please sign in to comment.