Skip to content

Commit

Permalink
added UI fix for loading screen
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodacus committed Dec 16, 2024
1 parent 7e650af commit bf76a0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/commit.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "commit": "b304749b21f340e03c94abc0cc91ccf82f559195" }
{ "commit": "7e650af56926d88f03e543c38d2f25280e10baa3" }
4 changes: 3 additions & 1 deletion app/routes/git.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { ClientOnly } from 'remix-utils/client-only';
import { BaseChat } from '~/components/chat/BaseChat';
import { GitUrlImport } from '~/components/git/GitUrlImport.client';
import { Header } from '~/components/header/Header';
import BackgroundRays from '~/components/ui/BackgroundRays';

export const meta: MetaFunction = () => {
return [{ title: 'Bolt' }, { name: 'description', content: 'Talk with Bolt, an AI assistant from StackBlitz' }];
Expand All @@ -15,7 +16,8 @@ export async function loader(args: LoaderFunctionArgs) {

export default function Index() {
return (
<div className="flex flex-col h-full w-full">
<div className="flex flex-col h-full w-full bg-bolt-elements-background-depth-1">
<BackgroundRays />
<Header />
<ClientOnly fallback={<BaseChat />}>{() => <GitUrlImport />}</ClientOnly>
</div>
Expand Down

0 comments on commit bf76a0b

Please sign in to comment.