From 8129fc4cf298f18af573bf02aa6a00f03b446d61 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Thu, 6 Nov 2025 21:56:47 -0700 Subject: [PATCH] Add the rest of the games to the site --- src/app/game/berry-dash-custom/page.tsx | 106 ++++++++++++++++++ src/app/game/berry-dash-godot-remake/page.tsx | 65 +++++++++++ src/app/game/berry-dash-lite/page.tsx | 81 +++++++++++++ src/app/game/berry-dash-with-guns/page.tsx | 80 +++++++++++++ src/app/page.tsx | 4 +- 5 files changed, 334 insertions(+), 2 deletions(-) create mode 100644 src/app/game/berry-dash-custom/page.tsx create mode 100644 src/app/game/berry-dash-godot-remake/page.tsx create mode 100644 src/app/game/berry-dash-lite/page.tsx create mode 100644 src/app/game/berry-dash-with-guns/page.tsx diff --git a/src/app/game/berry-dash-custom/page.tsx b/src/app/game/berry-dash-custom/page.tsx new file mode 100644 index 0000000..d263abf --- /dev/null +++ b/src/app/game/berry-dash-custom/page.tsx @@ -0,0 +1,106 @@ +'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' + +export default function BerryDashGameInfo () { + useEffect(() => { + document.title = 'Lncvrt Games - Berry Dash Custom' + }, []) + + return ( +
+
+ + home + +
+

Berry Dash Custom

+

+ Berry Dash Custom is similar to Berry Dash Lite, but with a bit more and + also new berries and other custom stuff. +

+

Screenshots

+ + + + + + + + + + + + + + + + + +

Downloads

+
+ + Android + + + iOS + + + Windows, macOS, or Linux + +
+
+ ) +} diff --git a/src/app/game/berry-dash-godot-remake/page.tsx b/src/app/game/berry-dash-godot-remake/page.tsx new file mode 100644 index 0000000..9a32bfb --- /dev/null +++ b/src/app/game/berry-dash-godot-remake/page.tsx @@ -0,0 +1,65 @@ +'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' + +export default function BerryDashGameInfo () { + useEffect(() => { + document.title = 'Lncvrt Games - Berry Dash Godot Remake' + }, []) + + return ( +
+
+ + home + +
+

Berry Dash Godot Remake

+

+ Berry Dash Godot Remake is a recreation of Berry Dash 1.0 in the Godot + Game engine. +

+

Currently, it is a bit basic but more features will be added soon!

+

Screenshots

+ + + + + + + + +

Downloads

+
+ + Windows, macOS, or Linux + +
+
+ ) +} diff --git a/src/app/game/berry-dash-lite/page.tsx b/src/app/game/berry-dash-lite/page.tsx new file mode 100644 index 0000000..8ef9118 --- /dev/null +++ b/src/app/game/berry-dash-lite/page.tsx @@ -0,0 +1,81 @@ +'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' + +export default function BerryDashGameInfo () { + useEffect(() => { + document.title = 'Lncvrt Games - Berry Dash Lite' + }, []) + + return ( +
+
+ + home + +
+

Berry Dash Lite

+

+ Berry Dash Lite is based on Berry Dash, without any online stuff and + only includes the game player, stats, and settings. +

+

Everything inside the game player can be found in the normal game.

+

+ It exists as a option to play if you are somewhere without internet + access but want to play Berry Dash +

+

Screenshots

+ + + + + + + + +

Downloads

+
+ + Android + + + iOS + + + Windows, macOS, or Linux + +
+
+ ) +} diff --git a/src/app/game/berry-dash-with-guns/page.tsx b/src/app/game/berry-dash-with-guns/page.tsx new file mode 100644 index 0000000..d7d441c --- /dev/null +++ b/src/app/game/berry-dash-with-guns/page.tsx @@ -0,0 +1,80 @@ +'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' + +export default function BerryDashGameInfo () { + useEffect(() => { + document.title = 'Lncvrt Games - Berry Dash with Guns' + }, []) + + return ( +
+
+ + home + +
+

Berry Dash with GUns

+

+ Berry Dash with Guns is well, as the name implies berry dash but with + guns added. +

+

+ The game does not contain any gore and is simply a pixel gun and pixel + bullet. +

+

Screenshots

+ + + + + + + + +

Downloads

+
+ + Android + + + iOS + + + Windows, macOS, or Linux + +
+
+ ) +} diff --git a/src/app/page.tsx b/src/app/page.tsx index b2148a1..6902f66 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,7 +37,7 @@ export default function Home () { Triangles - {/*

Spinoffs

+

Spinoffs

Berry Dash Custom -
*/} + ) }