feat: add footer info

This commit is contained in:
landaiqing
2024-04-15 23:17:47 +08:00
parent 0b7d88b74e
commit 2656b6a6f7
5 changed files with 26 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
const FooterComponent: React.FC = () => {
return (
<div style={{textAlign: 'center',color: 'black'}}>
schisandra ©{new Date().getFullYear()} Created by schisandra
</div>
);
};
export default FooterComponent;