feat: Add @radix-ui/react-tabs npm dependency and update header.tsx to include a download link

This commit is contained in:
Mauro Balades
2024-07-03 19:58:38 +02:00
parent acebd412e7
commit 80fa3d1842
7 changed files with 230 additions and 3 deletions

14
src/app/download/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import DownloadPage from "@/components/download";
import Footer from "@/components/footer";
import { Navigation } from "@/components/navigation";
export default function Download() {
return (
<main className="flex min-h-screen flex-col items-center justify-start">
<DownloadPage />
<Footer />
<Navigation /> {/* At the bottom of the page */}
</main>
);
}