Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-04-08 02:20:25 +00:00
4 changed files with 59 additions and 287 deletions

View File

@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Predictions",
id: "/predictions",
},
{
name: "Casino",
id: "/casino",
},
{
name: "Dashboard",
id: "/dashboard",
},
{ name: "Home", id: "/" },
{ name: "Predictions", id: "/predictions" },
{ name: "Casino", id: "/casino" },
{ name: "Dashboard", id: "/dashboard" },
]}
brandName="PulseGame"
button={{ text: "Play Now", href: "/predictions" }}
/>
</div>
@@ -55,20 +44,8 @@ export default function LandingPage() {
title="Casino Floor"
description="Explore our games"
products={[
{
id: "1",
name: "Classic Dice",
price: "2",
variant: "New",
imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg?_wi=5",
},
{
id: "2",
name: "Poker Tables",
price: "50",
variant: "Pro",
imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg?_wi=4",
},
{ id: "1", name: "Classic Dice", price: "2", variant: "New", imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg" },
{ id: "2", name: "Poker Tables", price: "50", variant: "Pro", imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg" },
]}
/>
</div>
@@ -81,16 +58,7 @@ export default function LandingPage() {
title="VIP Tiers"
description="Exclusive benefits"
plans={[
{
id: "1",
badge: "Gold",
price: "$99",
subtitle: "Basic access",
features: [
"Fast support",
"Daily rewards",
],
},
{ id: "1", badge: "Gold", price: "$99", subtitle: "Basic access", features: ["Fast support", "Daily rewards"] },
]}
/>
</div>
@@ -98,14 +66,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PulseGame"
leftLink={{
text: "Terms of Service",
href: "/terms",
}}
rightLink={{
text: "Privacy Policy",
href: "/privacy",
}}
leftLink={{ text: "Terms of Service", href: "/terms" }}
rightLink={{ text: "Privacy Policy", href: "/privacy" }}
/>
</div>
</ReactLenis>

View File

@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Predictions",
id: "/predictions",
},
{
name: "Casino",
id: "/casino",
},
{
name: "Dashboard",
id: "/dashboard",
},
{ name: "Home", id: "/" },
{ name: "Predictions", id: "/predictions" },
{ name: "Casino", id: "/casino" },
{ name: "Dashboard", id: "/dashboard" },
]}
brandName="PulseGame"
button={{ text: "Play Now", href: "/predictions" }}
/>
</div>
@@ -53,10 +42,7 @@ export default function LandingPage() {
rating={5}
author="John Doe"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/blond-teenager-soccer-player-dressed-blue-uniform-plays-with-ball_613910-1510.jpg",
alt: "user",
},
{ src: "http://img.b2bpic.net/free-photo/blond-teenager-soccer-player-dressed-blue-uniform-plays-with-ball_613910-1510.jpg", alt: "user" },
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
@@ -71,20 +57,8 @@ export default function LandingPage() {
title="My Activity"
description="Personal stats"
metrics={[
{
id: "1",
value: "12",
title: "Total Wins",
description: "Personal best",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m&_wi=4",
},
{
id: "2",
value: "5",
title: "Active Streaks",
description: "Rising fast",
imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg?_wi=4",
},
{ id: "1", value: "12", title: "Total Wins", description: "Personal best", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m" },
{ id: "2", value: "5", title: "Active Streaks", description: "Rising fast", imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg" },
]}
/>
</div>
@@ -92,14 +66,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PulseGame"
leftLink={{
text: "Terms of Service",
href: "/terms",
}}
rightLink={{
text: "Privacy Policy",
href: "/privacy",
}}
leftLink={{ text: "Terms of Service", href: "/terms" }}
rightLink={{ text: "Privacy Policy", href: "/privacy" }}
/>
</div>
</ReactLenis>

View File

@@ -9,6 +9,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Zap, Dices, Wallet, ShieldCheck, Headphones } from 'lucide-react';
export default function LandingPage() {
return (
@@ -28,24 +29,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Predictions",
id: "/predictions",
},
{
name: "Casino",
id: "/casino",
},
{
name: "Dashboard",
id: "/dashboard",
},
{ name: "Home", id: "/" },
{ name: "Predictions", id: "/predictions" },
{ name: "Casino", id: "/casino" },
{ name: "Dashboard", id: "/dashboard" },
]}
brandName="PulseGame"
button={{ text: "Get Started", href: "/dashboard" }}
/>
</div>
@@ -54,14 +44,8 @@ export default function LandingPage() {
logoText="PulseGame"
description="Experience the next level of color prediction and casino gaming. Secure, fast, and fair play for every user."
buttons={[
{
text: "Play Now",
href: "/predictions",
},
{
text: "Learn More",
href: "#features",
},
{ text: "Play Now", href: "/predictions" },
{ text: "Learn More", href: "#features" },
]}
imageSrc="http://img.b2bpic.net/free-photo/abstract-uv-ultraviolet-light-composition_23-2149243964.jpg"
imageAlt="PulseGame Gaming Platform"
@@ -73,36 +57,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "Fast Rounds",
description: "Rapid 30-second color prediction rounds.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m&_wi=1",
buttonIcon: "Zap",
},
{
title: "Casino Variety",
description: "Classic and modern casino games at your fingertips.",
imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg?_wi=1",
buttonIcon: "Dices",
},
{
title: "Virtual Wallet",
description: "Seamless deposit and withdrawal simulations.",
imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg?_wi=1",
buttonIcon: "Wallet",
},
{
title: "Fair Logic",
description: "Transparent game results with proven anti-cheat.",
imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg?_wi=1",
buttonIcon: "ShieldCheck",
},
{
title: "24/7 Support",
description: "Round-the-clock assistance for all players.",
imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg?_wi=2",
buttonIcon: "Headphones",
},
{ title: "Fast Rounds", description: "Rapid 30-second color prediction rounds.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m", buttonIcon: Zap },
{ title: "Casino Variety", description: "Classic and modern casino games at your fingertips.", imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg", buttonIcon: Dices },
{ title: "Virtual Wallet", description: "Seamless deposit and withdrawal simulations.", imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg", buttonIcon: Wallet },
{ title: "Fair Logic", description: "Transparent game results with proven anti-cheat.", imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg", buttonIcon: ShieldCheck },
{ title: "24/7 Support", description: "Round-the-clock assistance for all players.", imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg", buttonIcon: Headphones },
]}
title="Elite Gaming Features"
description="Engineered for speed, security, and maximum engagement."
@@ -115,41 +74,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Alex Riv",
handle: "@alexriv",
testimonial: "The best prediction app I've used. Fast payouts!",
imageSrc: "http://img.b2bpic.net/free-photo/blond-teenager-soccer-player-dressed-blue-uniform-plays-with-ball_613910-1510.jpg",
},
{
id: "2",
name: "Sarah Lee",
handle: "@slee_gaming",
testimonial: "Incredible graphics and smooth gameplay every time.",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-middle-aged-blonde-slavic-woman-standing-profile-view-wearing-headphones-holding-looking-mobile-phone-isolated-crimson-background-with-copy-space_141793-76682.jpg",
},
{
id: "3",
name: "Mike Ross",
handle: "@ross_pro",
testimonial: "Fair games and great analytics. Strongly recommended.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-bearded-video-gamer-front-his-pc_482257-31725.jpg",
},
{
id: "4",
name: "Jen K",
handle: "@jenk_games",
testimonial: "Love the casino section, especially the dice game!",
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-handsome-afro-american-male-elegant-brown-jacket-hat-isolated-dark-background_613910-17811.jpg",
},
{
id: "5",
name: "Emma W",
handle: "@emmaw_dev",
testimonial: "Secure and stable. The referral program is a nice touch.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-man-earphones-dark-haired-man-casual-clothes-looking-camera-portrait-concept_74855-24635.jpg",
},
{ id: "1", name: "Alex Riv", handle: "@alexriv", testimonial: "The best prediction app I've used. Fast payouts!", imageSrc: "http://img.b2bpic.net/free-photo/blond-teenager-soccer-player-dressed-blue-uniform-plays-with-ball_613910-1510.jpg" },
{ id: "2", name: "Sarah Lee", handle: "@slee_gaming", testimonial: "Incredible graphics and smooth gameplay every time.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-middle-aged-blonde-slavic-woman-standing-profile-view-wearing-headphones-holding-looking-mobile-phone-isolated-crimson-background-with-copy-space_141793-76682.jpg" },
{ id: "3", name: "Mike Ross", handle: "@ross_pro", testimonial: "Fair games and great analytics. Strongly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-bearded-video-gamer-front-his-pc_482257-31725.jpg" },
{ id: "4", name: "Jen K", handle: "@jenk_games", testimonial: "Love the casino section, especially the dice game!", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-handsome-afro-american-male-elegant-brown-jacket-hat-isolated-dark-background_613910-17811.jpg" },
{ id: "5", name: "Emma W", handle: "@emmaw_dev", testimonial: "Secure and stable. The referral program is a nice touch.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-man-earphones-dark-haired-man-casual-clothes-looking-camera-portrait-concept_74855-24635.jpg" },
]}
title="Player Community"
description="See why thousands of players trust PulseGame."
@@ -164,34 +93,10 @@ export default function LandingPage() {
title="Platform Success"
description="Evidence of our growing community and impact."
metrics={[
{
id: "1",
value: "50K+",
title: "Active Players",
description: "Global user base",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m&_wi=2",
},
{
id: "2",
value: "1M+",
title: "Games Played",
description: "Since inception",
imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg?_wi=2",
},
{
id: "3",
value: "99.9%",
title: "Uptime",
description: "Constant availability",
imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg?_wi=3",
},
{
id: "4",
value: "24/7",
title: "Support",
description: "Always here for you",
imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg?_wi=2",
},
{ id: "1", value: "50K+", title: "Active Players", description: "Global user base", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m" },
{ id: "2", value: "1M+", title: "Games Played", description: "Since inception", imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg" },
{ id: "3", value: "99.9%", title: "Uptime", description: "Constant availability", imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg" },
{ id: "4", value: "24/7", title: "Support", description: "Always here for you", imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg" },
]}
/>
</div>
@@ -204,26 +109,10 @@ export default function LandingPage() {
description="Common inquiries answered for our users."
faqsAnimation="slide-up"
faqs={[
{
id: "1",
title: "How to get started?",
content: "Sign up and deposit to begin your journey.",
},
{
id: "2",
title: "Are my funds secure?",
content: "Yes, we use industry-standard encryption.",
},
{
id: "3",
title: "How fast are payouts?",
content: "Most payouts processed within minutes.",
},
{
id: "4",
title: "Can I play on mobile?",
content: "Fully responsive interface for all devices.",
},
{ id: "1", title: "How to get started?", content: "Sign up and deposit to begin your journey." },
{ id: "2", title: "Are my funds secure?", content: "Yes, we use industry-standard encryption." },
{ id: "3", title: "How fast are payouts?", content: "Most payouts processed within minutes." },
{ id: "4", title: "Can I play on mobile?", content: "Fully responsive interface for all devices." },
]}
/>
</div>
@@ -231,14 +120,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PulseGame"
leftLink={{
text: "Terms of Service",
href: "/terms",
}}
rightLink={{
text: "Privacy Policy",
href: "/privacy",
}}
leftLink={{ text: "Terms of Service", href: "/terms" }}
rightLink={{ text: "Privacy Policy", href: "/privacy" }}
/>
</div>
</ReactLenis>

View File

@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Predictions",
id: "/predictions",
},
{
name: "Casino",
id: "/casino",
},
{
name: "Dashboard",
id: "/dashboard",
},
{ name: "Home", id: "/" },
{ name: "Predictions", id: "/predictions" },
{ name: "Casino", id: "/casino" },
{ name: "Dashboard", id: "/dashboard" },
]}
brandName="PulseGame"
button={{ text: "Play Now", href: "/predictions" }}
/>
</div>
@@ -55,20 +44,8 @@ export default function LandingPage() {
title="Top Predictions"
description="Current hot games"
products={[
{
id: "1",
name: "Color Wheel",
price: "10",
variant: "Popular",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m&_wi=3",
},
{
id: "2",
name: "Number Guess",
price: "5",
variant: "Classic",
imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg?_wi=3",
},
{ id: "1", name: "Color Wheel", price: "10", variant: "Popular", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g0fx1m" },
{ id: "2", name: "Number Guess", price: "5", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-vector/abstract-dynamic-gradient-graphic-elements-modern-style-banners-with-flowing-liquid-shapes-amoeba-forms-logo-flyer-presentation-invitation-card-template-vector-illustration_1142-7742.jpg" },
]}
/>
</div>
@@ -81,20 +58,8 @@ export default function LandingPage() {
title="Live Stats"
description="Real-time updates"
metrics={[
{
id: "1",
value: "120",
title: "Current Players",
description: "In session",
imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg?_wi=4",
},
{
id: "2",
value: "4.2",
title: "Avg Win",
description: "Last 24h",
imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg?_wi=3",
},
{ id: "1", value: "120", title: "Current Players", description: "In session", imageSrc: "http://img.b2bpic.net/free-vector/web-3-0-technology-isometric-concept-with-cryptocurrency-symbols-vector-illustration_1284-75510.jpg" },
{ id: "2", value: "4.2", title: "Avg Win", description: "Last 24h", imageSrc: "http://img.b2bpic.net/free-photo/three-dimensional-casino-item_23-2151067234.jpg" },
]}
/>
</div>
@@ -102,14 +67,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PulseGame"
leftLink={{
text: "Terms of Service",
href: "/terms",
}}
rightLink={{
text: "Privacy Policy",
href: "/privacy",
}}
leftLink={{ text: "Terms of Service", href: "/terms" }}
rightLink={{ text: "Privacy Policy", href: "/privacy" }}
/>
</div>
</ReactLenis>