'use client' import { Header } from '@/components/Header' import { Footer } from '@/components/Footer' import { Target, Shield, Zap, Users, Globe, TrendingUp, ArrowRight } from 'lucide-react' import Link from 'next/link' const values = [ { icon: Target, title: 'Precision', description: 'Accurate data. No guesswork. Every check counts.', }, { icon: Shield, title: 'Privacy', description: 'Your strategy stays yours. We never share or sell data.', }, { icon: Zap, title: 'Speed', description: 'Real-time intel. You see it first.', }, { icon: Users, title: 'Transparency', description: 'Clear pricing. No surprises. Ever.', }, ] const stats = [ { value: '500K+', label: 'Domains Tracked' }, { value: '99.9%', label: 'Uptime' }, { value: '50ms', label: 'Response Time' }, { value: '24/7', label: 'Always On' }, ] const team = [ { name: 'Domain Intel', role: 'Core', description: 'WHOIS + RDAP queries. Accurate. Reliable. Always.', }, { name: 'Price Tracking', role: 'Market', description: 'Real-time TLD pricing. Know what domains cost.', }, { name: 'Instant Alerts', role: 'Notify', description: 'Domain drops? You know first. Email or webhook.', }, ] export default function AboutPage() { return (
{/* Ambient glow */}
{/* Hero */}
About pounce

Built for hunters.
By hunters.

POUNCE exists for one reason: to give you the edge. Track domains. See opportunities. Move first.

{/* Stats */}
{stats.map((stat) => (

{stat.value}

{stat.label}

))}
{/* Mission */}

The Mission

Level the playing field. Domain intel shouldn't be locked behind enterprise paywalls. With POUNCE, anyone can track domains, spot trends, and strike when the iron's hot. Simple tools. Powerful results.

{/* Values */}

Our Code

{values.map((value, i) => (

{value.title}

{value.description}

))}
{/* Features */}

What We Do

{team.map((item, i) => (

{item.name}

{item.role}

{item.description}

))}
{/* CTA */}

Ready to hunt?

Join the hunters who move first.

Start Hunting Get in Touch
) }