import { siteConfig } from '@/lib/config' import { useRouter } from 'next/router' import React from 'react' import ShareButtons from './ShareButtons' const ShareBar = ({ post }) => { const router = useRouter() if (!JSON.parse(siteConfig('POST_SHARE_BAR_ENABLE')) || !post || post?.type !== 'Post') { return <>> } const shareUrl = siteConfig('LINK') + router.asPath return