|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Dashboard Media Hub",
|
|
description: "Dashboard Media Hub.",
|
|
};
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default Layout;
|