Primary Button
.btn-primary { color: #fff; background: #7C3AED; border-radius: 8px; padding: 1rem 2rem; }
Click Handler
const btn = document.querySelector('#submit'); btn.addEventListener('click', () => { console.log('Button clicked!'); });
Paper Plane Icon
<i class="fa-regular fa-paper-plane"></i>
Feature Commit
git commit -m "feat: Add user authentication flow"
User Data
{ "id": 123, "username": "alex", "isActive": true }
CSS Gradient
background-image: linear-gradient( to right, #7C3AED, #A78BFA );
Image Gallery
[gallery ids="12, 34, 56" columns="3"]
React Props
// ParentComponent.js import React from 'react'; import ChildComponent from './ChildComponent'; const ParentComponent = () => { const userName = "Alice"; const userAge = 25; return ( <div> <h1>Parent Component</h1> <ChildComponent name={userName} age={userAge} /> </div> ); }; export default ParentComponent;
Truck
<i class="fa-regular fa-truck"></i>