import React, { FC } from 'react'; import { useTranslation } from 'react-i18next'; import { Box, Heading, Text, Center, VStack, BoxProps } from '@chakra-ui/react'; import { DemoVideoPosterImg } from '../../../assets/images'; import { CtaButton, SiteLogo, PageSection } from '../'; type HeroSectionProps = Pick; export const HeroSection: FC = ({ flexShrink }) => { const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing.hero-section', }); return (
{t('headline')} {t('description')}
); };