import Layout from '../components/Layout' import SEO from '../components/SEO' import { getLua, Doc } from '../utils/doc-utils' import Docs from '../components/Docs' export interface LuaProps { lua: Doc[] } export default function Lua(props: LuaProps) { return (

Lua API

) } export async function getStaticProps() { const lua = getLua() return { props: { lua } } }