Files
trustlab/src/components/ui/images/ThreeColumnImageGrid.tsx
2025-12-30 12:14:45 +07:00

39 lines
965 B
TypeScript

import Image from "next/image";
import React from "react";
export default function ThreeColumnImageGrid() {
return (
<div className="grid grid-cols-1 gap-5 sm:grid-cols-2 xl:grid-cols-3">
<div>
<Image
src="/images/grid-image/image-04.png"
alt=" grid"
className="w-full border border-gray-200 rounded-xl dark:border-gray-800"
width={338}
height={192}
/>
</div>
<div>
<Image
src="/images/grid-image/image-05.png"
alt=" grid"
className="w-full border border-gray-200 rounded-xl dark:border-gray-800"
width={338}
height={192}
/>
</div>
<div>
<Image
src="/images/grid-image/image-06.png"
alt=" grid"
className="w-full border border-gray-200 rounded-xl dark:border-gray-800"
width={338}
height={192}
/>
</div>
</div>
);
}