15 lines
523 B
TypeScript
15 lines
523 B
TypeScript
"use client"
|
|
|
|
import { Card } from "@/components/ui/card"
|
|
|
|
export function PreviewArea() {
|
|
return (
|
|
<div className="h-full min-h-[500px] w-full border rounded-xl bg-zinc-100 dark:bg-zinc-950 flex items-center justify-center relative overflow-hidden">
|
|
{/* Placeholder for actual content */}
|
|
<div className="text-center space-y-2 opacity-50">
|
|
<p className="font-medium text-sm">Preview Canvas</p>
|
|
<p className="text-xs">Result will appear here</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |