1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 02:18:29 -04:00

22 lines
561 B
TypeScript

import NextImage from "next/image";
import type { ImageProps as NextImageProps } from "next/image";
const Image = ({ src, width, height, alt, quality, priority }: NextImageProps) => {
return (
<div className="image_wrapper">
<NextImage
src={(src as string).replace(/^\/public/g, "")}
layout="intrinsic"
width={width}
height={height}
alt={alt || ""}
quality={quality || 65}
loading={priority ? "eager" : "lazy"}
priority={!!priority}
/>
</div>
);
};
export default Image;