import Head from 'next/head' import meta from '../../../_content/meta.json' import resume from '../../../_content/resume.json' const Meta = ({ title, description, image, slug }: { title: string description: string image?: string slug?: string }) => { const url = slug ? `${meta.url}/${slug}` : meta.url return (
{/* */}