chore: initial commit for phase05

This commit is contained in:
hibna
2026-02-21 16:59:21 +03:00
parent 218452706c
commit 0941a9ba46
43 changed files with 4431 additions and 17 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Puzzle } from 'lucide-react';
import { Card, CardContent } from '@/components/ui/card';
export function PluginsPage() {
return (
<Card>
<CardContent className="flex flex-col items-center justify-center py-12">
<Puzzle className="mb-4 h-12 w-12 text-muted-foreground/50" />
<p className="text-muted-foreground">Plugin management coming soon</p>
</CardContent>
</Card>
);
}