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