mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-31 07:26:43 +00:00
feature: 加一点点阴影
This commit is contained in:
@@ -10,7 +10,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|||||||
export default function Analytics ({ postCount }) {
|
export default function Analytics ({ postCount }) {
|
||||||
const { locale } = useGlobal()
|
const { locale } = useGlobal()
|
||||||
|
|
||||||
return <section className='hidden lg:block mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200 py-4'>
|
return <>
|
||||||
<div className='px-5 text-sm font-light pb-1 text-gray-600 dark:text-gray-200'><FontAwesomeIcon icon={faChartBar} className='mr-2' />{locale.COMMON.ANALYTICS}</div>
|
<div className='px-5 text-sm font-light pb-1 text-gray-600 dark:text-gray-200'><FontAwesomeIcon icon={faChartBar} className='mr-2' />{locale.COMMON.ANALYTICS}</div>
|
||||||
<div className='mt-2 text-center dark:text-gray-300 font-light text-xs'>
|
<div className='mt-2 text-center dark:text-gray-300 font-light text-xs'>
|
||||||
<span className='px-1 '>
|
<span className='px-1 '>
|
||||||
@@ -20,5 +20,5 @@ export default function Analytics ({ postCount }) {
|
|||||||
<span className='px-1 busuanzi_container_site_pv hidden'>
|
<span className='px-1 busuanzi_container_site_pv hidden'>
|
||||||
| <strong className='pl-1 busuanzi_value_site_pv font-medium'></strong>{locale.COMMON.VIEWS}</span>
|
| <strong className='pl-1 busuanzi_value_site_pv font-medium'></strong>{locale.COMMON.VIEWS}</span>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ export default function ArticleDetail ({ post, blockMap, recommendPosts, prev, n
|
|||||||
return (<>
|
return (<>
|
||||||
<div id="article-wrapper" ref={targetRef} className="flex-grow mt-14 md:mt-0 max-w-5xl mx-auto w-screen md:w-full ">
|
<div id="article-wrapper" ref={targetRef} className="flex-grow mt-14 md:mt-0 max-w-5xl mx-auto w-screen md:w-full ">
|
||||||
<article itemScope itemType="https://schema.org/Movie"
|
<article itemScope itemType="https://schema.org/Movie"
|
||||||
className="shadow-md hover:shadow-2xl duration-300 animate__fadeIn animate__animated subpixel-antialiased py-10 px-5 lg:pt-24 md:px-24 xl:px-32 dark:border-gray-700 bg-white dark:bg-gray-800"
|
className="shadow hover:shadow-2xl duration-300 animate__fadeIn animate__animated subpixel-antialiased py-10 px-5 lg:pt-24 md:px-24 xl:px-32 dark:border-gray-700 bg-white dark:bg-gray-800"
|
||||||
>
|
>
|
||||||
<header>
|
<header>
|
||||||
{post.type && !post.type.includes('Page') && post?.page_cover && (
|
{post.type && !post.type.includes('Page') && post?.page_cover && (
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import TagItemMini from './TagItemMini'
|
|||||||
|
|
||||||
const BlogPostCard = ({ post, tags }) => {
|
const BlogPostCard = ({ post, tags }) => {
|
||||||
return (
|
return (
|
||||||
<div key={post.id} className='flex xl:flex-row flex-col-reverse justify-between md:hover:shadow-xl duration-300
|
<div key={post.id} className='shadow flex xl:flex-row flex-col-reverse justify-between md:hover:shadow-xl duration-300
|
||||||
w-full bg-white dark:bg-gray-800 dark:hover:bg-gray-700 dark:border-gray-600'>
|
w-full bg-white dark:bg-gray-800 dark:hover:bg-gray-700 dark:border-gray-600'>
|
||||||
|
|
||||||
<div className='p-8 flex flex-col justify-between w-full'>
|
<div className='p-8 flex flex-col justify-between w-full'>
|
||||||
|
|||||||
@@ -24,13 +24,13 @@ const SideAreaLeft = ({ title, tags, currentTag, post, posts, categories, curren
|
|||||||
const postCount = posts?.length || 0
|
const postCount = posts?.length || 0
|
||||||
return <>
|
return <>
|
||||||
|
|
||||||
<div className={(!post ? 'sticky top-8 ' : ' ') + ' w-60'}>
|
<section className={(!post ? 'sticky top-8 ' : ' ') + ' w-60'}>
|
||||||
<section className='hidden lg:block mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200 py-6'>
|
<section className='shadow hidden lg:block mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200 py-6'>
|
||||||
<InfoCard postCount={postCount} />
|
<InfoCard postCount={postCount} />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* 菜单 */}
|
{/* 菜单 */}
|
||||||
<section className='hidden lg:block mb-5 py-4 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'>
|
<section className='shadow hidden lg:block mb-5 py-4 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'>
|
||||||
<MenuButtonGroup allowCollapse={true} />
|
<MenuButtonGroup allowCollapse={true} />
|
||||||
<div className='px-5 pt-2'>
|
<div className='px-5 pt-2'>
|
||||||
<SearchInput currentTag={currentTag} currentSearch={currentSearch} />
|
<SearchInput currentTag={currentTag} currentSearch={currentSearch} />
|
||||||
@@ -38,32 +38,21 @@ const SideAreaLeft = ({ title, tags, currentTag, post, posts, categories, curren
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* 统计 */}
|
{/* 统计 */}
|
||||||
<Analytics postCount={postCount}/>
|
<section className='shadow hidden lg:block mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200 py-4'>
|
||||||
|
<Analytics postCount={postCount}/>
|
||||||
|
</section>
|
||||||
|
|
||||||
{/* 分类 */}
|
</section>
|
||||||
{/* { categories && ( */}
|
|
||||||
{/* <section className=' py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'> */}
|
|
||||||
{/* <div className='text-sm px-5 mb-2 flex flex-nowrap justify-between font-light'> */}
|
|
||||||
{/* <div className='pb-1 text-gray-600 dark:text-gray-200'><FontAwesomeIcon icon={faThList} className='mr-2' />{locale.COMMON.CATEGORY}</div> */}
|
|
||||||
{/* <Link href='/category' passHref> */}
|
|
||||||
{/* <a className='text-gray-400 hover:text-black dark:text-gray-400 dark:hover:text-white hover:underline cursor-pointer'> */}
|
|
||||||
{/* {locale.COMMON.MORE} <FontAwesomeIcon icon={faAngleDoubleRight} /> */}
|
|
||||||
{/* </a> */}
|
|
||||||
{/* </Link> */}
|
|
||||||
{/* </div> */}
|
|
||||||
{/* <CategoryGroup currentCategory={currentCategory} categories={categories} /> */}
|
|
||||||
{/* </section> */}
|
|
||||||
{/* )} */}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{showToc && (
|
{showToc && (
|
||||||
<section className='sticky top-8 pb-20 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'>
|
<section className='shadow sticky top-8 pb-20 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'>
|
||||||
<div className='border-b text-center text-2xl bg-white text-black dark:border-gray-700 dark:bg-gray-700 dark:text-white py-6 px-6'>
|
<div className='border-b text-center text-2xl bg-white text-black dark:border-gray-700 dark:bg-gray-700 dark:text-white py-6 px-6'>
|
||||||
{locale.COMMON.TABLE_OF_CONTENTS}
|
{locale.COMMON.TABLE_OF_CONTENTS}
|
||||||
</div>
|
</div>
|
||||||
<Toc toc={post.toc} targetRef={targetRef} />
|
<Toc toc={post.toc} targetRef={targetRef} />
|
||||||
</section>
|
</section>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
export default SideAreaLeft
|
export default SideAreaLeft
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ const SideAreaRight = ({
|
|||||||
</div>
|
</div>
|
||||||
</section> */}
|
</section> */}
|
||||||
|
|
||||||
<section className=" mb-5 py-4 px-2 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
<section className="shadow mb-5 py-4 px-2 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
||||||
{/* 展示广告 */}
|
{/* 展示广告 */}
|
||||||
<ins
|
<ins
|
||||||
className="adsbygoogle"
|
className="adsbygoogle"
|
||||||
@@ -76,7 +76,7 @@ const SideAreaRight = ({
|
|||||||
|
|
||||||
{/* 分类 */}
|
{/* 分类 */}
|
||||||
{categories && (
|
{categories && (
|
||||||
<section className=' py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'>
|
<section className='shadow py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200'>
|
||||||
<div className='text-sm px-5 mb-2 flex flex-nowrap justify-between font-light'>
|
<div className='text-sm px-5 mb-2 flex flex-nowrap justify-between font-light'>
|
||||||
<div className='pb-1 text-gray-600 dark:text-gray-200'><FontAwesomeIcon icon={faThList} className='mr-2' />{locale.COMMON.CATEGORY}</div>
|
<div className='pb-1 text-gray-600 dark:text-gray-200'><FontAwesomeIcon icon={faThList} className='mr-2' />{locale.COMMON.CATEGORY}</div>
|
||||||
<Link href='/category' passHref>
|
<Link href='/category' passHref>
|
||||||
@@ -91,7 +91,7 @@ const SideAreaRight = ({
|
|||||||
|
|
||||||
{/* 最新文章 */}
|
{/* 最新文章 */}
|
||||||
{posts && (
|
{posts && (
|
||||||
<section className=" py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
<section className="shadow py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
||||||
<div className="text-sm pb-2 px-5 flex flex-nowrap justify-between">
|
<div className="text-sm pb-2 px-5 flex flex-nowrap justify-between">
|
||||||
<div className="font-light text-gray-600 dark:text-gray-200">
|
<div className="font-light text-gray-600 dark:text-gray-200">
|
||||||
<FontAwesomeIcon icon={faArchive} className="mr-2" />
|
<FontAwesomeIcon icon={faArchive} className="mr-2" />
|
||||||
@@ -103,13 +103,13 @@ const SideAreaRight = ({
|
|||||||
</section>
|
</section>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* <section className=" py-4 px-5 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
{/* <section className="shadow py-4 px-5 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
||||||
<SearchInput currentTag={currentTag} currentSearch={currentSearch}/>
|
<SearchInput currentTag={currentTag} currentSearch={currentSearch}/>
|
||||||
</section> */}
|
</section> */}
|
||||||
|
|
||||||
{/* 标签云 */}
|
{/* 标签云 */}
|
||||||
{tags && (
|
{tags && (
|
||||||
<section className=" py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
<section className="shadow py-4 mb-5 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
|
||||||
<div className="text-sm pb-1 px-5 flex flex-nowrap justify-between font-light dark:text-gray-200">
|
<div className="text-sm pb-1 px-5 flex flex-nowrap justify-between font-light dark:text-gray-200">
|
||||||
<div className="text-gray-600 dark:text-gray-200">
|
<div className="text-gray-600 dark:text-gray-200">
|
||||||
<FontAwesomeIcon icon={faTags} className="mr-2" />
|
<FontAwesomeIcon icon={faTags} className="mr-2" />
|
||||||
|
|||||||
Reference in New Issue
Block a user