an app to share curated trails sidetrail.app
1

Configure Feed

Select the types of activity you want to include in your feed.

at main 274 B View raw
1import "./SectionTitle.css"; 2 3interface SectionTitleProps { 4 children: React.ReactNode; 5 className?: string; 6} 7 8export function SectionTitle({ children, className = "" }: SectionTitleProps) { 9 return <h2 className={`section-title ${className}`.trim()}>{children}</h2>; 10}