dasig-static/@dasig/components/Copyright.astro
2026-03-24 19:27:19 +08:00

16 lines
307 B
Text

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