"use client"; import { motion } from "framer-motion"; import Link from "next/link"; import { ArrowRight, Sparkles } from "lucide-react"; import { Button } from "@/components/ui/button"; const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2, delayChildren: 0.3, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8, ease: [0.22, 1, 0.36, 1], // Custom easing (approx. easeOutQuint/Expo) for a premium feel }, }, }; export function HeroSection() { return (
AI-Powered Research Find Your Next Customers
Before They Know They Need You
Sanati analyzes your product and finds people on Reddit, Hacker News, and forums who are actively expressing needs that your solution solves.
{/* Right side is reserved for the shader visualization */}
); }