UNPKG

reactbits-mcp-server

Version:

MCP Server for React Bits - Access 99+ React components with animations, backgrounds, and UI elements

20 lines (16 loc) 637 B
import { Link } from 'react-router-dom'; import './StartBuilding.css'; const StartBuilding = () => { return ( <section className="start-building-section"> <div className="start-building-container"> <div className="start-building-card"> <h2 className="start-building-title">Start exploring React Bits</h2> <p className="start-building-subtitle">Animations, components, backgrounds - it&apos;s all here</p> <Link to="/text-animations/split-text" className="start-building-button">Browse Components</Link> </div> </div> </section> ); }; export default StartBuilding;