Files
openmonetis/app/(dashboard)/pre-lancamentos/layout.tsx
2026-02-15 00:06:54 +00:00

24 lines
489 B
TypeScript

import { RiInboxLine } from "@remixicon/react";
import PageDescription from "@/components/page-description";
export const metadata = {
title: "Pré-Lançamentos | Opensheets",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<section className="space-y-6 px-6">
<PageDescription
icon={<RiInboxLine />}
title="Pré-Lançamentos"
subtitle="Notificações capturadas pelo Companion"
/>
{children}
</section>
);
}