Add BDWGC page
This commit is contained in:
75
src/app/game/berry-dash-with-guns-custom/page.tsx
Normal file
75
src/app/game/berry-dash-with-guns-custom/page.tsx
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import Image from 'next/image'
|
||||||
|
import { Swiper, SwiperSlide } from 'swiper/react'
|
||||||
|
import { Navigation, Keyboard } from 'swiper/modules'
|
||||||
|
import 'swiper/css'
|
||||||
|
import 'swiper/css/navigation'
|
||||||
|
import Link from 'next/link'
|
||||||
|
import { useEffect } from 'react'
|
||||||
|
import { HomeButton } from '@/app/components/HomeButton'
|
||||||
|
|
||||||
|
export default function BerryDashGameInfo () {
|
||||||
|
useEffect(() => {
|
||||||
|
document.title = 'Lncvrt Games - Berry Dash with Guns Custom'
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='box text-center'>
|
||||||
|
<HomeButton />
|
||||||
|
<p className='text-4xl'>Berry Dash with Guns Custom</p>
|
||||||
|
<p>
|
||||||
|
Berry Dash with Guns Custom is similar to Berry Dash with Guns, but with
|
||||||
|
a second player added and more!
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The game does not contain any gore and is simply a pixel gun and pixel
|
||||||
|
bullet.
|
||||||
|
</p>
|
||||||
|
<p className='text-2xl mt-4 mb-1'>Screenshots</p>
|
||||||
|
<Swiper
|
||||||
|
modules={[Keyboard, Navigation]}
|
||||||
|
navigation
|
||||||
|
keyboard={{ enabled: true }}
|
||||||
|
className='screenshots-gallery mx-auto max-w-[960px] w-[calc(100vw-64px)]'
|
||||||
|
>
|
||||||
|
<SwiperSlide>
|
||||||
|
<Image
|
||||||
|
src={
|
||||||
|
'https://cdn-r2.lncvrt.xyz/games/screenshots/berry-dash-with-guns-custom/playing-1.png'
|
||||||
|
}
|
||||||
|
width={960}
|
||||||
|
height={540}
|
||||||
|
alt=''
|
||||||
|
/>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<Image
|
||||||
|
src={
|
||||||
|
'https://cdn-r2.lncvrt.xyz/games/screenshots/berry-dash-with-guns-custom/playing-2.png'
|
||||||
|
}
|
||||||
|
width={960}
|
||||||
|
height={540}
|
||||||
|
alt=''
|
||||||
|
/>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<Image
|
||||||
|
src={
|
||||||
|
'https://cdn-r2.lncvrt.xyz/games/screenshots/berry-dash-with-guns-custom/stats.png'
|
||||||
|
}
|
||||||
|
width={960}
|
||||||
|
height={540}
|
||||||
|
alt=''
|
||||||
|
/>
|
||||||
|
</SwiperSlide>
|
||||||
|
</Swiper>
|
||||||
|
<p className='text-2xl mt-4 mb-1'>Downloads</p>
|
||||||
|
<div className='downloads'>
|
||||||
|
<Link href='/download' draggable={false}>
|
||||||
|
Windows, macOS, or Linux
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -39,16 +39,6 @@ export default function Home () {
|
|||||||
</div>
|
</div>
|
||||||
<p className='text-center text-xl mt-2'>Spinoffs</p>
|
<p className='text-center text-xl mt-2'>Spinoffs</p>
|
||||||
<div className='games-grid'>
|
<div className='games-grid'>
|
||||||
<Link href='/game/berry-dash-with-guns' draggable={false}>
|
|
||||||
<Image
|
|
||||||
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-with-guns.png'}
|
|
||||||
width={64}
|
|
||||||
height={64}
|
|
||||||
draggable={false}
|
|
||||||
alt=''
|
|
||||||
/>
|
|
||||||
<span>Berry Dash with Guns</span>
|
|
||||||
</Link>
|
|
||||||
<Link href='/game/berry-dash-lite' draggable={false}>
|
<Link href='/game/berry-dash-lite' draggable={false}>
|
||||||
<Image
|
<Image
|
||||||
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-lite.png'}
|
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-lite.png'}
|
||||||
@@ -59,11 +49,31 @@ export default function Home () {
|
|||||||
/>
|
/>
|
||||||
<span>Berry Dash Lite</span>
|
<span>Berry Dash Lite</span>
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link href='/game/berry-dash-with-guns' draggable={false}>
|
||||||
|
<Image
|
||||||
|
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-with-guns.png'}
|
||||||
|
width={64}
|
||||||
|
height={64}
|
||||||
|
draggable={false}
|
||||||
|
alt=''
|
||||||
|
/>
|
||||||
|
<span>Berry Dash with Guns</span>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<p className='text-center text-xl mt-2'>
|
<p className='text-center text-xl mt-2'>
|
||||||
Non-official but Verified games
|
Non-official but Verified games
|
||||||
</p>
|
</p>
|
||||||
<div className='games-grid'>
|
<div className='games-grid'>
|
||||||
|
<Link href='/game/berry-dash-custom' draggable={false}>
|
||||||
|
<Image
|
||||||
|
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-custom.png'}
|
||||||
|
width={64}
|
||||||
|
height={64}
|
||||||
|
draggable={false}
|
||||||
|
alt=''
|
||||||
|
/>
|
||||||
|
<span>Berry Dash Custom</span>
|
||||||
|
</Link>
|
||||||
<Link href='/game/berry-dash-godot-remake' draggable={false}>
|
<Link href='/game/berry-dash-godot-remake' draggable={false}>
|
||||||
<Image
|
<Image
|
||||||
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-godot-remake.png'}
|
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-godot-remake.png'}
|
||||||
@@ -74,15 +84,17 @@ export default function Home () {
|
|||||||
/>
|
/>
|
||||||
<span>Berry Dash Godot Remake</span>
|
<span>Berry Dash Godot Remake</span>
|
||||||
</Link>
|
</Link>
|
||||||
<Link href='/game/berry-dash-custom' draggable={false}>
|
<Link href='/game/berry-dash-with-guns-custom' draggable={false}>
|
||||||
<Image
|
<Image
|
||||||
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-custom.png'}
|
src={
|
||||||
|
'https://cdn-r2.lncvrt.xyz/games/berry-dash-with-guns-custom.png'
|
||||||
|
}
|
||||||
width={64}
|
width={64}
|
||||||
height={64}
|
height={64}
|
||||||
draggable={false}
|
draggable={false}
|
||||||
alt=''
|
alt=''
|
||||||
/>
|
/>
|
||||||
<span>Berry Dash Custom</span>
|
<span>Berry Dash with Guns Custom</span>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<p className='text-2xl mt-4 mb-1 text-center'>
|
<p className='text-2xl mt-4 mb-1 text-center'>
|
||||||
|
|||||||
Reference in New Issue
Block a user