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

32 lines
857 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'
2022-10-01 20:32:01 +00:00
import { getSearchIndex, SearchIndex } from '../utils/search'
export interface LuaProps {
2022-09-30 22:20:17 +00:00
lua: Documentation
2022-10-01 20:32:01 +00:00
searchIndex: SearchIndex
}
export default function Lua(props: LuaProps) {
return (
2022-10-01 20:32:01 +00:00
<Layout searchIndex={props.searchIndex}>
<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()
2022-10-01 20:32:01 +00:00
const searchIndex = getSearchIndex()
2022-10-01 20:32:01 +00:00
return { props: { lua, searchIndex } }
}