import React from 'react' import { AppProps } from 'next/app' import SEO from '../next-seo.config'; import { DefaultSeo } from 'next-seo'; import 'tailwindcss/tailwind.css' import Footer from '../components/Footer'; function MyApp({ Component, pageProps }: AppProps) { return <>
} export default MyApp