import RelatedProjects from "../RelatedProjects";

export default function Layout1RelatedSection({ title }: { title: string }) {
  return (
    <section className="project-sec5 space">
      <div className="carousel-container">
        <div className="project-title">
          <h2 className="title">{title}</h2>
        </div>
        <RelatedProjects />
      </div>
    </section>
  );
}
