'use client'; import { MailIcon } from 'lucide-react'; import Noise from '@/components/elements/noise'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from '@/components/ui/card'; const stats = [ { value: '2024', label: 'Launched', }, { value: '$2.2M', label: 'Pre-Seed Round', }, ]; const performanceStats = [ { value: '42%', description: 'Teams using Lumen report a 42% increase in overall project efficiency and communication clarity within the first month.', }, { value: '3200+', description: 'Projects successfully managed through Lumen across product, marketing, operations, and creative teams worldwide.', }, { value: '97%', description: 'Our customer satisfaction score stands at 97%, reflecting the trust teams place in Lumen for critical workflows.', }, ]; export default function WhyWeBegan() { return (
{/* Background gradient circles */}
Team collaboration
{/* Content Section */}

Why We Began

We built Lumen after experiencing the headaches of managing multiple tools and scattered communication. Instead of switching tabs and losing focus, we imagined one space where everything connects.


Today, Lumen is used by thousands of teams who value structure, speed, and a more intuitive way to manage their projects.

{/* Stats Cards */}
{stats.map((stat, index) => ( {stat.value} {stat.label} ))}
{/* Pro Access Section */}
{/* Content Section */}

Power your progress with Pro Access

At Lumen, our mission is to help modern teams eliminate chaos and regain clarity by offering beautifully simple task and project management tools. We believe great work doesn't need to be complicated — it needs to be intentional.


With years of experience building tools for creatives, developers, and teams of all sizes, we've shaped Lumen to be the silent partner for you.

{/* CTA Buttons */}
{/* Images Grid */}
{/* First row - 2 images */}
Team collaboration workspace
Developer workspace
{/* Second row - 1 full width image */} Modern office workspace
{/* Performance Statistics Cards */}
{performanceStats.map((stat, index) => ( {stat.value} {stat.description} ))}
); }