import { IpcClient } from "@/ipc/ipc_client"; import { Play } from "lucide-react"; export const OnboardingBanner = ({ isVisible, setIsVisible, }: { isVisible: boolean; setIsVisible: (isVisible: boolean) => void; }) => { if (!isVisible) return null; return ( //
{ e.preventDefault(); IpcClient.getInstance().openExternalUrl( "https://www.youtube.com/watch?v=rgdNoHLaRN4", ); setIsVisible(false); }} target="_blank" rel="noopener noreferrer" className="cursor-pointer block bg-(--background-lightest) border border-border rounded-lg shadow-lg hover:bg-accent transition-colors" >
Get started with Dyad in 3 minutes

Get started with Dyad in 3 minutes

Start building your app for free

//
); };