Initial commit

This commit is contained in:
2025-11-05 17:03:35 -07:00
commit 5ae6b8b45f
32 changed files with 2030 additions and 0 deletions

96
src/app/page.tsx Normal file
View File

@@ -0,0 +1,96 @@
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 = {
title: 'Lncvrt Games - Home',
description: 'A collection of games made by Lncvrt and others'
}
export default function Home () {
return (
<div className='box'>
<p className='text-center text-4xl'>Lncvrt Games</p>
<p className='text-center text-[18px] mb-4'>
A collection of games made by Lncvrt and others
</p>
<p className='text-center text-xl mt-2'>Main Games</p>
<div className='games-grid'>
<Link href='/game/berry-dash' draggable={false}>
<Image
src={berryDash}
width={64}
height={64}
draggable={false}
alt=''
/>
<span>Berry Dash</span>
</Link>
<Link href='/game/triangles' draggable={false}>
<Image
src={triangles}
width={64}
height={64}
draggable={false}
alt=''
/>
<span>Triangles</span>
</Link>
</div>
{/* <p className='text-center text-xl mt-2'>Spinoffs</p>
<div className='games-grid'>
<Link href='/game/berry-dash-with-guns' draggable={false}>
<Image
src={berryDashWithGuns}
width={64}
height={64}
draggable={false}
alt=''
/>
<span>Berry Dash with Guns</span>
</Link>
<Link href='/game/berry-dash-lite' draggable={false}>
<Image
src={berryDashLite}
width={64}
height={64}
draggable={false}
alt=''
/>
<span>Berry Dash Lite</span>
</Link>
</div>
<p className='text-center text-xl mt-2'>
Non-official but Verified games
</p>
<div className='games-grid'>
<Link href='/game/berry-dash-godot-remake' draggable={false}>
<Image
src={berryDashGodotRemake}
width={64}
height={64}
draggable={false}
alt=''
/>
<span>Berry Dash Godot Remake</span>
</Link>
<Link href='/game/berry-dash-custom' draggable={false}>
<Image
src={berryDashCustom}
width={64}
height={64}
draggable={false}
alt=''
/>
<span>Berry Dash Custom</span>
</Link>
</div> */}
</div>
)
}