Skip to main content
Glama
Southclaws

Storyden

by Southclaws
ContentDragOverlay.tsx977 B
import { Box, styled } from "@/styled-system/jsx"; type Props = { isError: boolean; message: string; }; export function ContentDragOverlay({ isError, message }: Props) { return ( <Box position="absolute" top="0" left="0" right="0" bottom="0" pointerEvents="none" display="flex" alignItems="center" justifyContent="center" backgroundColor="bg.emphasized" borderWidth="medium" borderStyle="dashed" borderColor={isError ? "border.error" : "accent.default"} borderRadius="md" style={{ opacity: 0.95 }} role="status" aria-live="polite" aria-label={message} > <styled.div fontSize="sm" fontWeight="medium" color={isError ? "fg.error" : "accent.default"} display="flex" flexDirection="column" alignItems="center" gap="2" > <span>{message}</span> </styled.div> </Box> ); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'

If you have feedback or need assistance with the MCP directory API, please join our Discord server