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