diff --git a/ko-pages/_app.tsx b/ko-pages/_app.tsx new file mode 100644 index 0000000..270c497 --- /dev/null +++ b/ko-pages/_app.tsx @@ -0,0 +1,23 @@ +import type { AppProps } from 'next/app'; +import Script from 'next/script'; +import { Analytics } from '@vercel/analytics/react'; + +function MyApp({ Component, pageProps }: AppProps) { + return ( + <> + + + + + + ); +} + +export default MyApp;