feat: App shell with login, session sidebar, chat panel, right panel

- Create RightPanel component with browser/artifacts tab switching
- Replace App.tsx with 3-column layout (auth loading/login/app states)
- Replace main.tsx with globals.css import (remove index.css)
- Remove Vite template files (App.css, index.css, assets/react.svg)
- Fix LoginPage.tsx FormEvent type-only import for verbatimModuleSyntax
- Fix vite.config.ts to use vitest/config for proper test property typing
- Add tests: RightPanel (10 tests), App rendering states (7 tests)
This commit is contained in:
Ken
2026-05-26 19:34:07 +00:00
parent 3b01753336
commit 3723c5bf93
10 changed files with 272 additions and 415 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import App from './App'
import './styles/globals.css'
createRoot(document.getElementById('root')!).render(
<StrictMode>