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

11 lines
308 B
TypeScript
Raw Normal View History

2022-03-17 14:37:00 +01:00
import { Box, BoxProps } 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" />
</Box>
)