🐾‍ 修改Footer样式

This commit is contained in:
tangly1024
2021-09-27 17:40:06 +08:00
parent f07b311dd3
commit 5c46d7f7f0
2 changed files with 34 additions and 18 deletions

View File

@@ -2,9 +2,7 @@ import React from 'react'
const SocialButton = () => {
return <>
<div className='space-x-3 text-xl'>
<a className='fa fa-rss hover:underline' href='/feed' target='_blank' id='feed'/>
<a className='fa fa-info hover:underline mx-1' href='/article/about' id='about'/>
<div className='space-x-3 text-2xl'>
<a className='fa fa-github' target='_blank' rel='noreferrer' title={'github'}
href={'https://github.com/tangly1024'} />
<a className='fa fa-twitter' target='_blank' rel='noreferrer' title={'twitter'}
@@ -12,16 +10,6 @@ const SocialButton = () => {
<a className='fa fa-telegram' href={'https://t.me/tangly_1024'} title={'telegram'} />
<a className='fa fa-weibo' target='_blank' rel='noreferrer' title={'weibo'}
href={'http://weibo.com/tangly1024'} />
<span id='busuanzi_container_site_pv' className='hidden'><span className='s'> | </span>
<a href='https://www.cnzz.com/stat/website.php?web_id=1279970751' target='_blank'
id='busuanzi_container_site_pv'
className='fa fa-user' rel='noreferrer'> pv <span id='busuanzi_value_site_pv'></span></a>
</span>
<span id='busuanzi_container_site_uv' className='hidden'><span className='s'> | </span>
<a href='http://tongji.baidu.com/web/10000363165/overview/index?siteId=16809429' target='_blank'
className='fa fa-eye' rel='noreferrer'> uv <span id='busuanzi_value_site_uv'></span></a>
</span>
</div>
</>
}