Skip to main content
Glama
AnimatedDiv.tsx486 B
'use client'; import { m } from 'framer-motion'; import type { FC, HTMLAttributes, ReactNode } from 'react'; type AnimatedDivProps = { children?: ReactNode; } & Pick<HTMLAttributes<HTMLDivElement>, 'className'>; export const AnimatedDiv: FC<AnimatedDivProps> = ({ children, ...props }) => ( <m.div initial={{ opacity: 0, translateY: '100px' }} whileInView={{ opacity: 1, translateY: '0px' }} viewport={{ once: false }} {...props} > {children} </m.div> );

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/aymericzip/intlayer'

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