- Remove tw-animate-css import + dead src/components/ui shadcn tree - Convert 7 orphaned components (moderation, analysis, guild-selector, voice/activity-timeline, shared/empty+error) to new primitives - Add missing moderation/view.tsx; analysis uses SearchPanel directly - globals.css now uses new signal-driven ops-console tokens - tsc --noEmit clean, next build green (11 routes), local smoke 200
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
"use client";
|
|
|
|
import { SearchPanel } from "@/components/analysis/search-panel";
|
|
|
|
export default function AnalysisPage() {
|
|
return (
|
|
<div className="space-y-5" style={{ animation: "fade-up 0.4s ease both" }}>
|
|
<SearchPanel />
|
|
</div>
|
|
);
|
|
}
|