import { PostPage } from "components/PostPage"; import { getPostStaticProps, PostStaticProps, } from "graphql/getPostStaticProps"; /* * ╭────────╮ * ──────────────────────────────────────────╯ PAGE ╰───────────────────────────────────────────── */ const Home = ({ ...otherProps }: PostStaticProps): JSX.Element => (

Accord’s Library

Discover • Analyze • Translate • Archive

} displayTitle={false} displayLanguageSwitcher /> ); export default Home; /* * ╭──────────────────────╮ * ───────────────────────────────────╯ NEXT DATA FETCHING ╰────────────────────────────────────── */ export const getStaticProps = getPostStaticProps("home");