import Head from 'next/head' import '../styles/globals.css' import { AppProps } from 'next/app' export default function MyApp({ Component, pageProps }: AppProps) { return ( <> Next.js PWA Example ) }