import { Button } from "@/components/ui/button"; import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table"; import { Download } from "lucide-react"; import Link from "next/link"; import clientPromise from "@/lib/db"; const DownloadPage = async () => { const client = await clientPromise; const db = client.db("downloadsDatabase"); const downloads = await db.collection("downloads").find().toArray(); return (

Downloads

Get all the latest version of SVRJS download and compiled Files here!

A list of all available downloads. Date File Name Version File Size Download Link {downloads .slice() .reverse() .map((download: any) => ( {download.date} {download.fileName} {download.version} {download.fileSize} ))}
); }; export default DownloadPage;