A text-focused section component similar to HeroSection but without video content. Features a title (h2), content description, and a call-to-action button.
title(string): Main title with support for HTML<br />tagscontent(string): Content description textlink(LinkConfig): Button configurationtext(string): Button texturl(string): Target URL (supports internal anchors and external links)target(optional): Link target ('_blank' for external links)
className(optional): Additional CSS classesonNavigate(optional): Navigation callback for deep linking
import TextSection from '../components/TextSection';
<TextSection
title="Your compelling title<br />with line breaks"
content="Your descriptive content goes here. This supports longer text content."
link={{
text: "Learn More",
url: "https://example.com",
target: "_blank"
}}
/>- Responsive design with mobile optimization
- Support for internal anchor links and external URLs
- HTML line break support in titles
- Consistent styling with other section components
- Deep linking support for internal navigation