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>
|
||||
)
|
||||
}
|
||||
@@ -54,3 +54,7 @@ body {
|
||||
.home-button svg {
|
||||
@apply h-5 w-5;
|
||||
}
|
||||
|
||||
p a {
|
||||
@apply text-cyan-300 underline;
|
||||
}
|
||||
|
||||
@@ -85,6 +85,14 @@ export default function Home () {
|
||||
<span>Berry Dash Custom</span>
|
||||
</Link>
|
||||
</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>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user