在黑夜模式下,添加星空雨特效

This commit is contained in:
Vixcity
2023-01-07 21:38:35 +08:00
parent bb4f8c4cdf
commit c4e44f3fda
3 changed files with 138 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ import { DebugPanel } from '@/components/DebugPanel'
import { ThemeSwitch } from '@/components/ThemeSwitch'
import { Fireworks } from '@/components/Fireworks'
import { Sakura } from '@/components/Sakura'
import { Start } from '@/components/Start'
import MusicPlayer from '@/components/MusicPlayer'
const Ackee = dynamic(() => import('@/components/Ackee'), { ssr: false })
@@ -50,6 +51,7 @@ const MyApp = ({ Component, pageProps }) => {
{BLOG.FACEBOOK_APP_ID && BLOG.FACEBOOK_PAGE_ID && <Messenger />}
{JSON.parse(BLOG.FIREWORKS) && <Fireworks />}
{JSON.parse(BLOG.SAKURA) && <Sakura />}
{JSON.parse(BLOG.START) && <Start />}
{JSON.parse(BLOG.MUSIC_PLAYER) && <MusicPlayer />}
</>