Add downloads page

This commit is contained in:
2025-11-06 22:06:09 -07:00
parent b638f30a18
commit 0761c87854
3 changed files with 73 additions and 0 deletions

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

@@ -0,0 +1,61 @@
import Link from 'next/link'
import { Metadata } from 'next'
import { HomeButton } from '../components/HomeButton'
export const metadata: Metadata = {
title: 'Lncvrt Games - Download'
}
export default function DownloadPage () {
return (
<div className='box'>
<HomeButton />
<p className='text-center text-4xl'>Downloads</p>
<p className='text-center text-[18px] mb-2'>
The official downloads for Lncvrt Games Launcher
</p>
<div className='downloads'>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-win-x64.msi'
draggable={false}
>
Windows (x64)
</Link>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-win-arm64.msi'
draggable={false}
>
Windows (arm64)
</Link>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-macos-silicon.dmg'
draggable={false}
>
macOS (apple silicon)
</Link>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-macos-intel.dmg'
draggable={false}
>
macOS (intel)
</Link>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-linux.deb'
draggable={false}
>
Linux (debian)
</Link>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-linux.rpm'
draggable={false}
>
Linux (rehl/fedora)
</Link>
</div>
<p className='mt-2 text-center'>
Looking for mobile downloads? Select your game{' '}
<Link href='/'>here</Link>
</p>
</div>
)
}

View File

@@ -54,3 +54,7 @@ body {
.home-button svg { .home-button svg {
@apply h-5 w-5; @apply h-5 w-5;
} }
p a {
@apply text-cyan-300 underline;
}

View File

@@ -85,6 +85,14 @@ export default function Home () {
<span>Berry Dash Custom</span> <span>Berry Dash Custom</span>
</Link> </Link>
</div> </div>
<p className='text-2xl mt-4 mb-1 text-center'>
Looking for launcher downloads?
</p>
<div className='downloads'>
<Link href='/download' draggable={false}>
Download for Windows, macOS, or Linux
</Link>
</div>
</div> </div>
) )
} }