2023-12-13 10:22:02 +01:00
|
|
|
import { createBlock } from '@typebot.io/forge'
|
|
|
|
import { CalComLogo } from './logo'
|
|
|
|
import { bookEvent } from './actions/bookEvent'
|
|
|
|
import { baseOptions } from './baseOptions'
|
|
|
|
|
2024-03-18 16:09:19 +01:00
|
|
|
export const calComBlock = createBlock({
|
2024-09-12 13:54:09 +02:00
|
|
|
id: 'bls-cal',
|
|
|
|
name: 'BLS cal',
|
2023-12-13 10:22:02 +01:00
|
|
|
tags: ['calendar', 'scheduling', 'meetings'],
|
|
|
|
LightLogo: CalComLogo,
|
|
|
|
options: baseOptions,
|
|
|
|
actions: [bookEvent],
|
|
|
|
})
|