first commit

This commit is contained in:
AnuragJangid18 2026-03-30 17:24:23 +05:30
commit 44995cb5db
60 changed files with 5472 additions and 0 deletions

View file

@ -0,0 +1,14 @@
const VehicleImage = ({ src, alt }) => {
return (
<div className="w-full h-52 overflow-hidden rounded-t-xl bg-gray-100">
<img
src={src}
alt={alt}
className="w-full h-full object-cover transition-transform duration-500 ease-out group-hover:scale-110"
loading="lazy"
/>
</div>
);
};
export default VehicleImage;