Skip to content

Commit

Permalink
fix: integrate Layout component with DarkModeProvider
Browse files Browse the repository at this point in the history
Co-Authored-By: Benjamin Bolte <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and codekansas committed Dec 12, 2024
1 parent 95d9232 commit 2bc9ba7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "@/styles/globals.css";
import type { AppProps } from "next/app";
import Head from "next/head";
import { Layout } from "@/components/layout/Layout";

export default function App({ Component, pageProps }: AppProps) {
return (
Expand All @@ -15,7 +16,9 @@ export default function App({ Component, pageProps }: AppProps) {
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</Head>
<Component {...pageProps} />
<Layout>
<Component {...pageProps} />
</Layout>
</>
);
}

0 comments on commit 2bc9ba7

Please sign in to comment.