first commit

This commit is contained in:
Pascal Linxweiler
2026-02-09 16:29:06 +01:00
parent 344ad88856
commit 354d69afb2
26 changed files with 16909 additions and 82 deletions

View File

@@ -0,0 +1,15 @@
"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>
)
}