'use client' import { Header } from '@/components/Header' import { Footer } from '@/components/Footer' import { Target, Shield, Zap, Users, Globe, ArrowRight } from 'lucide-react' import Link from 'next/link' const stats = [ { value: 'Verified', label: 'DNS-VERIFIED LISTINGS' }, { value: 'Real data', label: 'NO SIMULATED INVENTORY' }, { value: 'Operator-grade', label: 'WORKFLOWS' }, { value: 'Secure', label: 'COOKIE AUTH + RATE LIMITS' }, ] export default function AboutPage() { return (
{/* Background Atmosphere */}
{/* Hero */}
Mission Briefing

Built for hunters.
By hunters.

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

{/* Stats Grid - Bento Style */}
{stats.map((stat) => (
{stat.value}
{stat.label}
))}
{/* Mission */}
The Objective

Level the playing field.

Domain intelligence shouldn't be locked behind enterprise paywalls or hidden in archaic CLI tools.

We built POUNCE to democratize access to high-value digital assets. Whether you're a sniper looking for a single drop or a whale managing a portfolio, our tools give you the same firepower.

Global Coverage

  • Registrars 50+ Connected
  • TLDs 886 Supported
  • Refresh Rate Live
  • Data Source WHOIS / RDAP / DNS
{/* Values */}

Operational Code

{[ { icon: Target, title: 'Precision', desc: 'Accurate data. No guesswork. Every check counts.' }, { icon: Shield, title: 'Privacy', desc: 'Your strategy stays yours. We never share or sell data.' }, { icon: Zap, title: 'Speed', desc: 'Fast intel. You move first.' }, { icon: Users, title: 'Transparency', desc: 'Clear pricing. No surprises. Ever.' }, ].map((value, i) => (

{value.title}

{value.desc}

))}
{/* CTA */}

Ready to deploy?

Join the elite circle of investors who stop guessing and start knowing.

Enter Terminal Contact HQ
) }