4 Commits

Author SHA1 Message Date
57ed5baaec Update src/app/page.tsx 2026-04-28 17:38:57 +00:00
1898774fdc Merge version_3 into main
Merge version_3 into main
2026-04-28 17:38:16 +00:00
8dc4f6309d Update src/app/page.tsx 2026-04-28 17:38:12 +00:00
5bb5c00781 Merge version_2 into main
Merge version_2 into main
2026-04-28 17:37:22 +00:00

View File

@@ -7,7 +7,7 @@ import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleC
import FeatureBento from '@/components/sections/feature/FeatureBento';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Users, Palette, MessageCircle, User, Briefcase } from "lucide-react";
import { Users, Palette, MessageCircle, User, Dices } from "lucide-react";
export default function LandingPage() {
return (
@@ -54,9 +54,9 @@ export default function LandingPage() {
title="Game Features"
description="Explore the exciting tools we built to make your game better."
features={[
{ title: "Real-time Multiplayer", description: "Play globally.", bentoComponent: "reveal-icon", icon: Users },
{ title: "Custom Themes", description: "Personalize board looks.", bentoComponent: "reveal-icon", icon: Palette },
{ title: "Live Social Chat", description: "Connect with friends.", bentoComponent: "chat", aiIcon: MessageCircle, userIcon: User, exchanges: [{ userMessage: "Nice roll!", aiResponse: "Haha, luck is on my side!" }], placeholder: "Send a message..." }
{ title: "Real-time Multiplayer", description: "Challenge friends and rivals across the globe in real-time matches.", bentoComponent: "reveal-icon", icon: Users },
{ title: "Custom Themes", description: "Express your unique style with fully customizable board designs and pieces.", bentoComponent: "reveal-icon", icon: Palette },
{ title: "Live Social Chat", description: "Stay connected and share the thrill of victory through live in-game chat.", bentoComponent: "chat", aiIcon: MessageCircle, userIcon: User, exchanges: [{ userMessage: "Nice roll!", aiResponse: "Haha, luck is on my side!" }], placeholder: "Send a message..." }
]}
/>
</div>
@@ -67,7 +67,7 @@ export default function LandingPage() {
title="Simple & Fun Mechanics"
description="Roll the dice, move your pieces, and be the first to reach home! It's that simple and incredibly addictive."
subdescription="Learn the ropes in minutes and dominate the board in hours."
icon={Briefcase}
icon={Dices}
imageSrc="http://img.b2bpic.net/free-photo/gamers-having-fun-while-playing-videogames_23-2149142708.jpg"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -83,4 +83,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}