MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / IndexPage

Function IndexPage

src/pages/index.tsx:19–44  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17});
18
19const IndexPage: NextPage = () => {
20 return (
21 <div>
22 <Head>
23 <title>SQL Chat - Chat-based SQL Client and Editor for the next decade</title>
24 <meta name="description" content="Chat-based SQL Client and Editor for the next decade" />
25 <meta name="twitter:card" content="summary_large_image" />
26 <meta name="og:title" property="og:title" content="SQL Chat" />
27 <meta name="og:description" property="og:description" content="Chat-based SQL Client and Editor for the next decade" />
28 <meta name="og:image" property="og:image" content="https://www.sqlchat.ai/chat-logo-and-text.webp" />
29 <meta name="og:type" property="og:type" content="website" />
30 <meta name="og:url" property="og:url" content="https://www.sqlchat.ai" />
31 </Head>
32
33 <h1 className="sr-only">SQL Chat</h1>
34
35 <main className="w-full h-full flex flex-row dark:bg-zinc-800">
36 <ConnectionSidebar />
37 <ConversationView />
38 <QueryDrawer />
39 </main>
40
41 <Script defer data-domain="sqlchat.ai" src="https://plausible.io/js/script.js" />
42 </div>
43 );
44};
45
46export default IndexPage;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected