| 'use client'; | |
| import { AppShell } from '@/components/layout'; | |
| import { AnalyzeView, SettingsPanel } from '@/components/features'; | |
| export default function Home() { | |
| return ( | |
| <AppShell | |
| analyzeContent={<AnalyzeView />} | |
| settingsContent={<SettingsPanel />} | |
| /> | |
| ); | |
| } | |