import React from 'react'; interface LiveProjectButtonProps { href: string; label?: string; } export function LiveProjectButton({ href, label = 'Watch Project' }: LiveProjectButtonProps) { return ( {label} ); }