codacus commited on
Commit
071fed2
·
1 Parent(s): ce8a5d4

added logo

Browse files
app/components/header/Header.tsx CHANGED
@@ -18,7 +18,9 @@ export function Header() {
18
  <div className="flex items-center gap-2 z-logo text-bolt-elements-textPrimary cursor-pointer">
19
  <div className="i-ph:sidebar-simple-duotone text-xl" />
20
  <a href="/" className="text-2xl font-semibold text-accent flex items-center">
21
- <span className="i-bolt:logo-text?mask w-[46px] inline-block" />
 
 
22
  </a>
23
  </div>
24
  {chat.started && ( // Display ChatDescription and HeaderActionButtons only when the chat has started.
 
18
  <div className="flex items-center gap-2 z-logo text-bolt-elements-textPrimary cursor-pointer">
19
  <div className="i-ph:sidebar-simple-duotone text-xl" />
20
  <a href="/" className="text-2xl font-semibold text-accent flex items-center">
21
+ {/* <span className="i-bolt:logo-text?mask w-[46px] inline-block" /> */}
22
+ <img src="/logo-light-styled.png" alt="logo" className="w-[90px] inline-block dark:hidden" />
23
+ <img src="/logo-dark-styled.png" alt="logo" className="w-[90px] inline-block hidden dark:block" />
24
  </a>
25
  </div>
26
  {chat.started && ( // Display ChatDescription and HeaderActionButtons only when the chat has started.
app/components/settings/SettingsWindow.tsx CHANGED
@@ -372,16 +372,14 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
372
  <h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Optional Features</h3>
373
  <div className="flex items-center justify-between mb-2">
374
  <span className="text-bolt-elements-textPrimary">Debug Info</span>
375
- <Switch
376
- className="ml-auto"
377
- checked={isDebugEnabled}
378
- onCheckedChange={handleToggleDebug}
379
- />
380
  </div>
381
  </div>
382
 
383
  <div className="mb-6 border-t border-bolt-elements-borderColor pt-4">
384
- <h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Experimental Features</h3>
 
 
385
  <p className="text-sm text-bolt-elements-textSecondary mb-4">
386
  Disclaimer: Experimental features may be unstable and are subject to change.
387
  </p>
@@ -439,7 +437,9 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
439
  <h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">GitHub Connection</h3>
440
  <div className="flex mb-4">
441
  <div className="flex-1 mr-2">
442
- <label className="block text-sm text-bolt-elements-textSecondary mb-1">GitHub Username:</label>
 
 
443
  <input
444
  type="text"
445
  value={githubUsername}
@@ -448,7 +448,9 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
448
  />
449
  </div>
450
  <div className="flex-1">
451
- <label className="block text-sm text-bolt-elements-textSecondary mb-1">Personal Access Token:</label>
 
 
452
  <input
453
  type="password"
454
  value={githubToken}
 
372
  <h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Optional Features</h3>
373
  <div className="flex items-center justify-between mb-2">
374
  <span className="text-bolt-elements-textPrimary">Debug Info</span>
375
+ <Switch className="ml-auto" checked={isDebugEnabled} onCheckedChange={handleToggleDebug} />
 
 
 
 
376
  </div>
377
  </div>
378
 
379
  <div className="mb-6 border-t border-bolt-elements-borderColor pt-4">
380
+ <h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">
381
+ Experimental Features
382
+ </h3>
383
  <p className="text-sm text-bolt-elements-textSecondary mb-4">
384
  Disclaimer: Experimental features may be unstable and are subject to change.
385
  </p>
 
437
  <h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">GitHub Connection</h3>
438
  <div className="flex mb-4">
439
  <div className="flex-1 mr-2">
440
+ <label className="block text-sm text-bolt-elements-textSecondary mb-1">
441
+ GitHub Username:
442
+ </label>
443
  <input
444
  type="text"
445
  value={githubUsername}
 
448
  />
449
  </div>
450
  <div className="flex-1">
451
+ <label className="block text-sm text-bolt-elements-textSecondary mb-1">
452
+ Personal Access Token:
453
+ </label>
454
  <input
455
  type="password"
456
  value={githubToken}
public/logo-dark-styled.png ADDED
public/logo-dark.png ADDED
public/logo-light-styled.png ADDED
public/logo-light.png ADDED