'use client'; import { motion } from 'framer-motion'; import Logo from './Logo'; export default function Hero() { /** * Smoothly scrolls the window to the tools section without modifying the URL hash. */ const scrollToTools = () => { const toolsSection = document.getElementById('tools'); if (toolsSection) { toolsSection.scrollIntoView({ behavior: 'smooth' }); } }; return (
{/* Logo */} {/* Main heading */} Kit {/* Subtitle */} Your Creative Toolkit {/* Description */} A curated collection of creative and utility tools for developers and creators. Simple, powerful, and always at your fingertips. {/* CTA Buttons */} Explore Tools View on Dev {/* Scroll indicator */} Scroll to explore
); }