Added copyright component

This commit is contained in:
Patrick Alvin Alcala 2025-09-02 14:34:58 +08:00
parent de74de8b0a
commit 0d05d12314

View file

@ -0,0 +1,14 @@
interface Props {
year: string
name: string
}
export default (props: Props) => {
return (
<>
<span>
Copyright © {props.year} {props.name} All Rights Reserved.
</span>
</>
)
}