theme-fukasawa

This commit is contained in:
tangly1024.com
2023-07-05 16:06:23 +08:00
parent f72a4f7c54
commit c1fa5fa3c5
36 changed files with 820 additions and 763 deletions

View File

@@ -14,15 +14,15 @@ const ShareBar = ({ post }) => {
return <div className='m-1 overflow-x-auto'>
<div className='flex w-full md:justify-end'>
<ShareButtons shareUrl={shareUrl} title={post.title} image={post.pageCover} body={
post.title +
' | ' +
BLOG.TITLE +
' ' +
shareUrl +
' ' +
post.summary
} />
<ShareButtons shareUrl={shareUrl} title={post.title} image={post.pageCover} body={
post?.title +
' | ' +
BLOG.TITLE +
' ' +
shareUrl +
' ' +
post?.summary
} />
</div>
</div>
}