This commit is contained in:
Patrick Alvin Alcala 2025-11-21 15:34:18 +08:00
parent afb5f3a287
commit db3736b71f
16 changed files with 203 additions and 181 deletions

View file

@ -0,0 +1,11 @@
import { $companyName, $copyRightYear } from "configs/config.site"
export default () => {
return (
<>
<span>
Copyright © {$copyRightYear.get()} {$companyName.get()} All Rights Reserved.
</span>
</>
)
}