## 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
23 lines
442 B
Plaintext
23 lines
442 B
Plaintext
---
|
|
// Import necessary components
|
|
import { Image } from 'astro:assets';
|
|
|
|
import type { CollectionEntry } from 'astro:content';
|
|
|
|
const { blogEntry } = Astro.props;
|
|
|
|
interface Props {
|
|
blogEntry: CollectionEntry<'blog'>;
|
|
}
|
|
---
|
|
|
|
<div class="shrink-0">
|
|
<Image
|
|
class="size-10 rounded-full sm:h-14 sm:w-14"
|
|
src={blogEntry.data.authorImage}
|
|
alt={blogEntry.data.authorImageAlt}
|
|
draggable={'false'}
|
|
format={'avif'}
|
|
/>
|
|
</div>
|