17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
import PageTitle from "@/components/page-title";
|
|
import { Metadata } from "next";
|
|
import { Suspense } from "react";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Media Hub | POLRI",
|
|
description: "Dashcode is a popular dashboard template.",
|
|
};
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
|
return <>
|
|
<PageTitle className="mb-6" />
|
|
{children}
|
|
</>
|
|
};
|
|
|
|
export default Layout;
|