import { motion } from 'framer-motion' import { Helmet } from 'react-helmet-async' import type { FC, ReactNode } from 'react' type Props = { children: ReactNode } const SidebarComponent: FC = ({ children }) => ( {children} ) export default SidebarComponent