├── .env.example ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app.config.ts ├── convex ├── README.md ├── _generated │ ├── api.d.ts │ ├── api.js │ ├── dataModel.d.ts │ ├── server.d.ts │ └── server.js ├── conversations.ts ├── convex.json ├── schema.ts └── tsconfig.json ├── netlify.toml ├── package.json ├── postcss.config.ts ├── public ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── renovate.json ├── src ├── api.ts ├── client.tsx ├── components │ ├── ChatInput.tsx │ ├── ChatMessage.tsx │ ├── LoadingIndicator.tsx │ ├── SettingsDialog.tsx │ ├── Sidebar.tsx │ ├── TopBanner.tsx │ ├── WelcomeScreen.tsx │ └── index.ts ├── convex.tsx ├── routeTree.gen.ts ├── router.tsx ├── routes │ ├── __root.tsx │ └── index.tsx ├── sentry.ts ├── ssr.tsx ├── store │ ├── hooks.ts │ ├── index.ts │ └── store.ts ├── styles.css └── utils │ ├── ai.ts │ └── index.ts ├── tanstack-starter-preview.jpg ├── tsconfig.json └── vite.config.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/README.md -------------------------------------------------------------------------------- /app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/app.config.ts -------------------------------------------------------------------------------- /convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/README.md -------------------------------------------------------------------------------- /convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/_generated/api.js -------------------------------------------------------------------------------- /convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/_generated/server.js -------------------------------------------------------------------------------- /convex/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/conversations.ts -------------------------------------------------------------------------------- /convex/convex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/convex.json -------------------------------------------------------------------------------- /convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/schema.ts -------------------------------------------------------------------------------- /convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/convex/tsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/postcss.config.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/renovate.json -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/client.tsx -------------------------------------------------------------------------------- /src/components/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/ChatInput.tsx -------------------------------------------------------------------------------- /src/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/LoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/LoadingIndicator.tsx -------------------------------------------------------------------------------- /src/components/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/SettingsDialog.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/TopBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/TopBanner.tsx -------------------------------------------------------------------------------- /src/components/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/WelcomeScreen.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/convex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/convex.tsx -------------------------------------------------------------------------------- /src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/routeTree.gen.ts -------------------------------------------------------------------------------- /src/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/router.tsx -------------------------------------------------------------------------------- /src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/routes/__root.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/sentry.ts -------------------------------------------------------------------------------- /src/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/ssr.tsx -------------------------------------------------------------------------------- /src/store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/store/hooks.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/utils/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/src/utils/ai.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ai'; -------------------------------------------------------------------------------- /tanstack-starter-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/tanstack-starter-preview.jpg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/tanstack-template/HEAD/vite.config.js --------------------------------------------------------------------------------