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
587 B
TypeScript
24 lines
587 B
TypeScript
import PageDescription from "@/components/page-description";
|
|
import { RiSparklingLine } from "@remixicon/react";
|
|
|
|
export const metadata = {
|
|
title: "Insights | Opensheets",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<section className="space-y-6 px-6">
|
|
<PageDescription
|
|
icon={<RiSparklingLine />}
|
|
title="Insights"
|
|
subtitle="Análise inteligente dos seus dados financeiros para identificar padrões, comportamentos e oportunidades de melhoria."
|
|
/>
|
|
{children}
|
|
</section>
|
|
);
|
|
}
|