Change icon urls

This commit is contained in:
2025-11-05 18:04:16 -07:00
parent 5ae6b8b45f
commit 44219b0162
21 changed files with 80 additions and 34 deletions

View File

@@ -1,11 +1,5 @@
import Image from 'next/image'
import Link from 'next/link'
import berryDash from '@/assets/berry-dash.png'
import triangles from '@/assets/triangles.png'
import berryDashWithGuns from '@/assets/berry-dash-with-guns.png'
import berryDashLite from '@/assets/berry-dash-lite.png'
import berryDashGodotRemake from '@/assets/berry-dash-godot-remake.png'
import berryDashCustom from '@/assets/berry-dash-custom.png'
import { Metadata } from 'next'
export const metadata: Metadata = {
@@ -24,7 +18,7 @@ export default function Home () {
<div className='games-grid'>
<Link href='/game/berry-dash' draggable={false}>
<Image
src={berryDash}
src={'cdn-r2.lncvrt.xyz/games/berry-dash.png'}
width={64}
height={64}
draggable={false}
@@ -34,7 +28,7 @@ export default function Home () {
</Link>
<Link href='/game/triangles' draggable={false}>
<Image
src={triangles}
src={'cdn-r2.lncvrt.xyz/games/triangles.png'}
width={64}
height={64}
draggable={false}
@@ -47,7 +41,7 @@ export default function Home () {
<div className='games-grid'>
<Link href='/game/berry-dash-with-guns' draggable={false}>
<Image
src={berryDashWithGuns}
src={'cdn-r2.lncvrt.xyz/games/berry-dash-with-guns.png'}
width={64}
height={64}
draggable={false}
@@ -57,7 +51,7 @@ export default function Home () {
</Link>
<Link href='/game/berry-dash-lite' draggable={false}>
<Image
src={berryDashLite}
src={'cdn-r2.lncvrt.xyz/games/berry-dash-lite.png'}
width={64}
height={64}
draggable={false}
@@ -72,7 +66,7 @@ export default function Home () {
<div className='games-grid'>
<Link href='/game/berry-dash-godot-remake' draggable={false}>
<Image
src={berryDashGodotRemake}
src={'cdn-r2.lncvrt.xyz/games/berry-dash-godot-remake.png'}
width={64}
height={64}
draggable={false}
@@ -82,7 +76,7 @@ export default function Home () {
</Link>
<Link href='/game/berry-dash-custom' draggable={false}>
<Image
src={berryDashCustom}
src={'cdn-r2.lncvrt.xyz/games/berry-dash-custom.png'}
width={64}
height={64}
draggable={false}