FeatureSection

apps/www/src/sections/FeatureSection.astro · 13 lines · group Features & lists

No props: a wrapper around FeatureItem children.

In the fleet

Used on 1 site built with this engine.

Samples 1

sample

Own the readings, not a subscription to them

Export the season as CSV, hand it to your agronomist, or pipe it into the tools you already run. Nothing is locked behind our dashboard.

Own the readings, not a subscription to them
MDX of this sample
<FeatureSection>
  <FeatureItem
    title="Own the readings, not a subscription to them"
    description="Export the season as CSV, hand it to your agronomist, or pipe it into the tools you already run. Nothing is locked behind our dashboard."
    imgPath="photo-05.jpg"
    linkText="Read the API docs"
    linkPath="/api/"
  />
</FeatureSection>

Props

No props — a wrapper around its children.

Source apps/www/src/sections/FeatureSection.astro @ gitt.one

---
// No props: a wrapper around FeatureItem children.
---

<div class="relative pt-16 pb-32 overflow-hidden">
  <div
    aria-hidden="true"
    class="absolute inset-x-0 top-0 h-48 bg-gradient-to-b from-gray-100"
  >
  </div>
  <slot />
</div>

Source links point to engine-astro@38c294d9. Samples are demo content: the components are the real ones, the copy and the pictures are made up.