Create DevLinkAbout.tsx
cgen-89e52ed3fa8d47cfb7b772728527fe6e
This commit is contained in:
parent
b6210f8295
commit
0285359ac9
1 changed files with 129 additions and 67 deletions
|
|
@ -1,105 +1,167 @@
|
|||
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 { Users, Zap, TrendingUp, Globe } from "lucide-react";
|
||||
import { Card, CardContent } from "@/components/ui/card";
|
||||
import { Users, Zap, Target, Heart, ArrowRight } from "lucide-react";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
|
||||
export default function DevLinkAbout() {
|
||||
const navigate = useNavigate();
|
||||
|
||||
const values = [
|
||||
{
|
||||
icon: Users,
|
||||
title: "Community First",
|
||||
description: "Built by Roblox creators, for Roblox creators",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
title: "Empower",
|
||||
description: "Help developers connect and grow together",
|
||||
},
|
||||
{
|
||||
icon: Target,
|
||||
title: "Professional",
|
||||
description: "A platform that takes Roblox development seriously",
|
||||
},
|
||||
{
|
||||
icon: Heart,
|
||||
title: "Inclusive",
|
||||
description: "Supporting developers at all skill levels",
|
||||
},
|
||||
];
|
||||
|
||||
const milestones = [
|
||||
{ year: "2024", event: "Dev-Link Founded", status: "Complete" },
|
||||
{ year: "2025", event: "Beta Launch", status: "In Progress" },
|
||||
{ year: "2025", event: "Public Release", status: "Q2" },
|
||||
{ year: "2025", event: "Job Board Launch", status: "Q3" },
|
||||
];
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<div className="relative min-h-screen bg-black text-white overflow-hidden">
|
||||
{/* Animated backgrounds */}
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#06b6d4_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(6,182,212,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.08] [background-image:linear-gradient(90deg,rgba(6,182,212,0.1)_1px,transparent_1px),linear-gradient(0deg,rgba(6,182,212,0.1)_1px,transparent_1px)] [background-size:50px_50px] animate-pulse" />
|
||||
<div className="pointer-events-none absolute top-20 left-10 w-72 h-72 bg-cyan-500/20 rounded-full blur-3xl animate-blob" />
|
||||
<div className="pointer-events-none absolute bottom-20 right-10 w-72 h-72 bg-cyan-600/10 rounded-full blur-3xl animate-blob" />
|
||||
<div className="pointer-events-none absolute bottom-20 right-10 w-72 h-72 bg-cyan-600/10 rounded-full blur-3xl animate-blob animation-delay-2000" />
|
||||
|
||||
<main className="relative z-10">
|
||||
{/* Header */}
|
||||
<section className="relative overflow-hidden py-12 lg:py-16">
|
||||
<section className="py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<Button
|
||||
onClick={() => navigate("/dev-link")}
|
||||
variant="ghost"
|
||||
className="text-cyan-300 hover:bg-cyan-500/10 mb-8"
|
||||
onClick={() => navigate("/dev-link")}
|
||||
>
|
||||
← Back to Dev-Link
|
||||
</Button>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-4">
|
||||
<h1 className="text-4xl lg:text-5xl font-black text-cyan-300 mb-4">
|
||||
About Dev-Link
|
||||
</h1>
|
||||
<p className="text-lg text-cyan-100/80 max-w-2xl">
|
||||
The professional network for Roblox developers
|
||||
<p className="text-lg text-cyan-100/80 max-w-3xl">
|
||||
The professional networking platform built for Roblox developers. Connect, collaborate, and grow your career in game development.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Content */}
|
||||
<section className="py-12 lg:py-16">
|
||||
<div className="container mx-auto max-w-4xl px-4">
|
||||
<div className="rounded-lg border border-cyan-400/30 bg-cyan-950/20 p-8 mb-12">
|
||||
<h2 className="text-2xl font-bold text-cyan-300 mb-4">Our Mission</h2>
|
||||
<p className="text-cyan-200/80 text-lg leading-relaxed">
|
||||
Dev-Link is a professional networking platform designed specifically for Roblox developers. We
|
||||
connect talented creators, studios, and teams to build meaningful professional relationships,
|
||||
discover opportunities, and advance careers in the thriving Roblox ecosystem.
|
||||
</p>
|
||||
</div>
|
||||
<section className="py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-cyan-300 mb-8">
|
||||
Our Mission
|
||||
</h2>
|
||||
<Card className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardContent className="pt-6">
|
||||
<p className="text-lg text-cyan-200/80 leading-relaxed">
|
||||
Dev-Link is on a mission to empower Roblox developers worldwide. We believe that the Roblox platform has created an incredible community of creators who deserve a professional space to connect, showcase their work, and find amazing opportunities. Just like LinkedIn transformed professional networking, Dev-Link is transforming how Roblox developers collaborate and build their careers.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Values */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<Card className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardHeader>
|
||||
<Users className="h-8 w-8 text-cyan-400 mb-2" />
|
||||
<CardTitle className="text-cyan-300">Connection</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-cyan-200/70">
|
||||
Connecting Roblox developers with peers and opportunities
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardHeader>
|
||||
<Zap className="h-8 w-8 text-cyan-400 mb-2" />
|
||||
<CardTitle className="text-cyan-300">Impact</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-cyan-200/70">
|
||||
Creating tangible career and business opportunities
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardHeader>
|
||||
<TrendingUp className="h-8 w-8 text-cyan-400 mb-2" />
|
||||
<CardTitle className="text-cyan-300">Growth</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-cyan-200/70">
|
||||
Supporting career advancement and professional development
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardHeader>
|
||||
<Globe className="h-8 w-8 text-cyan-400 mb-2" />
|
||||
<CardTitle className="text-cyan-300">Community</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-cyan-200/70">
|
||||
Building a vibrant global community of Roblox creators
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<section className="py-16 border-t border-cyan-400/10 bg-black/40">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-cyan-300 mb-8">
|
||||
Our Values
|
||||
</h2>
|
||||
<div className="grid md:grid-cols-2 gap-6">
|
||||
{values.map((value, idx) => {
|
||||
const Icon = value.icon;
|
||||
return (
|
||||
<Card key={idx} className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardContent className="pt-6">
|
||||
<Icon className="h-8 w-8 text-cyan-400 mb-3" />
|
||||
<h3 className="text-lg font-bold text-cyan-300 mb-2">
|
||||
{value.title}
|
||||
</h3>
|
||||
<p className="text-sm text-cyan-200/70">
|
||||
{value.description}
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section className="py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-cyan-300 mb-8">
|
||||
Our Roadmap
|
||||
</h2>
|
||||
<div className="space-y-4">
|
||||
{milestones.map((milestone, idx) => (
|
||||
<Card key={idx} className="bg-cyan-950/20 border-cyan-400/30">
|
||||
<CardContent className="pt-6">
|
||||
<div className="flex items-center justify-between">
|
||||
<div>
|
||||
<Badge className="bg-cyan-500/20 text-cyan-300 border border-cyan-400/40 mb-2">
|
||||
{milestone.year}
|
||||
</Badge>
|
||||
<p className="font-bold text-cyan-300">
|
||||
{milestone.event}
|
||||
</p>
|
||||
</div>
|
||||
<Badge
|
||||
className={`${
|
||||
milestone.status === "Complete"
|
||||
? "bg-green-500/20 text-green-300"
|
||||
: milestone.status === "In Progress"
|
||||
? "bg-yellow-500/20 text-yellow-300"
|
||||
: "bg-cyan-500/20 text-cyan-300"
|
||||
} border`}
|
||||
>
|
||||
{milestone.status}
|
||||
</Badge>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section className="py-16 border-t border-cyan-400/10">
|
||||
<div className="container mx-auto max-w-4xl px-4 text-center">
|
||||
<h2 className="text-3xl font-bold text-cyan-300 mb-4">
|
||||
Join the Community
|
||||
</h2>
|
||||
<p className="text-lg text-cyan-100/80 mb-8">
|
||||
Be part of the professional Roblox developer community
|
||||
</p>
|
||||
<Button
|
||||
className="bg-cyan-400 text-black shadow-[0_0_30px_rgba(6,182,212,0.35)] hover:bg-cyan-300"
|
||||
onClick={() => navigate("/dev-link/waitlist")}
|
||||
>
|
||||
Join Waitlist
|
||||
<ArrowRight className="ml-2 h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</Layout>
|
||||
|
|
|
|||
Loading…
Reference in a new issue