--- import Image from "astro/components/Image.astro"; import { PondImage } from "../assets"; import "../css/index.css"; interface Props { width?: "narrow" | "wide"; } const { width = "narrow" } = Astro.props; ---