diff --git a/app/(dashboard)/caixa-de-entrada/layout.tsx b/app/(dashboard)/caixa-de-entrada/layout.tsx new file mode 100644 index 0000000..5c58ae3 --- /dev/null +++ b/app/(dashboard)/caixa-de-entrada/layout.tsx @@ -0,0 +1,23 @@ +import PageDescription from "@/components/page-description"; +import { RiInbox2Line } from "@remixicon/react"; + +export const metadata = { + title: "Caixa de Entrada | Opensheets", +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( +
+ } + title="Caixa de Entrada" + subtitle="Visialize seus lançamentos pendentes" + /> + {children} +
+ ); +}