added logo

This commit is contained in:
Anirban Kar 2024-12-10 21:46:05 +05:30
parent ce8a5d49f2
commit 071fed24c6
6 changed files with 13 additions and 9 deletions

View File

@ -18,7 +18,9 @@ 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" />
{/* <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" />
</a>
</div>
{chat.started && ( // Display ChatDescription and HeaderActionButtons only when the chat has started.

View File

@ -372,16 +372,14 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Optional Features</h3>
<div className="flex items-center justify-between mb-2">
<span className="text-bolt-elements-textPrimary">Debug Info</span>
<Switch
className="ml-auto"
checked={isDebugEnabled}
onCheckedChange={handleToggleDebug}
/>
<Switch className="ml-auto" checked={isDebugEnabled} onCheckedChange={handleToggleDebug} />
</div>
</div>
<div className="mb-6 border-t border-bolt-elements-borderColor pt-4">
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Experimental Features</h3>
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">
Experimental Features
</h3>
<p className="text-sm text-bolt-elements-textSecondary mb-4">
Disclaimer: Experimental features may be unstable and are subject to change.
</p>
@ -439,7 +437,9 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">GitHub Connection</h3>
<div className="flex mb-4">
<div className="flex-1 mr-2">
<label className="block text-sm text-bolt-elements-textSecondary mb-1">GitHub Username:</label>
<label className="block text-sm text-bolt-elements-textSecondary mb-1">
GitHub Username:
</label>
<input
type="text"
value={githubUsername}
@ -448,7 +448,9 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
/>
</div>
<div className="flex-1">
<label className="block text-sm text-bolt-elements-textSecondary mb-1">Personal Access Token:</label>
<label className="block text-sm text-bolt-elements-textSecondary mb-1">
Personal Access Token:
</label>
<input
type="password"
value={githubToken}

BIN
public/logo-dark-styled.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
public/logo-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
public/logo-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB