From 057bc7458665b22e375df30cd3d56463b65da335 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 18:40:46 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 88 +++++++++++++++++++++--------------------------- 1 file changed, 38 insertions(+), 50 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 109af8f..884b0a7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,12 +8,9 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; import MediaAbout from '@/components/sections/about/MediaAbout'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Award, Users, Zap, MessageSquare, Trophy, Crown } from "lucide-react"; +import { Trophy, ShieldCheck, MessageCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -34,39 +31,43 @@ export default function LandingPage() {
-
- + +
+ +
+
@@ -75,39 +76,26 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - title="VIP Picks Subscription" - description="Access our proprietary data-driven predictions and gain the edge over the house." + title="Membership Plans" + description="Choose the plan that fits your betting style and gain an edge over the house." plans={[ - { id: "vip-monthly", badge: "Monthly", price: "$99", subtitle: "Complete access to all daily VIP picks.", features: ["Daily Betting Tips", "Bankroll Management", "Priority Telegram Alerts"] }, - { id: "vip-annual", badge: "Annual", price: "$599", subtitle: "Best value for long-term bettors.", features: ["Everything in Monthly", "Quarterly Profit Report", "1-on-1 Analyst Access"] } + { id: "pro-monthly", badge: "Pro", price: "$99", subtitle: "Daily VIP picks & Telegram access.", features: ["Daily Betting Tips", "Bankroll Management", "Private VIP Channel"] }, + { id: "alpha-annual", badge: "Alpha", price: "$599", subtitle: "The full Alpha experience.", features: ["Everything in Pro", "Quarterly Strategy Deep-dives", "1-on-1 Analyst Consultation"] } ]} /> -
- -
-
@@ -115,18 +103,18 @@ export default function LandingPage() { -- 2.49.1 From a604e99a298b97e489978acab5487b5ea4155db6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 18:40:46 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d6a74e7..9bdc4e4 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #00061A; - --card: #001033; - --foreground: #FFFFFF; - --primary-cta: #FF6D00; + --background: #1a3a52; + --card: #152e41; + --foreground: #ffffff; + --primary-cta: #ff8c00; --primary-cta-text: #FFFFFF; - --secondary-cta: #FF9100; + --secondary-cta: #ffffff; --secondary-cta-text: #000000; - --accent: #FFB300; - --background-accent: #001A4D; + --accent: #ff8c00; + --background-accent: #002a40; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1