import FeaturesHeader from "./components/FeaturesHeader";
import FeaturesCarousel from "./components/FeaturesCarousel";

export default function FeaturesSection() {
  return (
    <section className="features-section flex flex-col gap-5 sm:gap-10">
      <FeaturesHeader
        subtitle="Featured"
        title="Designers & Events"
        buttonText="Discover More"
      />
      <FeaturesCarousel />
    </section>
  );
}
