'use client' import React, { type PropsWithChildren } from 'react' import { LazyMotion, domAnimation, m } from 'framer-motion' const DocsCoverLogo = (props: PropsWithChildren) => { const pathMotionConfig = { initial: { pathLength: 0 }, animate: { pathLength: 1 }, transition: { duration: 1, delay: 0.2, ease: [0.5, 0.11, 0.13, 1], }, } const logoMotionConfig = { initial: { fillOpacity: 0 }, animate: { fillOpacity: 1 }, transition: { duration: 1, delay: 0.5, ease: [0.25, 0.25, 0, 1], }, } return (
) } export default DocsCoverLogo