Add downloads page
This commit is contained in:
61
src/app/download/page.tsx
Normal file
61
src/app/download/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user