LogoSection
apps/www/src/components/LogoSection.astro · 23 lines · group Logos & partners
Used by
- pages.gitt.one / × 2
Live sites: pages.gitt.one.
Samples 1
POWERS THE WEBSITES OF








MDX of this sample
<LogoSection title="POWERS THE WEBSITES OF">
<LogoItem title="codeexpert" imgPath="logos/codeexpert.webp" />
<LogoItem title="itgrows" imgPath="logos/itgrows.webp" />
<LogoItem title="redmine" imgPath="logos/redmine.png" />
<LogoItem title="posexpert" imgPath="logos/posexp.webp" />
<LogoItem title="srv4pos" imgPath="logos/logosrv4pos.webp" />
<LogoItem title="posplus" imgPath="logos/posplus.webp" />
<LogoItem title="skattedosan" imgPath="logos/skat.webp" />
<LogoItem title="gitt" imgPath="logos/gitt.png" />
</LogoSection>Props
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| title | string |
Source apps/www/src/components/LogoSection.astro @ gitt.one
---
interface Props {
title?: string;
}
const { title } = Astro.props;
---
<div class="bg-gray-100">
<div class="mx-auto max-w-7xl px-4 py-16 sm:px-6 lg:px-8">
{
title && (
<p class="text-center text-sm font-semibold uppercase tracking-wide text-gray-600">
{title}
</p>
)
}
<div class="mt-6 grid grid-cols-2 gap-8 md:grid-cols-6 lg:grid-cols-5">
<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.