2024-11-26 03:09:48 +00:00
|
|
|
import PageTitle from "@/components/page-title";
|
|
|
|
|
import { Metadata } from "next";
|
2024-12-24 15:44:47 +00:00
|
|
|
import { Suspense } from "react";
|
2024-11-26 03:09:48 +00:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-12-24 12:55:28 +00:00
|
|
|
title: "Media Hub | POLRI",
|
2024-11-26 03:09:48 +00:00
|
|
|
description: "Dashcode is a popular dashboard template.",
|
|
|
|
|
};
|
|
|
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
|
|
|
|
return <>
|
2024-12-24 15:44:47 +00:00
|
|
|
<PageTitle className="mb-6" />
|
|
|
|
|
{children}
|
|
|
|
|
</>
|
2024-11-26 03:09:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Layout;
|