import type { GetServerSideProps, NextPage } from "next"; import Head from "next/head"; import Navigation from "../../../components/Blog/Navigation"; import { generateContent } from "../../../lib/content/generateBackend"; import type { ContentList } from "../../../lib/content/types"; import contentList from "../../../public/content/list.json"; import styles from "../../../styles/Blog/Content.module.scss"; interface IContentRender { more?: string; repo?: string; title: string; html: string; } const Post: NextPage<{ content: IContentRender }> = ({ content }) => { return <>