an app to share curated trails sidetrail.app
atproto nextjs react rsc
50
fork

Configure Feed

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

at main 16 lines 389 B view raw
1import "./HomeEmptyState.css"; 2import { NewTrailButton } from "./NewTrailButton"; 3 4type Props = { 5 message: string; 6 buttonText?: string; 7}; 8 9export function HomeEmptyState({ message, buttonText }: Props) { 10 return ( 11 <div className="HomeEmptyState"> 12 <p className="HomeEmptyState-text">{message}</p> 13 {buttonText && <NewTrailButton text={buttonText} />} 14 </div> 15 ); 16}