mediahub-fe/app/[locale]/(protected)/dashboard/layout.tsx

15 lines
370 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import PageTitle from "@/components/page-title";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Dashcode Next Js",
description: "Dashcode is a popular dashboard template.",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>
<PageTitle className="mb-6" />
{children}</>;
};
export default Layout;