Sweep all backticked + bold + table-cell + heading mentions of the project's brand to match the PyPI distribution name and the docs domain. Path references (`cd informix-db`, `git.supported.systems/.../informix-db`) stay — those reference the actual Gitea repo directory which we did NOT rename. Same with `import informix_db` (Python module name, separate from distribution brand). Also flip GitHub references to Gitea throughout the docs site: - `github.com/rsp2k/informix-db/blob/main/X` → Gitea `/src/branch/main/X` - `github.com/rsp2k/informix-db/tree/main/X` → Gitea same path - `github.com/rsp2k/informix-db` (plain) → Gitea - Hero "GitHub" CTA button → Gitea source URL - Social icon: `github` → `seti:git` (generic git icon, not octocat) Net result: zero stale GitHub references, brand consistency matches what users `pip install`.
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
---
|
|
// Footer override that preserves Starlight's default chrome
|
|
// (prev/next pagination, last-updated, edit link) and appends
|
|
// a Supported Systems "joint" badge below.
|
|
import Default from '@astrojs/starlight/components/Footer.astro';
|
|
---
|
|
|
|
<Default><slot /></Default>
|
|
|
|
<aside class="ifx-ss-badge" aria-label="Supported Systems">
|
|
<a class="ifx-ss-badge__link" href="https://supported.systems" rel="noopener">
|
|
<img
|
|
class="ifx-ss-badge__logo"
|
|
src="/supported-systems-logo.svg"
|
|
alt=""
|
|
width="60"
|
|
height="45"
|
|
loading="lazy"
|
|
/>
|
|
<div class="ifx-ss-badge__copy">
|
|
<h3 class="ifx-ss-badge__heading">A Supported Systems Joint</h3>
|
|
<p class="ifx-ss-badge__body">
|
|
<code>informix-driver</code> is built and maintained by
|
|
<span class="ifx-ss-badge__name">Supported Systems</span> — a
|
|
boutique software studio focused on thoughtful, user-first technology.
|
|
We take databases personally.
|
|
</p>
|
|
<span class="ifx-ss-badge__cta">
|
|
Visit supported.systems
|
|
<svg viewBox="0 0 16 16" width="14" height="14" aria-hidden="true">
|
|
<path
|
|
d="M4 8h7M8 5l3 3-3 3"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
</div>
|
|
</a>
|
|
</aside>
|