import { siteConfig } from '@/lib/config' import { checkContainHttp, sliceUrlFromHttp } from '@/lib/utils' import SocialButton from '@/themes/fukasawa/components/SocialButton' import CONFIG from '../config' import { Logo } from './Logo' import { SVGFooterCircleBG } from './svg/SVGFooterCircleBG' /* eslint-disable @next/next/no-img-element */ export const Footer = props => { const latestPosts = props?.latestPosts ? props?.latestPosts.slice(0, 2) : [] const STARTER_FOOTER_LINK_GROUP = siteConfig( 'STARTER_FOOTER_LINK_GROUP', [], CONFIG ) return ( <> {/* */} {/* */} ) }