feat: full studio build -- light theme, canvas thumbnails, i18n (fa/en)

This commit is contained in:
Soroush.Asadi
2026-05-24 17:37:21 +03:30
parent d962483359
commit c61f587767
295 changed files with 29797 additions and 265 deletions
+20
View File
@@ -0,0 +1,20 @@
import {
ArrowLeftRight,
Ban,
Layers,
ZoomIn,
type LucideIcon,
} from "lucide-react";
import type { SceneTransition } from "@/lib/studio-types";
export const SCENE_TRANSITION_OPTIONS: {
id: SceneTransition;
label: string;
icon: LucideIcon;
}[] = [
{ id: "none", label: "None", icon: Ban },
{ id: "fade", label: "Fade", icon: Layers },
{ id: "slide-left", label: "Slide", icon: ArrowLeftRight },
{ id: "zoom", label: "Zoom", icon: ZoomIn },
];