GitHub Stars

Image

Deprecated image component guidance for Fulldev UI projects.

Fulldev UI no longer ships a separate Image abstraction. Astro’s image pipeline owns image optimization, responsive sizing, and format output better than a library wrapper can.

---
import { Image } from "astro:assets"

import heroImage from "@/assets/hero.jpg"
---

<Image
  src={heroImage}
  alt="Product dashboard"
  widths={[640, 960, 1280]}
  sizes="(min-width: 768px) 50vw, 100vw"
/>

Use block props for images rendered by installable Fulldev blocks. Keep image files and project-specific media owned by the project that installs the block.