'use client'; import { ArrowDown } from 'lucide-react'; import Logo from './Logo'; export default function Hero() { const scrollToTools = () => { document.getElementById('tools')?.scrollIntoView({ behavior: 'smooth' }); }; return (
{/* Logo */} {/* Badge */}
Browser-first
{/* Title */}

Kit .

{/* Description */}

A curated collection of browser-based tools for developers and creators. Everything runs locally — no data leaves your machine.

{/* CTA */}
{/* Scroll indicator */}
); }