FeatureSection

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

No props: a wrapper around FeatureItem children.

Used by

Live sites: pages.gitt.one.

Samples 1

pages.gitt.one/

Own your website, don't rent it

Most websites are hostages of the studio that built them: leaving means rewriting. Ours are designed for leaving — content in plain typed files that migrate to any CMS, an MIT-licensed engine any developer or AI agent can pick up, and a Docker image that runs anywhere. We measure this honestly as exit time: minutes from git clone to a working local build

Own your website, don't rent it
MDX of this sample
<FeatureSection>
  <FeatureItem
    title="Own your website, don't rent it"
    description="Most websites are hostages of the studio that built them: leaving means rewriting. Ours are designed for leaving — content in plain typed files that migrate to any CMS, an MIT-licensed engine any developer or AI agent can pick up, and a Docker image that runs anywhere. We measure this honestly as exit time: minutes from git clone to a working local build"
    btnText="Contact us"
    btnPath="/#contacts"
    imgPath="team.jpg"
  />
</FeatureSection>

Props

No props — a wrapper around its children.

Source apps/www/src/components/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@e857a859. Samples are cut from the sites' own content by scripts/gallery-extract.mjs; nothing is merged or removed yet.