mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 10:35:10 +00:00
38 lines
910 B
TypeScript
38 lines
910 B
TypeScript
import Layout from '../components/Layout'
|
||
import SEO from '../components/SEO'
|
||
import {
|
||
getConfigSettings,
|
||
Documentation,
|
||
filterDesc,
|
||
} from '../utils/doc-utils'
|
||
import Docs from '../components/Docs'
|
||
|
||
export interface ConfigSettingsProps {
|
||
config_settings: Documentation
|
||
}
|
||
|
||
export default function ConfigSettings(props: ConfigSettingsProps) {
|
||
return (
|
||
<Layout>
|
||
<SEO
|
||
title="Conky – Config settings"
|
||
description="Conky configuration settings"
|
||
/>
|
||
<main className="w-full">
|
||
<div>
|
||
<h1 className="text-2xl" data-cy="page-heading">
|
||
Configuration settings
|
||
</h1>
|
||
</div>
|
||
<Docs docs={props.config_settings} braces={false} assign={true} />
|
||
</main>
|
||
</Layout>
|
||
)
|
||
}
|
||
|
||
export async function getStaticProps() {
|
||
const config_settings = filterDesc(getConfigSettings())
|
||
|
||
return { props: { config_settings } }
|
||
}
|