Update to many things

This commit is contained in:
2025-12-20 17:28:36 -07:00
parent 4747d1cae4
commit 832bd6f27d
11 changed files with 69 additions and 63 deletions

View File

@@ -16,41 +16,47 @@ export default function DownloadPage () {
</p>
<div className='downloads'>
<Link
href='https://archive.org/download/lncvrt-games-launcher/Lncvrt-Games-Launcher-1.0.1-win-x64.msi'
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.1-win-arm64.msi'
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.1-macos-silicon.dmg'
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.1-macos-intel.dmg'
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.1-linux.deb'
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.1-linux.rpm'
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{' '}

View File

@@ -27,7 +27,7 @@ export default function BerryDashCustomGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -28,7 +28,7 @@ export default function BerryDashGodotRemakeGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -32,7 +32,7 @@ export default function BerryDashLiteGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -31,7 +31,7 @@ export default function BerryDashWithGunsCustomGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -31,7 +31,7 @@ export default function BerryDashWithGunsGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -31,7 +31,7 @@ export default function BerryDashGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -28,7 +28,7 @@ export default function TrianglesGameInfo () {
modules={[Keyboard, Navigation]}
navigation
keyboard={{ enabled: true }}
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
className='screenshots-gallery mx-auto max-w-240 w-[calc(100vw-64px)]'
>
<SwiperSlide>
<Image

View File

@@ -15,7 +15,7 @@ body {
.games-grid a {
@apply flex flex-col items-center justify-center px-5 py-2.5 m-1 bg-[rgb(64,64,88)] border border-[rgb(88,88,112)] rounded-lg transition-all duration-200;
@apply hover:bg-[rgb(88,88,112)] hover:border-[rgb(112,112,136)] hover:-translate-y-0.5 min-w-[120px] w-auto h-32 shadow shadow-[rgba(0,0,0,0.5)];
@apply hover:bg-[rgb(88,88,112)] hover:border-[rgb(112,112,136)] hover:-translate-y-0.5 min-w-30 w-auto h-32 shadow shadow-[rgba(0,0,0,0.5)];
}
.games-grid a img {