1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-01 06:29:07 +00:00
conky/web/pages/variables.tsx
2022-10-01 17:45:31 -04:00

35 lines
945 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from '../components/Layout'
import SEO from '../components/SEO'
import { getVariables, Documentation } from '../utils/doc-utils'
import Docs from '../components/Docs'
import { getSearchIndex, SearchIndex } from '../utils/search'
export interface VariablesProps {
variables: Documentation
searchIndex: SearchIndex
}
export default function Variables(props: VariablesProps) {
return (
<Layout searchIndex={props.searchIndex}>
<SEO
title="Conky Variables"
description="Conky object variables documentation"
/>
<main className="w-full">
<div>
<h1 className="text-2xl">Variables</h1>
</div>
<Docs docs={props.variables} braces={true} assign={false} />
</main>
</Layout>
)
}
export async function getStaticProps() {
const variables = getVariables()
const searchIndex = getSearchIndex()
return { props: { variables, searchIndex } }
}