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
@@ -0,0 +1,18 @@
import type { Metadata } from "next";
import { createPageMetadata } from "@/lib/metadata";
export const metadata: Metadata = createPageMetadata({
title: "Video Studio",
description:
"Edit multi-scene video projects with layers, timeline, transitions, and export.",
path: "/studio/video",
});
export default function VideoStudioProjectLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}