2
0

🔒 Revert ddos lockdown

This commit is contained in:
Baptiste Arnaud
2023-06-19 18:41:00 +02:00
parent 3e2c462617
commit f1b643c5be
25 changed files with 77 additions and 67 deletions

View File

@@ -1,10 +1,8 @@
import { Box, BoxProps } from '@chakra-ui/react'
import { Box, BoxProps, Image } from '@chakra-ui/react'
import React from 'react'
import Image from 'next/image'
import spotlightSrc from 'public/images/homepage/spotlight.png'
export const BackgroundSpotlight = (props: BoxProps) => (
<Box {...props}>
<Image src={spotlightSrc} alt="spotlight" />
<Image src="https://s3.typebot.io/spotlight.png" alt="spotlight" />
</Box>
)