Skip to content

Instantly share code, notes, and snippets.

@domitriusclark
Created December 17, 2025 20:56
Show Gist options
  • Select an option

  • Save domitriusclark/281a3065254f861bbf9fbc00b033ea65 to your computer and use it in GitHub Desktop.

Select an option

Save domitriusclark/281a3065254f861bbf9fbc00b033ea65 to your computer and use it in GitHub Desktop.
// src/routes/index.tsx
import { createFileRoute } from '@tanstack/react-router'
import { Chat } from '../components/Chat'
export const Route = createFileRoute('/')({ component: App })
function App() {
return (
<div className="min-h-screen bg-gradient-to-b from-slate-900 via-slate-800 to-slate-900 text-white">
<Chat />
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment