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
+24
View File
@@ -0,0 +1,24 @@
import type { RenderSettings } from "@/lib/render-schemas";
export type RenderExportPreset = "full" | "preview" | "gif";
export const RENDER_EXPORT_PRESETS: Record<
RenderExportPreset,
{ label: string; settings: RenderSettings; description: string }
> = {
full: {
label: "Render Video (Full Quality)",
description: "1080p MP4 at 30 fps",
settings: { resolution: "1080p", format: "mp4", fps: 30 },
},
preview: {
label: "Quick Preview (720p)",
description: "720p MP4 at 24 fps",
settings: { resolution: "720p", format: "mp4", fps: 24 },
},
gif: {
label: "Export as GIF",
description: "720p MP4 preview (GIF pipeline coming soon)",
settings: { resolution: "720p", format: "mp4", fps: 24 },
},
};