2024-12-13 04:10:59 +00:00
|
|
|
export const metadata = {
|
2024-12-24 18:17:21 +00:00
|
|
|
title: "Medos Mediahub",
|
2024-12-13 04:10:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
|
|
|
|
return <>{children}</>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Layout;
|