2024-12-10 18:04:03 +00:00
|
|
|
import { Metadata } from "next";
|
2024-12-07 19:53:34 +00:00
|
|
|
|
2024-12-10 18:04:03 +00:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Dashboard Media Hub",
|
|
|
|
|
description: "Dashboard Media Hub.",
|
|
|
|
|
};
|
2024-12-07 19:53:34 +00:00
|
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
|
|
|
|
return <>{children}</>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Layout;
|