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"; const downloads = [ { date: "2024-06-01", fileName: "SVRJS_v1.0.0.zip", version: "1.0.0", fileSize: "15MB", downloadLink: "/downloads/SVRJS_v1.0.0.zip", }, { date: "2024-06-10", fileName: "SVRJS_v1.1.0.zip", version: "1.1.0", fileSize: "18MB", downloadLink: "/downloads/SVRJS_v1.1.0.zip", }, { date: "2024-06-15", fileName: "SVRJS_v1.2.0.zip", version: "1.2.0", fileSize: "20MB", downloadLink: "/downloads/SVRJS_v1.2.0.zip", }, { date: "2024-06-20", fileName: "SVRJS_v1.3.0.zip", version: "1.3.0", fileSize: "22MB", downloadLink: "/downloads/SVRJS_v1.3.0.zip", }, ]; const Mods = () => { return (

SvrJS Mods

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

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