2
0
Files
bot/apps/landing-page/components/Homepage/Hero/BackgroundSpotlight.tsx
Baptiste Arnaud f1b643c5be 🔒 Revert ddos lockdown
2023-06-19 18:41:00 +02:00

9 lines
243 B
TypeScript

import { Box, BoxProps, Image } from '@chakra-ui/react'
import React from 'react'
export const BackgroundSpotlight = (props: BoxProps) => (
<Box {...props}>
<Image src="https://s3.typebot.io/spotlight.png" alt="spotlight" />
</Box>
)