19 lines
428 B
TypeScript
19 lines
428 B
TypeScript
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;
|
|
}
|