starter-sharebar

This commit is contained in:
tangly1024.com
2024-09-30 13:52:12 +08:00
parent 5c2943dc64
commit ba62163927
2 changed files with 59 additions and 56 deletions

View File

@@ -24,6 +24,7 @@ import { Testimonials } from './components/Testimonials'
import CONFIG from './config'
import { Style } from './style'
// import { MadeWithButton } from './components/MadeWithButton'
import ShareBar from '@/components/ShareBar'
import { loadWowJS } from '@/lib/plugins/wow'
import { SignIn, SignUp } from '@clerk/nextjs'
import Link from 'next/link'
@@ -141,6 +142,7 @@ const LayoutSlug = props => {
<div id='container-inner' className='w-full p-4'>
<div id='article-wrapper' className='mx-auto'>
<NotionPage {...props} />
<ShareBar post={post}/>
</div>
</div>
</div>
@@ -277,16 +279,17 @@ const LayoutSignUp = props => {
}
export {
Layout404,
LayoutArchive,
LayoutBase,
LayoutCategoryIndex,
LayoutIndex,
LayoutPostList,
LayoutSearch,
LayoutSignIn,
LayoutSignUp,
LayoutSlug,
LayoutTagIndex,
CONFIG as THEME_CONFIG
Layout404,
LayoutArchive,
LayoutBase,
LayoutCategoryIndex,
LayoutIndex,
LayoutPostList,
LayoutSearch,
LayoutSignIn,
LayoutSignUp,
LayoutSlug,
LayoutTagIndex,
CONFIG as THEME_CONFIG
}