import PostPage from "components/PostPage"; import { getPostStaticProps, PostStaticProps, } from "graphql/getPostStaticProps"; import { Immutable } from "helpers/types"; export default function Home(props: Immutable): JSX.Element { const { post, langui, languages, currencies } = props; return (

Accord’s Library

Discover • Analyze • Translate • Archive

} displayTitle={false} displayLanguageSwitcher /> ); } export const getStaticProps = getPostStaticProps("home");