import { createSectionPage } from "@/components/OrganizedContent/Section"; import { createSectionGetStaticPaths, createSectionGetStaticProps, } from "@/components/OrganizedContent/static"; import { options } from "../code-of-conduct"; export default createSectionPage(options); export const getStaticProps = createSectionGetStaticProps(options.pagePath); export const getStaticPaths = createSectionGetStaticPaths(options.pagePath);