We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b262865 commit 6db5405Copy full SHA for 6db5405
1 file changed
src/templates/post.tsx
@@ -4,7 +4,7 @@ import { Shell } from "../shell";
4
import { Merge } from "type-fest";
5
import { MyHelmet } from "@/components/my-helmet";
6
import { useSiteMetadata } from "@/shell/default-headers";
7
-import { MainLayout } from "@/layouts/main";
+import { MainLayoutContainer } from "@/layouts/main";
8
9
export type PostTemplateProps = Merge<
10
PageProps<Queries.PostTemplateQuery>,
@@ -17,7 +17,7 @@ const PostTemplate = ({ children, data }: PostTemplateProps) => {
17
return (
18
<>
19
<Shell>
20
- <MainLayout>{children}</MainLayout>
+ <MainLayoutContainer>{children}</MainLayoutContainer>
21
</Shell>
22
<MyHelmet>
23
<title>
0 commit comments