68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
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.2-win-x64.msi'
|
|
draggable={false}
|
|
>
|
|
Windows (x64)
|
|
</Link>
|
|
<Link
|
|
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.2-win-arm64.msi'
|
|
draggable={false}
|
|
>
|
|
Windows (arm64)
|
|
</Link>
|
|
<Link
|
|
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.2-macos-silicon.dmg'
|
|
draggable={false}
|
|
>
|
|
macOS (apple silicon)
|
|
</Link>
|
|
<Link
|
|
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.2-macos-intel.dmg'
|
|
draggable={false}
|
|
>
|
|
macOS (intel)
|
|
</Link>
|
|
<Link
|
|
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.2-linux.deb'
|
|
draggable={false}
|
|
>
|
|
Linux (debian)
|
|
</Link>
|
|
<Link
|
|
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.2-linux.rpm'
|
|
draggable={false}
|
|
>
|
|
Linux (rehl/fedora)
|
|
</Link>
|
|
<Link
|
|
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.2-linux.rpm'
|
|
draggable={false}
|
|
>
|
|
Linux (appimage/universal)
|
|
</Link>
|
|
</div>
|
|
<p className='mt-2 text-center'>
|
|
Looking for mobile downloads? Select your game{' '}
|
|
<Link href='/'>here</Link>
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|