import React from 'react'; import ChatInput from './ChatInput'; import { CurrentView } from '../types'; import { ArrowDownTrayIcon } from './icons'; import { SECTION_IDS } from '../constants'; interface HeroSectionProps { setCurrentView: (view: CurrentView) => void; isChatHidden?: boolean; } const HeroSection: React.FC = ({ setCurrentView, isChatHidden = false }) => { return (

Чем мы можем помочь?

{ e.preventDefault(); document.getElementById(SECTION_IDS.story)?.scrollIntoView({ behavior: 'smooth' }); }} className="absolute bottom-8 left-1/2 -translate-x-1/2 z-10" aria-label="Прокрутить вниз" >
); }; export default HeroSection;