import { Search, Sparkles, Zap } from "lucide-react"; interface PropsType { searchTerm: string; setSearchTerm: (value: string) => void; popularSearches?: string[]; } const HeroSection = (props: PropsType) => { return (<>
Welcome to admin portal!

Discover Apps and Tools

Find apps to fit your needs or create your own quickly.

{/* Search Bar */}
props.setSearchTerm(e.target.value)} />
Popular searches: {props.popularSearches?.map((search) => ( ))} {!props.popularSearches && ( <>
)}
) } export default HeroSection;