chat + maps + ai + tools

This commit is contained in:
geoffsee
2025-07-08 13:53:36 -04:00
committed by Geoff Seemueller
parent 48655474e3
commit 818e0e672a
14 changed files with 384 additions and 105 deletions

View File

@@ -1,6 +1,7 @@
import { Stack } from '@chakra-ui/react';
import { Grid, GridItem, Stack } from '@chakra-ui/react';
import React, { useEffect } from 'react';
import Chat from '../../components/chat/Chat.tsx';
import { LandingComponent } from '../../components/landing-component/LandingComponent.tsx';
import clientChatStore from '../../stores/ClientChatStore';
@@ -15,11 +16,14 @@ export default function IndexPage() {
// Fall back to default model
}
}, []);
return (
<Stack direction="column" height="100%" width="100%" spacing={0}>
<LandingComponent />
{/*<Chat height="100%" width="100%" />*/}
</Stack>
<Grid templateColumns="repeat(2, 1fr)" height="100%" width="100%" gap={0}>
<GridItem>
<LandingComponent />
</GridItem>
<GridItem p={2}>
<Chat />
</GridItem>
</Grid>
);
}