14 lines
422 B
TypeScript
14 lines
422 B
TypeScript
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>
|
|
);
|
|
}
|