dasig/frontend/@dasig/components/Copyright.tsx
2026-01-30 19:18:45 +08:00

12 lines
291 B
TypeScript

import * as fs from 'node:fs'
import * as toml from 'toml'
const config = toml.parse(fs.readFileSync('configs/config.site.toml', 'utf8'))
export default () => {
return (
<span>
Copyright © {config.copyright.year} {config.copyright.name} All Rights Reserved.
</span>
)
}