feat: download button and page

This commit is contained in:
Julien Froidefond
2025-02-21 13:08:52 +01:00
parent dd49d80744
commit ade8b372b6
13 changed files with 8794 additions and 697 deletions

View File

@@ -0,0 +1,11 @@
import { PageHeader } from "@/components/layout/PageHeader";
import { DownloadManager } from "@/components/downloads/DownloadManager";
export default function DownloadsPage() {
return (
<>
<PageHeader title="Téléchargements" description="Gérez vos livres disponibles hors ligne" />
<DownloadManager />
</>
);
}