Labs landing page with full-page yellow immersive styling
cgen-6bc072443dd14d42a3cadd4429bf743d
This commit is contained in:
parent
ddebf59ce4
commit
bcb5c9bded
4 changed files with 457 additions and 369 deletions
|
|
@ -1,108 +1,130 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Briefcase, Settings, TrendingUp, Users } from "lucide-react";
|
||||
|
||||
export default function Corp() {
|
||||
return (
|
||||
<Layout>
|
||||
<div className="min-h-screen bg-aethex-gradient py-8">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden">
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-blue-500/10 to-transparent" />
|
||||
<div className="container mx-auto max-w-7xl relative px-4 py-20 md:py-32">
|
||||
<div className="text-center space-y-6 animate-slide-down">
|
||||
<div className="inline-block">
|
||||
<div className="flex items-center gap-2 px-4 py-2 rounded-lg bg-blue-500/20 border border-blue-500/30 text-blue-400">
|
||||
<Briefcase className="h-4 w-4" />
|
||||
<span className="text-sm font-medium">Aethex Corp</span>
|
||||
<div className="relative min-h-screen bg-black text-white">
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#3b82f6_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(59,130,246,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-blue-400/40 bg-blue-500/10 text-blue-300 shadow-[0_0_20px_rgba(59,130,246,0.2)]"
|
||||
>
|
||||
<span className="mr-2 inline-flex h-2 w-2 animate-pulse rounded-full bg-blue-300" />
|
||||
Aethex Corp
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-blue-300 sm:text-5xl lg:text-6xl">
|
||||
Enterprise Solutions
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-blue-100/90 sm:text-xl">
|
||||
Strategic consulting, technology integration, and digital transformation for enterprises. We help companies navigate the future.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-blue-400 text-black shadow-[0_0_30px_rgba(59,130,246,0.35)] transition hover:bg-blue-300"
|
||||
>
|
||||
<Briefcase className="mr-2 h-5 w-5" />
|
||||
Schedule Consultation
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-blue-400/60 text-blue-300 hover:bg-blue-500/10"
|
||||
>
|
||||
View Case Studies
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<h1 className="text-5xl md:text-6xl font-bold text-white">
|
||||
Enterprise Solutions
|
||||
</h1>
|
||||
<p className="text-xl text-gray-300 max-w-2xl mx-auto">
|
||||
Strategic consulting, technology integration, and digital transformation for enterprises. We help companies navigate the future.
|
||||
</p>
|
||||
<div className="flex gap-4 justify-center pt-4">
|
||||
<Button size="lg" className="bg-blue-500 hover:bg-blue-600 text-white">
|
||||
Schedule Consultation
|
||||
</Button>
|
||||
<Button size="lg" variant="outline">
|
||||
View Case Studies
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Services Grid */}
|
||||
<section className="border-y border-blue-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Settings className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Consulting</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Strategic guidance for digital transformation and technology adoption.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<TrendingUp className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Scale & Growth</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Build robust systems designed for enterprise scale and reliability.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Users className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Team Partnership</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Work with dedicated teams augmenting your existing development capacity.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-blue-950/20 border-blue-400/30 hover:border-blue-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Briefcase className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle className="text-blue-300">Solutions</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-blue-200/70">
|
||||
Custom solutions tailored to your business needs and technical requirements.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
{/* Services Grid */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-card/50 border-border/50 hover:border-blue-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Settings className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle>Consulting</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Strategic guidance for digital transformation and technology adoption.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-blue-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<TrendingUp className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle>Scale & Growth</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Build robust systems designed for enterprise scale and reliability.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-blue-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Users className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle>Team Partnership</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Work with dedicated teams augmenting your existing development capacity.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-blue-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Briefcase className="h-8 w-8 text-blue-400 mb-2" />
|
||||
<CardTitle>Solutions</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Custom solutions tailored to your business needs and technical requirements.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* CTA Section */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="rounded-xl bg-gradient-to-r from-blue-500/20 to-blue-600/20 border border-blue-500/30 p-8 md:p-16 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-bold text-white mb-4">
|
||||
Transform Your Business
|
||||
</h2>
|
||||
<p className="text-lg text-gray-300 mb-8 max-w-2xl mx-auto">
|
||||
Let's discuss how AeThex Corp can help accelerate your digital initiatives and drive growth.
|
||||
</p>
|
||||
<Button size="lg" className="bg-blue-500 hover:bg-blue-600 text-white">
|
||||
Contact Us
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
{/* CTA Section */}
|
||||
<section className="py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-4xl px-4 text-center">
|
||||
<h2 className="text-4xl font-bold text-blue-300 mb-4">
|
||||
Transform Your Business
|
||||
</h2>
|
||||
<p className="text-lg text-blue-100/80 mb-8">
|
||||
Let's discuss how AeThex Corp can help accelerate your digital initiatives and drive growth.
|
||||
</p>
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-blue-400 text-black shadow-[0_0_30px_rgba(59,130,246,0.35)] hover:bg-blue-300"
|
||||
>
|
||||
Contact Us
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,108 +1,130 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Heart, BookOpen, Code, Globe } from "lucide-react";
|
||||
|
||||
export default function Foundation() {
|
||||
return (
|
||||
<Layout>
|
||||
<div className="min-h-screen bg-aethex-gradient py-8">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden">
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-red-500/10 to-transparent" />
|
||||
<div className="container mx-auto max-w-7xl relative px-4 py-20 md:py-32">
|
||||
<div className="text-center space-y-6 animate-slide-down">
|
||||
<div className="inline-block">
|
||||
<div className="flex items-center gap-2 px-4 py-2 rounded-lg bg-red-500/20 border border-red-500/30 text-red-400">
|
||||
<Heart className="h-4 w-4" />
|
||||
<span className="text-sm font-medium">Aethex Foundation</span>
|
||||
<div className="relative min-h-screen bg-black text-white">
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#ef4444_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(239,68,68,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-red-400/40 bg-red-500/10 text-red-300 shadow-[0_0_20px_rgba(239,68,68,0.2)]"
|
||||
>
|
||||
<span className="mr-2 inline-flex h-2 w-2 animate-pulse rounded-full bg-red-300" />
|
||||
Aethex Foundation
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-red-300 sm:text-5xl lg:text-6xl">
|
||||
Open Source & Education
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-red-100/90 sm:text-xl">
|
||||
Democratizing technology through open source and education. We believe knowledge should be free, and great tools should be accessible to everyone.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-red-400 text-black shadow-[0_0_30px_rgba(239,68,68,0.35)] transition hover:bg-red-300"
|
||||
>
|
||||
<Heart className="mr-2 h-5 w-5" />
|
||||
Contribute
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-red-400/60 text-red-300 hover:bg-red-500/10"
|
||||
>
|
||||
Learn More
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<h1 className="text-5xl md:text-6xl font-bold text-white">
|
||||
Open Source & Education
|
||||
</h1>
|
||||
<p className="text-xl text-gray-300 max-w-2xl mx-auto">
|
||||
Democratizing technology through open source and education. We believe knowledge should be free, and great tools should be accessible to everyone.
|
||||
</p>
|
||||
<div className="flex gap-4 justify-center pt-4">
|
||||
<Button size="lg" className="bg-red-500 hover:bg-red-600 text-white">
|
||||
Contribute
|
||||
</Button>
|
||||
<Button size="lg" variant="outline">
|
||||
Learn More
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Mission Grid */}
|
||||
<section className="border-y border-red-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Code className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle className="text-red-300">Open Source</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-red-200/70">
|
||||
Publishing and maintaining tools that benefit the entire community.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<BookOpen className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle className="text-red-300">Education</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-red-200/70">
|
||||
Accessible learning resources for developers at all skill levels.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Globe className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle className="text-red-300">Community</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-red-200/70">
|
||||
Building a welcoming ecosystem where everyone can grow and contribute.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-red-950/20 border-red-400/30 hover:border-red-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Heart className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle className="text-red-300">Impact</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-red-200/70">
|
||||
Creating positive change through technology and knowledge sharing.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
{/* Mission Grid */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-card/50 border-border/50 hover:border-red-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Code className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle>Open Source</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Publishing and maintaining tools that benefit the entire community.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-red-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<BookOpen className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle>Education</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Accessible learning resources for developers at all skill levels.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-red-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Globe className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle>Community</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Building a welcoming ecosystem where everyone can grow and contribute.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-red-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Heart className="h-8 w-8 text-red-400 mb-2" />
|
||||
<CardTitle>Impact</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Creating positive change through technology and knowledge sharing.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* CTA Section */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="rounded-xl bg-gradient-to-r from-red-500/20 to-red-600/20 border border-red-500/30 p-8 md:p-16 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-bold text-white mb-4">
|
||||
Make an Impact
|
||||
</h2>
|
||||
<p className="text-lg text-gray-300 mb-8 max-w-2xl mx-auto">
|
||||
Join us in our mission to make technology education and open source accessible to everyone around the world.
|
||||
</p>
|
||||
<Button size="lg" className="bg-red-500 hover:bg-red-600 text-white">
|
||||
Get Involved
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
{/* CTA Section */}
|
||||
<section className="py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-4xl px-4 text-center">
|
||||
<h2 className="text-4xl font-bold text-red-300 mb-4">
|
||||
Make an Impact
|
||||
</h2>
|
||||
<p className="text-lg text-red-100/80 mb-8">
|
||||
Join us in our mission to make technology education and open source accessible to everyone around the world.
|
||||
</p>
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-red-400 text-black shadow-[0_0_30px_rgba(239,68,68,0.35)] hover:bg-red-300"
|
||||
>
|
||||
Get Involved
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,108 +1,130 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Gamepad2, Zap, Target, Trophy } from "lucide-react";
|
||||
|
||||
export default function GameForge() {
|
||||
return (
|
||||
<Layout>
|
||||
<div className="min-h-screen bg-aethex-gradient py-8">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden">
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-green-500/10 to-transparent" />
|
||||
<div className="container mx-auto max-w-7xl relative px-4 py-20 md:py-32">
|
||||
<div className="text-center space-y-6 animate-slide-down">
|
||||
<div className="inline-block">
|
||||
<div className="flex items-center gap-2 px-4 py-2 rounded-lg bg-green-500/20 border border-green-500/30 text-green-400">
|
||||
<Gamepad2 className="h-4 w-4" />
|
||||
<span className="text-sm font-medium">GameForge</span>
|
||||
<div className="relative min-h-screen bg-black text-white">
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#22c55e_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(34,197,94,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-green-400/40 bg-green-500/10 text-green-300 shadow-[0_0_20px_rgba(34,197,94,0.2)]"
|
||||
>
|
||||
<span className="mr-2 inline-flex h-2 w-2 animate-pulse rounded-full bg-green-300" />
|
||||
GameForge
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-green-300 sm:text-5xl lg:text-6xl">
|
||||
The Heart of AeThex
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-green-100/90 sm:text-xl">
|
||||
Month-to-month shipping cycles. Rapid iteration. Continuous delivery. We don't just build games—we build experiences with unstoppable momentum.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-green-400 text-black shadow-[0_0_30px_rgba(34,197,94,0.35)] transition hover:bg-green-300"
|
||||
>
|
||||
<Gamepad2 className="mr-2 h-5 w-5" />
|
||||
Start Building
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-green-400/60 text-green-300 hover:bg-green-500/10"
|
||||
>
|
||||
View Portfolio
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<h1 className="text-5xl md:text-6xl font-bold text-white">
|
||||
The Heart of AeThex
|
||||
</h1>
|
||||
<p className="text-xl text-gray-300 max-w-2xl mx-auto">
|
||||
Month-to-month shipping cycles. Rapid iteration. Continuous delivery. We don't just build games—we build experiences with unstoppable momentum.
|
||||
</p>
|
||||
<div className="flex gap-4 justify-center pt-4">
|
||||
<Button size="lg" className="bg-green-500 hover:bg-green-600 text-black">
|
||||
Start Building
|
||||
</Button>
|
||||
<Button size="lg" variant="outline">
|
||||
View Portfolio
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Features Grid */}
|
||||
<section className="border-y border-green-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Zap className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">Monthly Releases</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
Predictable shipping cycles. Every month, new features and improvements live.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Target className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">Rapid Iteration</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
Fast feedback loops. We listen, iterate, and ship what matters.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Trophy className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">Quality Driven</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
High standards. Polished experiences. Every release is battle-tested.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Gamepad2 className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">Player First</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
Always focused on player experience. We build what gets played.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
{/* Features Grid */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-card/50 border-border/50 hover:border-green-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Zap className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle>Monthly Releases</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Predictable shipping cycles. Every month, new features and improvements live.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-green-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Target className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle>Rapid Iteration</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Fast feedback loops. We listen, iterate, and ship what matters.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-green-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Trophy className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle>Quality Driven</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
High standards. Polished experiences. Every release is battle-tested.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-green-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Gamepad2 className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle>Player First</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Always focused on player experience. We build what gets played.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* CTA Section */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="rounded-xl bg-gradient-to-r from-green-500/20 to-green-600/20 border border-green-500/30 p-8 md:p-16 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-bold text-white mb-4">
|
||||
Ship With Momentum
|
||||
</h2>
|
||||
<p className="text-lg text-gray-300 mb-8 max-w-2xl mx-auto">
|
||||
Join the fastest shipping team in the industry. We're looking for creators, developers, and visionaries.
|
||||
</p>
|
||||
<Button size="lg" className="bg-green-500 hover:bg-green-600 text-black">
|
||||
Join GameForge
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
{/* CTA Section */}
|
||||
<section className="py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-4xl px-4 text-center">
|
||||
<h2 className="text-4xl font-bold text-green-300 mb-4">
|
||||
Ship With Momentum
|
||||
</h2>
|
||||
<p className="text-lg text-green-100/80 mb-8">
|
||||
Join the fastest shipping team in the industry. We're looking for creators, developers, and visionaries.
|
||||
</p>
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-green-400 text-black shadow-[0_0_30px_rgba(34,197,94,0.35)] hover:bg-green-300"
|
||||
>
|
||||
Join GameForge
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,108 +1,130 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Beaker, Lightbulb, Zap, Users } from "lucide-react";
|
||||
|
||||
export default function Labs() {
|
||||
return (
|
||||
<Layout>
|
||||
<div className="min-h-screen bg-aethex-gradient py-8">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden">
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-yellow-500/10 to-transparent" />
|
||||
<div className="container mx-auto max-w-7xl relative px-4 py-20 md:py-32">
|
||||
<div className="text-center space-y-6 animate-slide-down">
|
||||
<div className="inline-block">
|
||||
<div className="flex items-center gap-2 px-4 py-2 rounded-lg bg-yellow-500/20 border border-yellow-500/30 text-yellow-400">
|
||||
<Beaker className="h-4 w-4" />
|
||||
<span className="text-sm font-medium">Aethex Labs</span>
|
||||
<div className="relative min-h-screen bg-black text-white">
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#fbbf24_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(251,191,36,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-yellow-400/40 bg-yellow-500/10 text-yellow-300 shadow-[0_0_20px_rgba(251,191,36,0.2)]"
|
||||
>
|
||||
<span className="mr-2 inline-flex h-2 w-2 animate-pulse rounded-full bg-yellow-300" />
|
||||
Aethex Labs
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-yellow-300 sm:text-5xl lg:text-6xl">
|
||||
Research & Development
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-yellow-100/90 sm:text-xl">
|
||||
Where innovation meets experimentation. We push the boundaries of what's possible, exploring cutting-edge technologies and building the future.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-yellow-400 text-black shadow-[0_0_30px_rgba(251,191,36,0.35)] transition hover:bg-yellow-300"
|
||||
>
|
||||
<Beaker className="mr-2 h-5 w-5" />
|
||||
Explore Research
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-yellow-400/60 text-yellow-300 hover:bg-yellow-500/10"
|
||||
>
|
||||
Join Our Team
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<h1 className="text-5xl md:text-6xl font-bold text-white">
|
||||
Research & Development
|
||||
</h1>
|
||||
<p className="text-xl text-gray-300 max-w-2xl mx-auto">
|
||||
Where innovation meets experimentation. We push the boundaries of what's possible, exploring cutting-edge technologies and building the future.
|
||||
</p>
|
||||
<div className="flex gap-4 justify-center pt-4">
|
||||
<Button size="lg" className="bg-yellow-500 hover:bg-yellow-600 text-black">
|
||||
Explore Research
|
||||
</Button>
|
||||
<Button size="lg" variant="outline">
|
||||
Join Our Team
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Features Grid */}
|
||||
<section className="border-y border-yellow-400/10 bg-black/80 py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-yellow-950/20 border-yellow-400/30 hover:border-yellow-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Lightbulb className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle className="text-yellow-300">Innovation</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-yellow-200/70">
|
||||
Exploring new technologies and methodologies to stay ahead of the curve.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-yellow-950/20 border-yellow-400/30 hover:border-yellow-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Zap className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle className="text-yellow-300">Experimentation</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-yellow-200/70">
|
||||
Testing ideas in controlled environments to validate concepts before production.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-yellow-950/20 border-yellow-400/30 hover:border-yellow-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Users className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle className="text-yellow-300">Collaboration</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-yellow-200/70">
|
||||
Working with researchers and developers to push technical boundaries.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-yellow-950/20 border-yellow-400/30 hover:border-yellow-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Beaker className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle className="text-yellow-300">Documentation</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-yellow-200/70">
|
||||
Sharing findings and insights with the community for collective growth.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
{/* Features Grid */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-card/50 border-border/50 hover:border-yellow-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Lightbulb className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle>Innovation</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Exploring new technologies and methodologies to stay ahead of the curve.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-yellow-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Zap className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle>Experimentation</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Testing ideas in controlled environments to validate concepts before production.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-yellow-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Users className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle>Collaboration</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Working with researchers and developers to push technical boundaries.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50 hover:border-yellow-500/50 transition-colors">
|
||||
<CardHeader>
|
||||
<Beaker className="h-8 w-8 text-yellow-400 mb-2" />
|
||||
<CardTitle>Documentation</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-gray-400">
|
||||
Sharing findings and insights with the community for collective growth.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* CTA Section */}
|
||||
<section className="container mx-auto max-w-7xl px-4 py-16">
|
||||
<div className="rounded-xl bg-gradient-to-r from-yellow-500/20 to-yellow-600/20 border border-yellow-500/30 p-8 md:p-16 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-bold text-white mb-4">
|
||||
Be Part of the Future
|
||||
</h2>
|
||||
<p className="text-lg text-gray-300 mb-8 max-w-2xl mx-auto">
|
||||
Join our research initiatives and help shape the next generation of technology.
|
||||
</p>
|
||||
<Button size="lg" className="bg-yellow-500 hover:bg-yellow-600 text-black">
|
||||
Get Involved
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
{/* CTA Section */}
|
||||
<section className="py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-4xl px-4 text-center">
|
||||
<h2 className="text-4xl font-bold text-yellow-300 mb-4">
|
||||
Be Part of the Future
|
||||
</h2>
|
||||
<p className="text-lg text-yellow-100/80 mb-8">
|
||||
Join our research initiatives and help shape the next generation of technology.
|
||||
</p>
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-yellow-400 text-black shadow-[0_0_30px_rgba(251,191,36,0.35)] hover:bg-yellow-300"
|
||||
>
|
||||
Get Involved
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue