'use client'; import { Modal, Stack, Text, Group, Button } from '@mantine/core'; import { IconTrash } from '@tabler/icons-react'; interface DeleteNodeModalProps { opened: boolean; onClose: () => void; onConfirm: () => void; nodeTitle: string | null; isDeleting: boolean; } export function DeleteNodeModal({ opened, onClose, onConfirm, nodeTitle, isDeleting, }: DeleteNodeModalProps) { return ( Are you sure you want to delete "{nodeTitle}"? This will: • Remove the post from Bluesky • Delete the node from your galaxy This action cannot be undone. ); }