forked from git.gladyson/openmonetis
24 lines
489 B
TypeScript
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>
|
|
);
|
|
}
|