TypeScript
ShadcnStore blocks are built with TypeScript for type safety and better developer experience.
Usage
All blocks come with TypeScript definitions included. Simply import and use:
tsx
import { Hero1 } from '@/components/blocks/marketing/heroes/Hero1'
export default function HomePage() {
return <Hero1 />
}
Type Safety
Components include proper TypeScript types for all props and configurations.
For more TypeScript guidance, see the official TypeScript documentation.