diff --git a/contents/2023-02-11-Scuffed_server.mdx b/contents/2023-02-11-Scuffed_server.mdx index 2c39d67..55f7af5 100644 --- a/contents/2023-02-11-Scuffed_server.mdx +++ b/contents/2023-02-11-Scuffed_server.mdx @@ -160,8 +160,11 @@ const Comment = ({post_id}) => { ``` -i put ```Math.random()``` as post_id to make gatsby load the script again everytime you visit the page +i put ```Math.random()``` as post_id to make gatsby load the script again +everytime you visit the page
-well that's it for now, later i will add about jenkins and prometheus setup on my scuffed server. -I just want to post this shit man i haven't post anything for 3 decades man, it's hard to be [consistent](https://typesense.org/blog/the-unreasonable-effectiveness-of-just-showing-up-everyday/) man +well that's it for now, later i will add about jenkins and prometheus setup +on my scuffed server. +I just want to post this shit man i haven't post anything for 3 decades man, +it's hard to be [consistent](https://typesense.org/blog/the-unreasonable-effectiveness-of-just-showing-up-everyday/) man diff --git a/src/components/Seo/index.tsx b/src/components/Seo/index.tsx index 374df43..e28decd 100644 --- a/src/components/Seo/index.tsx +++ b/src/components/Seo/index.tsx @@ -35,6 +35,7 @@ const SEO: FC = (props) => { + {props.children} ) diff --git a/src/pages/Layout/index.tsx b/src/pages/Layout/index.tsx index 735265c..f5e3e8f 100644 --- a/src/pages/Layout/index.tsx +++ b/src/pages/Layout/index.tsx @@ -8,13 +8,13 @@ import { MDXProvider } from '@mdx-js/react'; import './styles.scss'; type queryLayoutProps = { - mdx: { - frontmatter: { - title: string, - date: string, - last_update: string - } + mdx: { + frontmatter: { + title: string, + date: string, + last_update: string } + } children: any }