TrustSection

apps/www/src/components/TrustSection.astro · 18 lines · group Logos & partners

Used by

Live sites: codeexpert.se.

Samples 1

codeexpert.se/

TRUSTED BY

GodaGrannen
Emotian
Elfster
Wally
Pinpointer
Dvigex
MDX of this sample
<TrustSection title="TRUSTED BY">
  <TrustItem imageName="godagrannen.png" description="GodaGrannen" />
  <TrustItem imageName="emotian.png" description="Emotian" />
  <TrustItem imageName="elfster.png" description="Elfster" />
  <TrustItem imageName="wally.png" description="Wally" />
  <TrustItem imageName="pinpointer.png" description="Pinpointer" />
  <TrustItem imageName="dvigex.png" description="Dvigex" />
</TrustSection>

Props

NameTypeRequiredDefaultDescription
titlestringyes

Source apps/www/src/components/TrustSection.astro @ gitt.one

---
interface Props {
  title: string;
}
const { title } = Astro.props;
---

<div class="bg-stone-100">
  <div class="mx-auto max-w-7xl px-4 py-4 sm:px-6 lg:px-8">
    <p class="text-center text-sm font-semibold tracking-wide text-stone-600 uppercase">
      {title}
    </p>
    <div class="mt-6 grid grid-cols-2 gap-4 md:grid-cols-3 xl:grid-cols-6">
      <slot />
    </div>
  </div>
</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.