1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
conky/web/pages/lua.tsx

29 lines
684 B
TypeScript
Raw Normal View History

import Layout from '../components/Layout'
import SEO from '../components/SEO'
2022-09-30 22:20:17 +00:00
import { getLua, Documentation } from '../utils/doc-utils'
import Docs from '../components/Docs'
export interface LuaProps {
2022-09-30 22:20:17 +00:00
lua: Documentation
}
export default function Lua(props: LuaProps) {
return (
<Layout>
<SEO title="Conky Lua API" description="Conky Lua API documentation" />
<main className="w-full">
<div>
<h1 className="text-2xl">Lua API</h1>
</div>
2022-09-30 22:20:17 +00:00
<Docs docs={props.lua} braces={false} assign={false} />
</main>
</Layout>
)
}
export async function getStaticProps() {
const lua = getLua()
return { props: { lua } }
}