diff --git a/src/app/download/page.tsx b/src/app/download/page.tsx new file mode 100644 index 0000000..5567521 --- /dev/null +++ b/src/app/download/page.tsx @@ -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 ( +
+ +

Downloads

+

+ The official downloads for Lncvrt Games Launcher +

+
+ + Windows (x64) + + + Windows (arm64) + + + macOS (apple silicon) + + + macOS (intel) + + + Linux (debian) + + + Linux (rehl/fedora) + +
+

+ Looking for mobile downloads? Select your game{' '} + here +

+
+ ) +} diff --git a/src/app/globals.css b/src/app/globals.css index f643223..cc9b9e1 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -54,3 +54,7 @@ body { .home-button svg { @apply h-5 w-5; } + +p a { + @apply text-cyan-300 underline; +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 6902f66..9eaa633 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -85,6 +85,14 @@ export default function Home () { Berry Dash Custom +

+ Looking for launcher downloads? +

+
+ + Download for Windows, macOS, or Linux + +
) }