This commit is contained in:
Tben 2022-03-11 13:38:22 +01:00
parent a26e10c25d
commit c9ea5cb36c

View File

@ -0,0 +1,15 @@
import React from 'react'
const GeneralFooter = () => {
const date = new Date();
return (
<footer className='mt-10'>
{/* <div className='flex-col flex'>
<a href="/" className='text-xl font-bold mb-1'>Tben.me</a>
</div> */}
<span className='text-sm opacity-40'>Copyright © { date.getFullYear() } Tben.me. All Rights Reserved.</span>
</footer>
)
}
export default GeneralFooter