## Summary - rebuild `apps/website` on the pinned ScrewFast Astro foundation - replace the legacy page/content/component structure with the new section and UI architecture - add Starlight-based docs and the new public route set for platform, pricing, trust, legal, and guides - refresh website tooling, dependencies, and Playwright smoke coverage for the new site shell ## Scope - touches `apps/website` and the matching spec artifacts for feature 402 - does not modify `apps/platform` ## Testing - not run in this step Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #393
19 lines
285 B
Plaintext
19 lines
285 B
Plaintext
---
|
|
import { Image } from 'astro:assets';
|
|
|
|
const { src, alt } = Astro.props;
|
|
|
|
interface Props {
|
|
src: string;
|
|
alt: string;
|
|
}
|
|
---
|
|
|
|
<Image
|
|
class="inline-block h-8 w-8 rounded-full ring-2 ring-neutral-50 dark:ring-zinc-800"
|
|
src={src}
|
|
alt={alt}
|
|
inferSize
|
|
loading={'eager'}
|
|
/>
|