mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
27 lines
545 B
JavaScript
27 lines
545 B
JavaScript
import { AdSlot } from '@/components/GoogleAdsense'
|
|
import Live2D from '@/components/Live2D'
|
|
import Announcement from './Announcement'
|
|
import Catalog from './Catalog'
|
|
import WWAds from '@/components/WWAds'
|
|
|
|
/**
|
|
* 侧边栏
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
export default function SideBar (props) {
|
|
const { notice } = props
|
|
return (<>
|
|
|
|
<Catalog {...props} />
|
|
|
|
<Live2D />
|
|
|
|
<Announcement post={notice} />
|
|
|
|
<AdSlot/>
|
|
<WWAds orientation="vertical" className="w-full" />
|
|
|
|
</>)
|
|
}
|