文章页加入Footer

This commit is contained in:
tangly1024
2021-10-12 18:07:53 +08:00
parent 259f7035e1
commit 93a33c12ee
2 changed files with 13 additions and 5 deletions

View File

@@ -6,12 +6,12 @@ const Footer = ({ fullWidth = true }) => {
const y = d.getFullYear()
return (
<footer
className='flex-shrink-0 m-auto w-full mx-auto text-gray-500 dark:text-gray-400 text-sm text-gray-400 p-6'
className='flex-shrink-0 justify-center text-center m-auto w-full mx-auto text-gray-500 dark:text-gray-400 text-sm text-gray-400 p-6'
>
<span className='fa fa-shield leading-6'> <a href='https://beian.miit.gov.cn/' className='ml-1'>闽ICP备20010331号</a></span>
<br />
<span className='fa fa-copyright leading-6'> {` ${y}`} {BLOG.author} </span>
<span className='fa fa-copyright leading-6'> {` ${y}`} <span>Made with by <a href='https://www.tangly1024.com/article/about' className='underline'>@tangly1024</a>. Powered by <a href='https://notion.so' className='underline'>Notion</a> & <a href='https://vercel.com' className='underline'>Vercel</a>.</span> </span>
<br />
<span className='fa fa-shield leading-6 mr-2'> <a href='https://beian.miit.gov.cn/' className='ml-1'>闽ICP备20010331号</a></span>
<span id='busuanzi_container_site_pv' className=''>
<a id='busuanzi_container_site_pv' target='_blank' className='fa fa-eye' rel='noreferrer'
href='https://www.cnzz.com/stat/website.php?web_id=1279970751'><span
@@ -22,6 +22,8 @@ const Footer = ({ fullWidth = true }) => {
href='http://tongji.baidu.com/web/10000363165/overview/index?siteId=16809429'>
<span id='busuanzi_value_site_uv' className='px-1'>99999</span>uv</a>
</span>
<br/>
</footer>
)
}