feat: move o changelog para uma rota dedicada

This commit is contained in:
Felipe Coutinho
2026-03-15 23:24:10 +00:00
parent 173fc86920
commit a4da0a7143
4 changed files with 3 additions and 82 deletions

View File

@@ -1,23 +0,0 @@
import { RiHistoryLine } from "@remixicon/react";
import PageDescription from "@/shared/components/page-description";
export const metadata = {
title: "Cartões | OpenMonetis",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<section className="space-y-6 pt-4">
<PageDescription
icon={<RiHistoryLine />}
title="Changelog"
subtitle="Acompanhe todas as alterações feitas na plataforma."
/>
{children}
</section>
);
}

View File

@@ -1,12 +0,0 @@
import { ChangelogTab } from "@/features/settings/components/changelog-tab";
import { parseChangelog } from "@/features/settings/lib/parse-changelog";
export default function ChangelogPage() {
const versions = parseChangelog();
return (
<div className="w-full">
<ChangelogTab versions={versions} />
</div>
);
}