diff --git a/app/(root)/forum/page.tsx b/app/(root)/forum/page.tsx new file mode 100644 index 0000000..755fa7f --- /dev/null +++ b/app/(root)/forum/page.tsx @@ -0,0 +1,7 @@ +import React from "react"; + +const Forum = () => { + return
Forum
; +}; + +export default Forum; diff --git a/app/(root)/mods/page.tsx b/app/(root)/mods/page.tsx new file mode 100644 index 0000000..b83bb73 --- /dev/null +++ b/app/(root)/mods/page.tsx @@ -0,0 +1,91 @@ +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; diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..46ccb24 --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,19 @@ +import Link from "next/link"; + +const NotFound = () => { + return ( +
+

+ 404 Page not Found +

+

+ Please return back to{" "} + + Home + +

+
+ ); +}; + +export default NotFound; diff --git a/components/shared/HeroCards.tsx b/components/shared/HeroCards.tsx index 36c12d9..b849b50 100644 --- a/components/shared/HeroCards.tsx +++ b/components/shared/HeroCards.tsx @@ -85,7 +85,10 @@ const HeroCards = () => { - + Proxy
diff --git a/components/shared/Newsletter.tsx b/components/shared/Newsletter.tsx index 47ed963..0b7f9d7 100644 --- a/components/shared/Newsletter.tsx +++ b/components/shared/Newsletter.tsx @@ -35,6 +35,7 @@ const Newsletter = () => {

diff --git a/constants/index.tsx b/constants/index.tsx index 83f98cb..bdbb007 100644 --- a/constants/index.tsx +++ b/constants/index.tsx @@ -27,7 +27,7 @@ export const NAVBAR = { { label: "Git", target: "_blank", - href: "https://github.com/", + href: "https://git.svrjs.org/", }, ], };