mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 01:36:30 +02:00
- Added UX strategy: Extension for Quick Actions, Frontend for Management - Organized features into 4 phases (Phase 1 completed) - Added 14 new extension features (FR-EXT-07 to FR-EXT-17): * Smart Monitoring: Price alerts, whale tracking, rug pull detection * Trading Intelligence: Token analysis, entry/exit suggestions, portfolio tracker * Content Creation: Chart screenshots, AI thread generator * Productivity: Quick actions, notifications, keyboard shortcuts - Added Feature Responsibility Matrix showing Extension vs Frontend roles - Added Settings Sync strategy (FR-EXT-06) with deep links to frontend - Documented state sync architecture: Extension ↔ Backend API ↔ Frontend
24 lines
733 B
TypeScript
24 lines
733 B
TypeScript
import { MemoryRouter } from "react-router-dom";
|
|
import { Toaster } from "@/routes/ui/toaster";
|
|
import { ChatInterface } from "./chat/ChatInterface";
|
|
import { PageContextProvider } from "./context/PageContextProvider";
|
|
|
|
/**
|
|
* Main Side Panel Application
|
|
* Provides AI chat interface with page context awareness
|
|
*/
|
|
export function SidePanelApp() {
|
|
return (
|
|
<PageContextProvider>
|
|
<MemoryRouter>
|
|
<div className="flex flex-col h-full">
|
|
{/* Main chat interface */}
|
|
<ChatInterface />
|
|
|
|
{/* Toast notifications */}
|
|
<Toaster />
|
|
</div>
|
|
</MemoryRouter>
|
|
</PageContextProvider>
|
|
);
|
|
}
|