Created
December 17, 2025 20:56
-
-
Save domitriusclark/281a3065254f861bbf9fbc00b033ea65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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