mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-22 04:00:10 +09:00
Add comments, Load default SEO config
This commit is contained in:
parent
fafd1f4533
commit
94c966d58c
@ -1,10 +1,18 @@
|
||||
// Tailwind CSS
|
||||
import 'tailwindcss/tailwind.css';
|
||||
import { ThemeProvider } from "next-themes";
|
||||
import "../styles/globals.css"
|
||||
|
||||
// Dark-mode related
|
||||
import { ThemeProvider } from "next-themes";
|
||||
|
||||
// next-seo
|
||||
import { DefaultSeo } from 'next-seo';
|
||||
import SEO from '../next-seo.config';
|
||||
|
||||
function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<ThemeProvider attribute="class">
|
||||
<DefaultSeo {...SEO} />
|
||||
<Component {...pageProps} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user