262 lines
13 KiB
TypeScript
262 lines
13 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard";
|
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
|
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|
import { Zap, Gamepad2, Lightbulb, Users, Code, Heart, Rocket } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="large"
|
|
background="fluid"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="light"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="NEON FORGE"
|
|
navItems={[
|
|
{ name: "Games", id: "games" },
|
|
{ name: "Team", id: "team" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Contact", id: "contact" },
|
|
]}
|
|
button={{
|
|
text: "Watch Trailer", href: "#"}}
|
|
animateOnLoad={true}
|
|
className="bg-gradient-to-r from-[#1a1a1a] via-[#0a0a0a] to-[#1a1a1a] border border-[#ff7b05]/30 backdrop-blur-md"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardDashboard
|
|
title="FORGE THE FUTURE"
|
|
description="Cutting-edge indie game studio pushing boundaries with neon-soaked experiences. Welcome to the next generation of gaming."
|
|
tag="CYBERPUNK STUDIOS"
|
|
tagIcon={Zap}
|
|
tagAnimation="slide-up"
|
|
buttons={[
|
|
{ text: "LAUNCH GAMES", href: "#games" },
|
|
{ text: "WATCH NOW", href: "#" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
background={{ variant: "animated-grid" }}
|
|
dashboard={{
|
|
title: "LIVE DEVELOPMENT GRID", logoIcon: Zap,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-technology-hologram_23-2151917431.jpg?_wi=1", searchPlaceholder: "SEARCH PROJECTS", buttons: [
|
|
{ text: "STUDIO", href: "#" },
|
|
{ text: "EXPORT", href: "#" },
|
|
],
|
|
sidebarItems: [
|
|
{ icon: Gamepad2 },
|
|
{ icon: Code },
|
|
{ icon: Zap },
|
|
],
|
|
stats: [
|
|
{
|
|
title: "Games Live", values: [5, 8, 12],
|
|
description: "In active development"},
|
|
{
|
|
title: "Team Size", values: [12, 15, 18],
|
|
description: "Passionate creators"},
|
|
{
|
|
title: "Awards Won", values: [3, 6, 9],
|
|
description: "Industry recognition"},
|
|
],
|
|
chartTitle: "PROJECT TIMELINE", chartData: [
|
|
{ value: 85 },
|
|
{ value: 92 },
|
|
{ value: 78 },
|
|
{ value: 95 },
|
|
{ value: 88 },
|
|
],
|
|
listTitle: "ACTIVE PROJECTS", listItems: [
|
|
{
|
|
icon: Rocket,
|
|
title: "Neon Nexus Launch", status: "In Progress"},
|
|
{
|
|
icon: Zap,
|
|
title: "Cyber Protocol Update", status: "Testing"},
|
|
{
|
|
icon: Gamepad2,
|
|
title: "Arcade Legends DLC", status: "Approved"},
|
|
],
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="games" data-section="games">
|
|
<ProductCardTwo
|
|
title="GAME FORGE COLLECTION"
|
|
description="Experience the bleeding edge of indie gaming. Each title crafted with precision and packed with neon-fueled gameplay."
|
|
tag="ACTIVE TITLES"
|
|
tagIcon={Gamepad2}
|
|
tagAnimation="slide-up"
|
|
buttons={[{ text: "EXPLORE ALL", href: "#" }]}
|
|
buttonAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
products={[
|
|
{
|
|
id: "1", brand: "NEON FORGE", name: "Neon Nexus", price: "$19.99", rating: 5,
|
|
reviewCount: "2.4k", imageSrc: "http://img.b2bpic.net/free-psd/cyberpunk-futuristic-poster-template_23-2148725433.jpg", imageAlt: "Neon Nexus game cover"},
|
|
{
|
|
id: "2", brand: "NEON FORGE", name: "Cyber Protocol", price: "$24.99", rating: 5,
|
|
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-vector/fluor-background-design_1378-57.jpg", imageAlt: "Cyber Protocol game cover"},
|
|
{
|
|
id: "3", brand: "NEON FORGE", name: "Arcade Legends", price: "$14.99", rating: 5,
|
|
reviewCount: "3.1k", imageSrc: "http://img.b2bpic.net/free-photo/half-rhino-half-robot-creature_23-2151730730.jpg", imageAlt: "Arcade Legends game cover"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SplitAbout
|
|
title="WHO WE ARE"
|
|
description="Born from the electric dreams of visionary creators, Neon Forge Studios delivers unforgettable gaming experiences that blur the line between art and technology."
|
|
tag="OUR STORY"
|
|
tagIcon={Zap}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
bulletPoints={[
|
|
{
|
|
title: "Indie Innovation", description:
|
|
"Pushing creative boundaries with bold, experimental game design that challenges industry standards.", icon: Lightbulb,
|
|
},
|
|
{
|
|
title: "Neon Aesthetics", description:
|
|
"Signature cyberpunk visual style with electrifying color palettes and futuristic interfaces.", icon: Zap,
|
|
},
|
|
{
|
|
title: "Player First", description:
|
|
"Every decision driven by what creates the most engaging and immersive player experience.", icon: Users,
|
|
},
|
|
{
|
|
title: "Cutting Edge Tech", description:
|
|
"Leveraging latest game engines and development tools to deliver next-gen gaming.", icon: Code,
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/futuristic-technology-hologram_23-2151917431.jpg?_wi=2"
|
|
imageAlt="Neon Forge Studios headquarters"
|
|
mediaAnimation="slide-up"
|
|
imagePosition="right"
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardOne
|
|
title="CREATIVE FORGE"
|
|
description="Meet the visionary minds crafting tomorrow's gaming experiences. Each team member brings unique talent to Neon Forge."
|
|
tag="OUR LEGENDS"
|
|
tagIcon={Users}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
gridVariant="four-items-2x2-equal-grid"
|
|
animationType="slide-up"
|
|
members={[
|
|
{
|
|
id: "1", name: "Alex Chrome", role: "Creative Director", imageSrc: "http://img.b2bpic.net/free-photo/technician-optimizing-data-center-equipment-maximum-efficiency_482257-117650.jpg", imageAlt: "Alex Chrome, Creative Director"},
|
|
{
|
|
id: "2", name: "Maya Volt", role: "Lead Engineer", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-white-blazer-looks-nervous_114579-15696.jpg", imageAlt: "Maya Volt, Lead Engineer"},
|
|
{
|
|
id: "3", name: "Jake Pulse", role: "Game Designer", imageSrc: "http://img.b2bpic.net/free-photo/focus-smartphone-attached-tripod-used-by-online-star_482257-124367.jpg", imageAlt: "Jake Pulse, Game Designer"},
|
|
{
|
|
id: "4", name: "Nova Storm", role: "Art Director", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-dog-brush-scissors_107420-95953.jpg", imageAlt: "Nova Storm, Art Director"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
title="PLAYER TESTIMONIALS"
|
|
description="Hear directly from the gaming community. These are the voices that drive our passion."
|
|
tag="COMMUNITY LOVE"
|
|
tagIcon={Heart}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
animationType="slide-up"
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Jordan Liu", role: "Streamer", company: "PlayVerse Gaming", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/african-american-person-texting-messages-smartphone-app-sofa-finishing-tasks-before_482257-132216.jpg", imageAlt: "Jordan Liu testimonial"},
|
|
{
|
|
id: "2", name: "Zara Knight", role: "Esports Pro", company: "Apex Legends Team", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/serious-ethnic-man-with-curly-hair-headphones_23-2148203567.jpg", imageAlt: "Zara Knight testimonial"},
|
|
{
|
|
id: "3", name: "Dev Chen", role: "Indie Dev", company: "Quantum Games", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-posing_23-2148634679.jpg", imageAlt: "Dev Chen testimonial"},
|
|
{
|
|
id: "4", name: "Phoenix Cross", role: "Gaming Journalist", company: "Digital Pulse", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-posing_23-2148747394.jpg", imageAlt: "Phoenix Cross testimonial"},
|
|
{
|
|
id: "5", name: "Morgan Steel", role: "Community Manager", company: "Neon Community Hub", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-laughing-woman-playing-videogame_23-2149350007.jpg", imageAlt: "Morgan Steel testimonial"},
|
|
{
|
|
id: "6", name: "Alex Rise", role: "Game Critic", company: "Gaming Insight", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/basketball-player-posing-dark-background_23-2147644427.jpg", imageAlt: "Alex Rise testimonial"},
|
|
]}
|
|
kpiItems={[
|
|
{ value: "500K+", label: "Players Worldwide" },
|
|
{ value: "98%", label: "Satisfaction Rate" },
|
|
{ value: "24/7", label: "Community Support" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="NEON FORGE"
|
|
copyrightText="© 2025 Neon Forge Studios. All rights reserved."
|
|
columns={[
|
|
{
|
|
title: "GAMES", items: [
|
|
{ label: "Neon Nexus", href: "#" },
|
|
{ label: "Cyber Protocol", href: "#" },
|
|
{ label: "Arcade Legends", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "STUDIO", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Team", href: "#team" },
|
|
{ label: "Careers", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "COMMUNITY", items: [
|
|
{ label: "Discord", href: "https://discord.com" },
|
|
{ label: "Twitter", href: "https://twitter.com" },
|
|
{ label: "Support", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "LEGAL", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Contact", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|