diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..24c7882 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files +.env +.env.local +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2563e79..9499ea9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,7 @@ import GlobalModal from '@src/components/common/modal/GlobalModal'; import Toaster from '@src/components/common/toast/Toast'; import './globals.css'; import TanstackQueryProvider from '@src/provider/TanstackQueryProvider'; +import Head from 'next/head'; interface LocaleLayoutProps { children: React.ReactNode; @@ -10,6 +11,9 @@ interface LocaleLayoutProps { const LocaleLayout: FC = ({ children }) => ( + + + {children}