forked from git.gladyson/openmonetis
Este commit altera todas as ocorrências de "OpenSheets" para "Opensheets" em arquivos de layout, README, componentes e notificações, garantindo consistência na nomenclatura do projeto.
24 lines
620 B
TypeScript
24 lines
620 B
TypeScript
import PageDescription from "@/components/page-description";
|
|
import { RiCalendarEventLine } from "@remixicon/react";
|
|
|
|
export const metadata = {
|
|
title: "Calendário | Opensheets",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<section className="space-y-6 px-6">
|
|
<PageDescription
|
|
icon={<RiCalendarEventLine />}
|
|
title="Calendário"
|
|
subtitle="Visualize lançamentos, vencimentos de cartões e boletos em um só lugar. Clique em uma data para detalhar ou criar um novo lançamento."
|
|
/>
|
|
{children}
|
|
</section>
|
|
);
|
|
}
|