2
0
Files
bot/apps/landing-page/components/Homepage/Hero/BackgroundSpotlight.tsx

9 lines
243 B
TypeScript
Raw Normal View History

2023-06-19 18:41:00 +02:00
import { Box, BoxProps, Image } from '@chakra-ui/react'
2022-03-17 14:37:00 +01:00
import React from 'react'
export const BackgroundSpotlight = (props: BoxProps) => (
<Box {...props}>
2023-06-19 18:41:00 +02:00
<Image src="https://s3.typebot.io/spotlight.png" alt="spotlight" />
2022-03-17 14:37:00 +01:00
</Box>
)