8 Commits

Author SHA1 Message Date
5d736a80ec Update src/app/layout.tsx 2026-03-08 11:22:30 +00:00
410a892496 Update src/app/page.tsx 2026-03-08 11:21:06 +00:00
1958a80111 Update src/app/layout.tsx 2026-03-08 11:21:06 +00:00
274c62abc2 Merge version_2 into main
Merge version_2 into main
2026-03-08 11:16:05 +00:00
9297c1421a Update src/app/page.tsx 2026-03-08 11:16:01 +00:00
c94af344be Merge version_2 into main
Merge version_2 into main
2026-03-08 11:14:31 +00:00
da9fce5293 Update src/app/page.tsx 2026-03-08 11:14:26 +00:00
743bfb0fdf Merge version_1 into main
Merge version_1 into main
2026-03-08 11:09:50 +00:00
2 changed files with 94 additions and 1432 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -14,6 +14,42 @@ import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Zap, Sparkles, Settings, Crown, Star, HelpCircle } from "lucide-react";
export default function FluxcityLanding() {
const handlePayPalCheckout = (productId: string, productName: string, price: string) => {
// Extract numeric price
const numericPrice = price.replace(/[^0-9.]/g, '');
// PayPal IPN endpoint
const paypalForm = document.createElement('form');
paypalForm.method = 'POST';
paypalForm.action = 'https://www.paypal.com/cgi-bin/webscr';
paypalForm.style.display = 'none';
const fields = {
'cmd': '_xclick',
'business': 'FluxcityScripts@gmail.com',
'item_name': productName,
'item_number': productId,
'amount': numericPrice,
'currency_code': 'USD',
'return': window.location.origin,
'cancel_return': window.location.origin,
'notify_url': `${window.location.origin}/api/paypal/ipn`,
'no_shipping': '2',
};
Object.entries(fields).forEach(([key, value]) => {
const input = document.createElement('input');
input.type = 'hidden';
input.name = key;
input.value = value as string;
paypalForm.appendChild(input);
});
document.body.appendChild(paypalForm);
paypalForm.submit();
document.body.removeChild(paypalForm);
};
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -88,16 +124,20 @@ export default function FluxcityLanding() {
products={[
{
id: "apex-pro", brand: "Fluxcity", name: "Apex Pro Script", price: "$29.99", rating: 5,
reviewCount: "1.2k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-sleek-product-showcase-of-an-advanced--1772968138771-11c3ada6.png?_wi=1", imageAlt: "Apex Legends Pro Script"},
reviewCount: "1.2k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-sleek-product-showcase-of-an-advanced--1772968138771-11c3ada6.png?_wi=1", imageAlt: "Apex Legends Pro Script", onProductClick: () => handlePayPalCheckout("apex-pro", "Apex Pro Script", "$29.99")
},
{
id: "cod-elite", brand: "Fluxcity", name: "COD Elite Bundle", price: "$49.99", rating: 5,
reviewCount: "2.8k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-call-of-duty-script-interfa-1772968139778-605559cf.png?_wi=1", imageAlt: "Call of Duty Elite Script Bundle"},
reviewCount: "2.8k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-call-of-duty-script-interfa-1772968139778-605559cf.png?_wi=1", imageAlt: "Call of Duty Elite Script Bundle", onProductClick: () => handlePayPalCheckout("cod-elite", "COD Elite Bundle", "$49.99")
},
{
id: "fortnite-master", brand: "Fluxcity", name: "Fortnite Master Script", price: "$34.99", rating: 5,
reviewCount: "1.9k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/vibrant-fortnite-gameplay-showcase-with--1772968138533-0a849f07.png", imageAlt: "Fortnite Master Gaming Script"},
reviewCount: "1.9k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/vibrant-fortnite-gameplay-showcase-with--1772968138533-0a849f07.png", imageAlt: "Fortnite Master Gaming Script", onProductClick: () => handlePayPalCheckout("fortnite-master", "Fortnite Master Script", "$34.99")
},
{
id: "ultimate-bundle", brand: "Fluxcity", name: "Ultimate Gaming Bundle", price: "$99.99", rating: 5,
reviewCount: "4.5k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-high-octane-gaming-hero-image-showing--1772968138267-74e3311a.png?_wi=2", imageAlt: "Ultimate All-in-One Gaming Bundle"},
reviewCount: "4.5k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-high-octane-gaming-hero-image-showing--1772968138267-74e3311a.png?_wi=2", imageAlt: "Ultimate All-in-One Gaming Bundle", onProductClick: () => handlePayPalCheckout("ultimate-bundle", "Ultimate Gaming Bundle", "$99.99")
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -116,16 +156,20 @@ export default function FluxcityLanding() {
features={[
{
id: 1,
title: "Download & Install", description: "Quick setup process with automatic game detection and configuration. Zero technical knowledge required.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-high-octane-gaming-hero-image-showing--1772968138267-74e3311a.png?_wi=3"},
title: "Download & Install", description: "Quick setup process with automatic game detection and configuration. Zero technical knowledge required.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-high-octane-gaming-hero-image-showing--1772968138267-74e3311a.png?_wi=3"
},
{
id: 2,
title: "Customize Settings", description: "Fine-tune sensitivity, crosshair, and performance parameters to match your playstyle perfectly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-sleek-product-showcase-of-an-advanced--1772968138771-11c3ada6.png?_wi=2"},
title: "Customize Settings", description: "Fine-tune sensitivity, crosshair, and performance parameters to match your playstyle perfectly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-sleek-product-showcase-of-an-advanced--1772968138771-11c3ada6.png?_wi=2"
},
{
id: 3,
title: "Dominate Matches", description: "Experience enhanced gameplay with optimized aim, mechanics, and competitive performance tools.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-call-of-duty-script-interfa-1772968139778-605559cf.png?_wi=2"},
title: "Dominate Matches", description: "Experience enhanced gameplay with optimized aim, mechanics, and competitive performance tools.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-call-of-duty-script-interfa-1772968139778-605559cf.png?_wi=2"
},
{
id: 4,
title: "24/7 Support", description: "Access premium support team for updates, optimization, and technical assistance anytime.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/modern-gaming-battlestation-with-dual-mo-1772968138809-2dee7971.png?_wi=1"},
title: "24/7 Support", description: "Access premium support team for updates, optimization, and technical assistance anytime.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/modern-gaming-battlestation-with-dual-mo-1772968138809-2dee7971.png?_wi=1"
},
]}
textboxLayout="default"
useInvertedBackground={false}
@@ -142,28 +186,31 @@ export default function FluxcityLanding() {
plans={[
{
id: "starter", price: "$19.99/mo", name: "Starter", buttons: [
{ text: "Get Started", href: "#" },
{ text: "Get Started", onClick: () => handlePayPalCheckout("starter", "Starter Plan", "$19.99") },
{ text: "Learn More", href: "#" },
],
features: [
"Single game script access", "Basic optimization tools", "Email support", "Monthly updates", "Community access"],
"Single game script access", "Basic optimization tools", "Email support", "Monthly updates", "Community access"
],
},
{
id: "professional", badge: "Most Popular", badgeIcon: Crown,
price: "$49.99/mo", name: "Professional", buttons: [
{ text: "Upgrade Now", href: "#" },
{ text: "Upgrade Now", onClick: () => handlePayPalCheckout("professional", "Professional Plan", "$49.99") },
{ text: "Start Trial", href: "#" },
],
features: [
"All 3 game scripts included", "Advanced customization", "Priority 24/7 support", "Weekly updates", "Private community access", "Performance analytics"],
"All 3 game scripts included", "Advanced customization", "Priority 24/7 support", "Weekly updates", "Private community access", "Performance analytics"
],
},
{
id: "elite", price: "$99.99/mo", name: "Elite", buttons: [
{ text: "Choose Elite", href: "#" },
{ text: "Choose Elite", onClick: () => handlePayPalCheckout("elite", "Elite Plan", "$99.99") },
{ text: "Contact Sales", href: "#" },
],
features: [
"All Professional features", "Custom script development", "Dedicated account manager", "Real-time support chat", "Exclusive beta features", "Tournament support", "Advanced analytics dashboard"],
"All Professional features", "Custom script development", "Dedicated account manager", "Real-time support chat", "Exclusive beta features", "Tournament support", "Advanced analytics dashboard"
],
},
]}
animationType="slide-up"
@@ -180,17 +227,23 @@ export default function FluxcityLanding() {
tagIcon={Star}
testimonials={[
{
id: "1", name: "Alex Striker", handle: "@strikerGaming", testimonial: "Fluxcity Scripts completely transformed my Apex gameplay. The precision and customization options are unmatched. Ranked from Gold to Diamond in just 2 weeks!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-headshot-of-a-confident-esp-1772968137590-cb6eef1e.png?_wi=1", imageAlt: "Alex Striker"},
id: "1", name: "Alex Striker", handle: "@strikerGaming", testimonial: "Fluxcity Scripts completely transformed my Apex gameplay. The precision and customization options are unmatched. Ranked from Gold to Diamond in just 2 weeks!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-headshot-of-a-confident-esp-1772968137590-cb6eef1e.png?_wi=1", imageAlt: "Alex Striker"
},
{
id: "2", name: "Jordan Code", handle: "@jordanCompetitive", testimonial: "Been using the COD scripts for tournaments. The recoil control and aim assist optimization gives me the edge I need. Absolutely worth every penny.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/young-esports-professional-in-gaming-set-1772968138723-5da1399b.png?_wi=1", imageAlt: "Jordan Code"},
id: "2", name: "Jordan Code", handle: "@jordanCompetitive", testimonial: "Been using the COD scripts for tournaments. The recoil control and aim assist optimization gives me the edge I need. Absolutely worth every penny.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/young-esports-professional-in-gaming-set-1772968138723-5da1399b.png?_wi=1", imageAlt: "Jordan Code"
},
{
id: "3", name: "Maya Phoenix", handle: "@mayaPro", testimonial: "The Fortnite script is insane. Building speed, mechanics, and combat optimization all in one. I've won 15 matches this week. This is the real deal.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/tournament-winning-gamer-with-confident--1772968137969-1b649716.png", imageAlt: "Maya Phoenix"},
id: "3", name: "Maya Phoenix", handle: "@mayaPro", testimonial: "The Fortnite script is insane. Building speed, mechanics, and combat optimization all in one. I've won 15 matches this week. This is the real deal.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/tournament-winning-gamer-with-confident--1772968137969-1b649716.png", imageAlt: "Maya Phoenix"
},
{
id: "4", name: "Chris Apex", handle: "@chrisApexLord", testimonial: "As a tournament player, I needed reliability and performance. Fluxcity delivered. The support team is incredible and scripts are constantly optimized.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/skilled-esports-competitor-at-profession-1772968138199-b8c16648.png", imageAlt: "Chris Apex"},
id: "4", name: "Chris Apex", handle: "@chrisApexLord", testimonial: "As a tournament player, I needed reliability and performance. Fluxcity delivered. The support team is incredible and scripts are constantly optimized.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/skilled-esports-competitor-at-profession-1772968138199-b8c16648.png", imageAlt: "Chris Apex"
},
{
id: "5", name: "Sierra Elite", handle: "@sierraEliteGaming", testimonial: "Tried many scripts before, but Fluxcity is on another level. Detection rate is incredible, performance is smooth, and customization is limitless.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-headshot-of-a-confident-esp-1772968137590-cb6eef1e.png?_wi=2", imageAlt: "Sierra Elite"},
id: "5", name: "Sierra Elite", handle: "@sierraEliteGaming", testimonial: "Tried many scripts before, but Fluxcity is on another level. Detection rate is incredible, performance is smooth, and customization is limitless.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/professional-headshot-of-a-confident-esp-1772968137590-cb6eef1e.png?_wi=2", imageAlt: "Sierra Elite"
},
{
id: "6", name: "Drake Tactical", handle: "@drakeTactical", testimonial: "The bundle deal is unbeatable. All three games optimized with one subscription. Best investment for serious competitive gamers out there.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/young-esports-professional-in-gaming-set-1772968138723-5da1399b.png?_wi=2", imageAlt: "Drake Tactical"},
id: "6", name: "Drake Tactical", handle: "@drakeTactical", testimonial: "The bundle deal is unbeatable. All three games optimized with one subscription. Best investment for serious competitive gamers out there.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/young-esports-professional-in-gaming-set-1772968138723-5da1399b.png?_wi=2", imageAlt: "Drake Tactical"
},
]}
animationType="slide-up"
textboxLayout="default"
@@ -207,17 +260,23 @@ export default function FluxcityLanding() {
tagIcon={HelpCircle}
faqs={[
{
id: "1", title: "Are Fluxcity Scripts safe and undetectable?", content: "Yes. Our scripts use advanced obfuscation technology with a 99.8% undetected rate. We continuously update security protocols to match the latest game anti-cheat systems. Your account safety is our priority."},
id: "1", title: "Are Fluxcity Scripts safe and undetectable?", content: "Yes. Our scripts use advanced obfuscation technology with a 99.8% undetected rate. We continuously update security protocols to match the latest game anti-cheat systems. Your account safety is our priority."
},
{
id: "2", title: "Which games are supported?", content: "We support Apex Legends, Call of Duty 6, Call of Duty 7, and Fortnite. Each script is specifically optimized for that game's mechanics and anti-cheat systems."},
id: "2", title: "Which games are supported?", content: "We support Apex Legends, Call of Duty 6, Call of Duty 7, and Fortnite. Each script is specifically optimized for that game's mechanics and anti-cheat systems."
},
{
id: "3", title: "How often are scripts updated?", content: "Professional and Elite members receive weekly updates. Starter members get monthly updates. We monitor game patches and anti-cheat changes to ensure continuous compatibility."},
id: "3", title: "How often are scripts updated?", content: "Professional and Elite members receive weekly updates. Starter members get monthly updates. We monitor game patches and anti-cheat changes to ensure continuous compatibility."
},
{
id: "4", title: "What if I need technical support?", content: "Starter members receive email support. Professional members get priority 24/7 email and ticket support. Elite members get dedicated account managers and real-time chat support."},
id: "4", title: "What if I need technical support?", content: "Starter members receive email support. Professional members get priority 24/7 email and ticket support. Elite members get dedicated account managers and real-time chat support."
},
{
id: "5", title: "Can I customize the scripts?", content: "Absolutely. Professional and Elite members have full customization options. You can adjust sensitivity, crosshair, performance settings, and more to match your playstyle perfectly."},
id: "5", title: "Can I customize the scripts?", content: "Absolutely. Professional and Elite members have full customization options. You can adjust sensitivity, crosshair, performance settings, and more to match your playstyle perfectly."
},
{
id: "6", title: "Do you offer refunds?", content: "We offer a 7-day money-back guarantee if you're not satisfied. Elite members have additional support for ensuring scripts work perfectly with their setup."},
id: "6", title: "Do you offer refunds?", content: "We offer a 7-day money-back guarantee if you're not satisfied. Elite members have additional support for ensuring scripts work perfectly with their setup."
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/modern-gaming-battlestation-with-dual-mo-1772968138809-2dee7971.png?_wi=2"
imageAlt="Professional gaming battlestation"