codacus commited on
Commit
bf76a0b
·
1 Parent(s): 7e650af

added UI fix for loading screen

Browse files
Files changed (2) hide show
  1. app/commit.json +1 -1
  2. app/routes/git.tsx +3 -1
app/commit.json CHANGED
@@ -1 +1 @@
1
- { "commit": "b304749b21f340e03c94abc0cc91ccf82f559195" }
 
1
+ { "commit": "7e650af56926d88f03e543c38d2f25280e10baa3" }
app/routes/git.tsx CHANGED
@@ -4,6 +4,7 @@ import { ClientOnly } from 'remix-utils/client-only';
4
  import { BaseChat } from '~/components/chat/BaseChat';
5
  import { GitUrlImport } from '~/components/git/GitUrlImport.client';
6
  import { Header } from '~/components/header/Header';
 
7
 
8
  export const meta: MetaFunction = () => {
9
  return [{ title: 'Bolt' }, { name: 'description', content: 'Talk with Bolt, an AI assistant from StackBlitz' }];
@@ -15,7 +16,8 @@ export async function loader(args: LoaderFunctionArgs) {
15
 
16
  export default function Index() {
17
  return (
18
- <div className="flex flex-col h-full w-full">
 
19
  <Header />
20
  <ClientOnly fallback={<BaseChat />}>{() => <GitUrlImport />}</ClientOnly>
21
  </div>
 
4
  import { BaseChat } from '~/components/chat/BaseChat';
5
  import { GitUrlImport } from '~/components/git/GitUrlImport.client';
6
  import { Header } from '~/components/header/Header';
7
+ import BackgroundRays from '~/components/ui/BackgroundRays';
8
 
9
  export const meta: MetaFunction = () => {
10
  return [{ title: 'Bolt' }, { name: 'description', content: 'Talk with Bolt, an AI assistant from StackBlitz' }];
 
16
 
17
  export default function Index() {
18
  return (
19
+ <div className="flex flex-col h-full w-full bg-bolt-elements-background-depth-1">
20
+ <BackgroundRays />
21
  <Header />
22
  <ClientOnly fallback={<BaseChat />}>{() => <GitUrlImport />}</ClientOnly>
23
  </div>