feature: Live2D调整 样式

This commit is contained in:
tangly1024
2021-12-28 15:02:23 +08:00
parent bee7fafcda
commit a27c0f0f4e
4 changed files with 8 additions and 7 deletions

View File

@@ -5,6 +5,7 @@ import { getNotionPageData } from '@/lib/notion/getNotionData'
import React, { useEffect } from 'react'
import { useGlobal } from '@/lib/global'
import BlogPostArchive from '@/components/BlogPostArchive'
import Live2D from '@/components/Live2D'
export async function getStaticProps () {
const from = 'index'
@@ -74,6 +75,7 @@ const Index = ({ allPosts, tags, categories }) => {
<BlogPostArchive key={archiveTitle} posts={archivePosts[archiveTitle]} archiveTitle={archiveTitle}/>
))}
</div>
<Live2D/>
</BaseLayout>
)
}