2025-09-16 08:29:07 +00:00
|
|
|
import FormVideo from "@/components/form/content/audio-visual/video-form";
|
|
|
|
|
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
|
|
|
|
|
|
|
|
const VideoCreatePage = async () => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2025-10-06 14:17:48 +00:00
|
|
|
<SiteBreadcrumb />
|
2026-02-05 14:23:37 +00:00
|
|
|
<div className="space-y-4 bg-slate-100 dark:bg-default-50">
|
2025-09-16 08:29:07 +00:00
|
|
|
<FormVideo />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default VideoCreatePage;
|