Files
NotionNext/components/ChatBase.js
tangly1024 7b1baa3d15 chat-base
2023-07-18 12:06:43 +08:00

15 lines
329 B
JavaScript

import BLOG from '@/blog.config'
export default function ChatBase() {
if (!BLOG.CHATBASE_ID) {
return <></>
}
return <iframe
src={`https://www.chatbase.co/chatbot-iframe/${BLOG.CHATBASE_ID}`}
width="100%"
style={{ height: '100%', minHeight: '700px' }}
frameborder="0"
></iframe>
}