17 Commits

Author SHA1 Message Date
79b8d417ee Merge version_5 into main
Merge version_5 into main
2025-12-20 15:24:44 +00:00
64d0743aed Update src/app/page.tsx 2025-12-20 15:24:40 +00:00
c70ff305fb Update src/app/layout.tsx 2025-12-20 15:24:39 +00:00
59464b3356 Merge version_5 into main
Merge version_5 into main
2025-12-20 15:22:44 +00:00
973dd02318 Update src/app/page.tsx 2025-12-20 15:22:39 +00:00
ec9d354abf Merge version_5 into main
Merge version_5 into main
2025-12-20 15:20:56 +00:00
0b652eb168 Update src/app/page.tsx 2025-12-20 15:20:52 +00:00
ced708a535 Update src/app/globals.css 2025-12-20 15:20:51 +00:00
39a3a9dcab Merge version_4 into main
Merge version_4 into main
2025-12-20 15:17:20 +00:00
db601b5707 Update src/app/page.tsx 2025-12-20 15:17:16 +00:00
66753220f1 Update src/app/layout.tsx 2025-12-20 15:17:15 +00:00
43a6e37510 Merge version_3 into main
Merge version_3 into main
2025-12-20 15:15:31 +00:00
7a380cccaf Update src/app/globals.css 2025-12-20 15:15:26 +00:00
530bafc8a8 Merge version_2 into main
Merge version_2 into main
2025-12-20 15:04:45 +00:00
82f60d54d7 Update src/app/page.tsx 2025-12-20 15:04:41 +00:00
59aa0c69cd Update src/app/layout.tsx 2025-12-20 15:04:40 +00:00
91c42553ef Update src/app/globals.css 2025-12-20 15:04:39 +00:00
3 changed files with 245 additions and 233 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #060600;;
--card: #1d1d0b;;
--foreground: #fffde6;;
--primary-cta: #facc15;;
--secondary-cta: #1f1f0a;;
--accent: #fde047;;
--background-accent: #854d0e;;
--background: #ffffff;
--card: #fcfcfc;
--foreground: #001a0ae6;
--primary-cta: #15ad59;
--secondary-cta: #ffffff;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Nunito } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunito = Nunito({
variable: "--font-nunito",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -46,10 +46,12 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={nunito.variable}
className={`${inter.variable} fixed inset-0 overflow-hidden`}
>
<Tag />
{children}
<div className="fixed inset-0 overflow-y-auto w-full">
{children}
</div>
<script
dangerouslySetInnerHTML={{

View File

@@ -1,15 +1,6 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroSplitLarge from '@/components/sections/hero/HeroSplitLarge';
import ProductCardFive from '@/components/sections/product/ProductCardFive';
import FeatureCardFourteen from '@/components/sections/feature/FeatureCardFourteen';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import AboutMetric from '@/components/sections/about/AboutMetric';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Zap, TrendingUp, BarChart3, Users, Clock, Target, Shield, DollarSign, ArrowRight } from "lucide-react";
export default function LandingPage() {
@@ -27,239 +18,258 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242507065-3x0rfkp1.png"
logoAlt="NBA Betting Pro"
brandName="OddsPlay"
navItems={[
{ name: "Live Odds", id: "live-odds" },
{ name: "How It Works", id: "how-it-works" },
{ name: "Featured Bets", id: "featured-bets" },
{ name: "About", id: "about" }
]}
button={{
text: "Start Betting",
href: "contact"
}}
buttonClassName="font-semibold px-6 py-2"
/>
<div className="flex items-center justify-between px-6 py-4 bg-gradient-to-r from-blue-600 to-purple-600 text-white">
<div className="flex items-center gap-3">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242507065-3x0rfkp1.png"
alt="OddsPlay"
className="h-8 w-auto"
/>
<span className="font-bold text-xl">OddsPlay</span>
</div>
<nav className="flex items-center gap-6">
<a href="#live-odds" className="hover:text-blue-200 transition-colors">Live Odds</a>
<a href="#how-it-works" className="hover:text-blue-200 transition-colors">How It Works</a>
<a href="#featured-bets" className="hover:text-blue-200 transition-colors">Featured Bets</a>
<a href="#about" className="hover:text-blue-200 transition-colors">About</a>
<a href="#contact" className="hover:text-blue-200 transition-colors">Contact</a>
</nav>
</div>
</div>
<div id="hero" data-section="hero">
<HeroSplitLarge
title="Live NBA Odds at Your Fingertips"
description="Get real-time team and player odds with instant updates. Experience the fastest, cleanest odds platform built for serious NBA bettors."
tag="Live Now"
tagIcon={Zap}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766169056621-4rew1u3x.jpg"
imageAlt="NBA Basketball Court"
buttons={[
{ text: "Start Betting Free", href: "contact" },
{ text: "View Live Odds", href: "live-odds" }
]}
titleClassName="text-4xl md:text-5xl font-bold"
descriptionClassName="text-lg md:text-xl opacity-90"
/>
<div className="min-h-screen flex items-center px-6">
<div className="max-w-7xl mx-auto grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div className="space-y-6">
<div className="flex items-center gap-2 px-3 py-1 bg-blue-100 text-blue-800 rounded-full w-fit">
<Zap className="w-4 h-4" />
<span className="text-sm font-medium">Live Now</span>
</div>
<h1 className="text-5xl font-bold leading-tight">Live NBA Odds at Your Fingertips</h1>
<p className="text-xl text-gray-600">Get real-time team and player odds with instant updates. Experience the fastest, cleanest odds platform built for serious NBA bettors.</p>
<div className="flex gap-4">
<a href="#contact" className="bg-blue-600 text-white px-6 py-3 rounded-full hover:bg-blue-700 transition-colors">Start Betting Free</a>
<a href="#live-odds" className="border border-blue-600 text-blue-600 px-6 py-3 rounded-full hover:bg-blue-50 transition-colors">View Live Odds</a>
</div>
</div>
<div className="lg:text-right">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766169056621-4rew1u3x.jpg"
alt="NBA Basketball Court"
className="w-full h-auto rounded-2xl shadow-2xl"
/>
</div>
</div>
</div>
</div>
<div id="live-odds" data-section="live-odds">
<ProductCardFive
title="Live NBA Odds"
description="Real-time team and player odds updated instantly. Team moneylines, spreads, totals, and player props all in one place."
textboxLayout="default"
products={[
{
id: "team-odds-1",
button: { text: "Place Bet", href: "contact" },
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg",
imageAlt: "Team Odds Display"
},
{
id: "player-props-1",
button: { text: "View Props", href: "contact" },
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg",
imageAlt: "Player Props"
},
{
id: "live-lines-1",
button: { text: "Quick Bet", href: "contact" },
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg",
imageAlt: "Live Lines"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
containerStyle="default"
useInvertedBackground="noInvert"
containerClassName="py-16 md:py-24"
/>
<div className="py-20 px-6">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4">Live NBA Odds</h2>
<p className="text-xl text-gray-600">Real-time team and player odds updated instantly. Team moneylines, spreads, totals, and player props all in one place.</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<div className="bg-white rounded-2xl shadow-lg p-6">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg"
alt="Team Odds Display"
className="w-full h-48 object-cover rounded-lg mb-4"
/>
<a href="#contact" className="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-colors inline-block">Place Bet</a>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg"
alt="Player Props"
className="w-full h-48 object-cover rounded-lg mb-4"
/>
<a href="#contact" className="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-colors inline-block">View Props</a>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg"
alt="Live Lines"
className="w-full h-48 object-cover rounded-lg mb-4"
/>
<a href="#contact" className="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-colors inline-block">Quick Bet</a>
</div>
</div>
</div>
</div>
</div>
<div id="how-it-works" data-section="how-it-works">
<FeatureCardFourteen
title="How OddsPlay is Different"
description="Built for speed, accuracy, and simplicity. No complex interfaces, just pure odds data and smart betting tools."
textboxLayout="default"
features={[
{
id: "1",
title: "Fastest Odds Updates",
description: "Millisecond-accurate odds that update faster than any competitor. See line movements before anyone else.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg",
imageAlt: "Fast Odds Updates"
},
{
id: "2",
title: "Player Props Focused",
description: "Deep dive into individual player performance metrics. Find edges in player totals, assists, and rebounds.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg",
imageAlt: "Player Props"
},
{
id: "3",
title: "Clean Interface",
description: "No cluttered dashboards. Just the data you need, organized how you want it. Fast decision-making guaranteed.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg",
imageAlt: "Clean Interface"
}
]}
useInvertedBackground="noInvert"
/>
<div className="py-20 px-6 bg-gray-50">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4">How OddsPlay is Different</h2>
<p className="text-xl text-gray-600">Built for speed, accuracy, and simplicity. No complex interfaces, just pure odds data and smart betting tools.</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<div className="bg-white rounded-2xl shadow-lg p-6">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg"
alt="Fast Odds Updates"
className="w-full h-48 object-cover rounded-lg mb-4"
/>
<h3 className="text-xl font-bold mb-2">Fastest Odds Updates</h3>
<p className="text-gray-600">Millisecond-accurate odds that update faster than any competitor. See line movements before anyone else.</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg"
alt="Player Props"
className="w-full h-48 object-cover rounded-lg mb-4"
/>
<h3 className="text-xl font-bold mb-2">Player Props Focused</h3>
<p className="text-gray-600">Deep dive into individual player performance metrics. Find edges in player totals, assists, and rebounds.</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg"
alt="Clean Interface"
className="w-full h-48 object-cover rounded-lg mb-4"
/>
<h3 className="text-xl font-bold mb-2">Clean Interface</h3>
<p className="text-gray-600">No cluttered dashboards. Just the data you need, organized how you want it. Fast decision-making guaranteed.</p>
</div>
</div>
</div>
</div>
</div>
<div id="featured-bets" data-section="featured-bets">
<MetricCardOne
title="Featured Opportunities"
description="Our analysts pick the best value bets updated daily. Get actionable insights from experienced basketball experts."
textboxLayout="default"
metrics={[
{
id: "1",
value: "89%",
title: "Win Rate",
description: "On featured team total picks this season",
icon: TrendingUp
},
{
id: "2",
value: "2.45",
title: "Avg Odds",
description: "Value picks consistently found on featured bets",
icon: BarChart3
},
{
id: "3",
value: "500K+",
title: "Daily Users",
description: "Checking OddsPlay for live odds and picks",
icon: Users
},
{
id: "4",
value: "24/7",
title: "Live Updates",
description: "Real-time odds and injury reports all season",
icon: Clock
}
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
containerStyle="default"
useInvertedBackground="noInvert"
/>
<div className="py-20 px-6">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4">Featured Opportunities</h2>
<p className="text-xl text-gray-600">Our analysts pick the best value bets updated daily. Get actionable insights from experienced basketball experts.</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<TrendingUp className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">89%</div>
<h3 className="text-lg font-bold mb-2">Win Rate</h3>
<p className="text-gray-600">On featured team total picks this season</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<BarChart3 className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">2.45</div>
<h3 className="text-lg font-bold mb-2">Avg Odds</h3>
<p className="text-gray-600">Value picks consistently found on featured bets</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<Users className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">500K+</div>
<h3 className="text-lg font-bold mb-2">Daily Users</h3>
<p className="text-gray-600">Checking OddsPlay for live odds and picks</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<Clock className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">24/7</div>
<h3 className="text-lg font-bold mb-2">Live Updates</h3>
<p className="text-gray-600">Real-time odds and injury reports all season</p>
</div>
</div>
</div>
</div>
</div>
<div id="about" data-section="about">
<AboutMetric
title="Why OddsPlay Stands Out from Bet365, PrizePicks, and the Rest"
metrics={[
{
icon: Zap,
label: "Speed",
value: "50ms"
},
{
icon: Target,
label: "Accuracy",
value: "99.9%"
},
{
icon: Shield,
label: "Security",
value: "Military Grade"
},
{
icon: DollarSign,
label: "Best Lines",
value: "Guaranteed"
}
]}
useInvertedBackground="noInvert"
/>
<div className="py-20 px-6 bg-gray-50">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4">Why OddsPlay Stands Out from Bet365, PrizePicks, and the Rest</h2>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<Zap className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">50ms</div>
<h3 className="text-lg font-bold">Speed</h3>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<Target className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">99.9%</div>
<h3 className="text-lg font-bold">Accuracy</h3>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<Shield className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">Military Grade</div>
<h3 className="text-lg font-bold">Security</h3>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6 text-center">
<DollarSign className="w-12 h-12 mx-auto mb-4 text-blue-600" />
<div className="text-3xl font-bold text-blue-600 mb-2">Guaranteed</div>
<h3 className="text-lg font-bold">Best Lines</h3>
</div>
</div>
</div>
</div>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by NBA Bettors Worldwide"
description="Join thousands of serious bettors who trust OddsPlay for accurate odds and smart insights."
textboxLayout="default"
useInvertedBackground="noInvert"
logos={[
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242508840-z1z7pij1.jpg",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766169056621-4rew1u3x.jpg",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242507065-3x0rfkp1.png",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242508840-z1z7pij1.jpg",
"https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg"
]}
showCard={true}
speed={40}
/>
<div className="py-20 px-6">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4">Trusted by NBA Bettors Worldwide</h2>
<p className="text-xl text-gray-600">Join thousands of serious bettors who trust OddsPlay for accurate odds and smart insights.</p>
</div>
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 opacity-60">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242508840-z1z7pij1.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766162774833-py59m1uo.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766169056621-4rew1u3x.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242507065-3x0rfkp1.png" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242508840-z1z7pij1.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242509936-5sra46kr.jpg" alt="Partner Logo" className="h-12 object-contain mx-auto" />
</div>
</div>
</div>
</div>
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Ready to Beat the Books?"
ctaDescription="Join OddsPlay today and get instant access to live NBA odds, player props, and expert picks."
ctaButton={{
text: "Create Free Account",
href: "https://example.com/signup"
}}
ctaIcon={ArrowRight}
faqs={[
{
id: "1",
title: "How is OddsPlay different from Bet365 and PrizePicks?",
content: "OddsPlay specializes exclusively in NBA betting with faster odds updates, better player prop coverage, and a cleaner interface. We focus on quality over quantity with real-time line movements you won't see elsewhere."
},
{
id: "2",
title: "Are the odds really updated in real-time?",
content: "Yes. Our odds update every 50 milliseconds across all sportsbooks. You'll see market movements before most platforms, giving you a genuine edge on line value."
},
{
id: "3",
title: "How do I place a bet on OddsPlay?",
content: "OddsPlay displays live odds from major sportsbooks. You browse our odds, find your selection, click through to your preferred sportsbook, and place your bet there. We handle the odds; you control where you bet."
},
{
id: "4",
title: "Is my information secure?",
content: "Completely. We use military-grade encryption and never store payment information. OddsPlay is a read-only odds platform with no financial data on our servers."
}
]}
animationType="slide-up"
useInvertedBackground="noInvert"
/>
<div className="py-20 px-6 bg-gray-50">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4">Ready to Beat the Books?</h2>
<p className="text-xl text-gray-600 mb-8">Join OddsPlay today and get instant access to live NBA odds, player props, and expert picks.</p>
<a href="https://example.com/signup" className="bg-blue-600 text-white px-8 py-4 rounded-full text-lg hover:bg-blue-700 transition-colors inline-flex items-center gap-2">
Create Free Account
<ArrowRight className="w-5 h-5" />
</a>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<div className="bg-white rounded-2xl shadow-lg p-6">
<h3 className="text-xl font-bold mb-4">How is OddsPlay different from Bet365 and PrizePicks?</h3>
<p className="text-gray-600">OddsPlay specializes exclusively in NBA betting with faster odds updates, better player prop coverage, and a cleaner interface. We focus on quality over quantity with real-time line movements you won't see elsewhere.</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<h3 className="text-xl font-bold mb-4">Are the odds really updated in real-time?</h3>
<p className="text-gray-600">Yes. Our odds update every 50 milliseconds across all sportsbooks. You'll see market movements before most platforms, giving you a genuine edge on line value.</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<h3 className="text-xl font-bold mb-4">How do I place a bet on OddsPlay?</h3>
<p className="text-gray-600">OddsPlay displays live odds from major sportsbooks. You browse our odds, find your selection, click through to your preferred sportsbook, and place your bet there. We handle the odds; you control where you bet.</p>
</div>
<div className="bg-white rounded-2xl shadow-lg p-6">
<h3 className="text-xl font-bold mb-4">Is my information secure?</h3>
<p className="text-gray-600">Completely. We use military-grade encryption and never store payment information. OddsPlay is a read-only odds platform with no financial data on our servers.</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="OddsPlay"
logoAlt="OddsPlay Logo"
/>
<div className="bg-gray-900 text-white py-12 px-6">
<div className="max-w-7xl mx-auto text-center">
<div className="text-3xl font-bold mb-4">OddsPlay</div>
<p className="text-gray-400">Live NBA odds at your fingertips</p>
</div>
</div>
</div>
</ThemeProvider>
);