Apr 9Dynamic Meta Tags in NextJS to improve SEO and Social MetadataIn this tutorial, I suppose that you already have a NextJS app up and running with at least 2 basic files pages/_app.tsx, pages/index.tsx and 2 images: public/favicon.io and public/hero-image.jpg Initial content: pages/_app.tsx import "../styles/globals.css"; import type { AppProps } from "next/app"; function MyApp({ Component, pageProps }: AppProps) { …Metadata3 min read