A custom Sonner toast notification that displays repository sync status with branch info and action buttons.
import { Toaster } from "@/components/ui/sonner" import ToastComponent from "@/components/ui/sonner-05" export default function Default() { return ( <div className="flex min-h-64 w-full items-center justify-center"> <ToastComponent /> <Toaster position="bottom-right" /> </div> ) }