Files
big-agi/pages/index.tsx
T
2024-07-30 02:52:42 -07:00

15 lines
399 B
TypeScript

import * as React from 'react';
import { AppChat } from '../src/apps/chat/AppChat';
import { withNextJSPerPageLayout } from '~/common/layout/withLayout';
export default withNextJSPerPageLayout({ type: 'optima' }, () => {
// TODO: This Index page will point to the Dashboard (or a landing page)
// For now it offers the chat experience, but this will change. #299
return <AppChat />;
});