Add BDU page
This commit is contained in:
45
src/app/game/berry-dash-ultimate/page.tsx
Normal file
45
src/app/game/berry-dash-ultimate/page.tsx
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
'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 BerryDashUltimateGameInfo () {
|
||||||
|
useEffect(() => {
|
||||||
|
document.title = 'Lncvrt Games - Berry Dash Ultimate'
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='box text-center'>
|
||||||
|
<HomeButton />
|
||||||
|
<p className='text-4xl'>Berry Dash Ultimate</p>
|
||||||
|
<p>
|
||||||
|
Berry Dash Ultimate is a unofficial game made by BoNoise from scratch!
|
||||||
|
It includes a lot of custom mechanics and more!
|
||||||
|
</p>
|
||||||
|
<p className='text-2xl mt-4 mb-1'>Downloads</p>
|
||||||
|
<div className='downloads'>
|
||||||
|
<Link
|
||||||
|
href='https://archive.org/download/berry-dash-archive/Berry-Dash-Ultimate-1.0.0-android.apk'
|
||||||
|
draggable={false}
|
||||||
|
>
|
||||||
|
Android
|
||||||
|
</Link>
|
||||||
|
<Link
|
||||||
|
href='https://archive.org/download/berry-dash-archive/Berry-Dash-Ultimate-1.0.0-ios.ipa'
|
||||||
|
draggable={false}
|
||||||
|
>
|
||||||
|
iOS
|
||||||
|
</Link>
|
||||||
|
<Link href='/download' draggable={false}>
|
||||||
|
Windows, macOS, or Linux
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -96,6 +96,16 @@ export default function Home () {
|
|||||||
/>
|
/>
|
||||||
<span>Berry Dash with Guns Custom</span>
|
<span>Berry Dash with Guns Custom</span>
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link href='/game/berry-dash-ultimate' draggable={false}>
|
||||||
|
<Image
|
||||||
|
src={'https://cdn-r2.lncvrt.xyz/games/berry-dash-ultimate.png'}
|
||||||
|
width={64}
|
||||||
|
height={64}
|
||||||
|
draggable={false}
|
||||||
|
alt=''
|
||||||
|
/>
|
||||||
|
<span>Berry Dash Ultimate</span>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<p className='text-2xl mt-4 mb-1 text-center'>
|
<p className='text-2xl mt-4 mb-1 text-center'>
|
||||||
Looking for launcher downloads?
|
Looking for launcher downloads?
|
||||||
|
|||||||
Reference in New Issue
Block a user