fix: adjust the heading and text below it in downloads and SVR.JS mods pages
This commit is contained in:
parent
faf033d3c4
commit
ee1af7e4c3
2 changed files with 25 additions and 3 deletions
|
@ -63,7 +63,15 @@ const DownloadPage: React.FC = () => {
|
|||
Downloads
|
||||
</h1>
|
||||
<p className="md:text-lg text-muted-foreground text-start mb-6">
|
||||
Get all the latest version of SVR.JS download and compiled Files here!
|
||||
Get all the latest version of SVR.JS here! Other SVR.JS downloads can be
|
||||
found in{" "}
|
||||
<Link
|
||||
href="https://downloads.svrjs.org"
|
||||
className="font-light text-white hover:underline"
|
||||
>
|
||||
SVR.JS downloads server
|
||||
</Link>
|
||||
.
|
||||
</p>
|
||||
{error && <p className="text-red-500">{error}</p>}
|
||||
<Table>
|
||||
|
|
|
@ -59,10 +59,24 @@ const ModsPage: React.FC = () => {
|
|||
className="wrapper container py-24 md:py-28 gap-2 flex flex-col"
|
||||
>
|
||||
<h1 className="text-3xl md:text-5xl pb-1 md:pb-2 font-bold text-black dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-b dark:from-white dark:to-neutral-400">
|
||||
SvrJS Mods
|
||||
SVR.JS mods
|
||||
</h1>
|
||||
<p className="md:text-lg text-muted-foreground text-start mb-6">
|
||||
Get all the latest version of SVR.JS Mods and compiled Files here!{" "}
|
||||
Get all the latest version of SVR.JS mods here! Notes can be found at{" "}
|
||||
<Link
|
||||
href="/docs/mod-notes"
|
||||
className="font-light text-white hover:underline"
|
||||
>
|
||||
“SVR.JS mod notes” section in SVR.JS documentation
|
||||
</Link>
|
||||
. Other SVR.JS mods downloads can be found in{" "}
|
||||
<Link
|
||||
href="https://downloads.svrjs.org/mods"
|
||||
className="font-light text-white hover:underline"
|
||||
>
|
||||
SVR.JS downloads server
|
||||
</Link>
|
||||
.
|
||||
</p>
|
||||
{error && <p className="text-red-500">{error}</p>}
|
||||
<Table>
|
||||
|
|
Loading…
Reference in a new issue