5 Commits

Author SHA1 Message Date
6ca909caac Merge version_4 into main
Merge version_4 into main
2026-04-17 06:44:00 +00:00
0622b98ce3 Update src/app/page.tsx 2026-04-17 06:43:57 +00:00
990e97f044 Merge version_3 into main
Merge version_3 into main
2026-04-17 06:23:53 +00:00
cc6515bd85 Update src/app/page.tsx 2026-04-17 06:23:50 +00:00
d43a041a71 Merge version_2 into main
Merge version_2 into main
2026-04-16 04:18:19 +00:00

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
@@ -32,7 +32,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "FPS", id: "hero" },
{ name: "MMORPG", id: "features" },
{ name: "Modes", id: "features" },
{ name: "Store", id: "products" },
{ name: "Community", id: "testimonials" },
{ name: "Contact", id: "contact" },
@@ -81,16 +81,26 @@ export default function LandingPage() {
</div>
<div id="features" data-section="features">
<FeatureCardEight
<FeatureCardTwelve
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Precision Hardware", description: "Optimize your performance with elite settings.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3irtom&_wi=2" },
{ title: "Ultra-Low Latency", description: "Connect at the speed of light.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f7g7ve&_wi=2" },
{ title: "Squad Coordination", description: "Tactical voice channels and strategic planning.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=wcelss&_wi=2" },
{
id: "f1", label: "Classic Mode", title: "Battle Royale", items: ["No time limit", "Survival focused", "4-player squad", "Voice integration enabled"],
buttons: [{ text: "Start Chat", onClick: () => console.log("Opening interaction channel...") }]
},
{
id: "f2", label: "Clash Squad", title: "4v4 Combat", items: ["Tactical rounds", "In-game voice", "Communication focused", "Strategy planning"],
buttons: [{ text: "Open Channel", onClick: () => console.log("Enabling team chat...") }]
},
{
id: "f3", label: "Community Events", title: "Global Hub", items: ["Integrated chatrooms", "Direct squad messaging", "Social engagement", "Weekly coordination"],
buttons: [{ text: "Connect", onClick: () => console.log("Joining voice channel...") }]
},
]}
title="Pro-Level Features for Everyone"
description="Unlock tactical advantages with tools built for champions."
title="Game Modes & Communication"
description="Jump into battle with your squad and utilize our integrated voice and text channels to dominate the competition."
/>
</div>
@@ -207,4 +217,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}