github.com/uchennaokeke444/nomad@v0.11.8/website/components/featured-slider-section/index.jsx (about)

     1  import FeaturedSlider from '../featured-slider'
     2  
     3  export default function FeaturedSliderSection({ heading, features }) {
     4    return (
     5      <section className="g-featured-slider-section">
     6        <div className="g-grid-container">
     7          <h2 className="g-type-display-2">{heading}</h2>
     8          <FeaturedSlider theme="dark" brand="nomad" features={features} />
     9        </div>
    10      </section>
    11    )
    12  }