type SectionProps = {
title: string;
text: string;
};
export function InfoSection({ title, text }: SectionProps) {
return (
<section className="info-section">
<h2>{title}</h2>
<p>{text}</p>
<a href="#contact">Связаться</a>
</section>
);
}