diff --git a/src/components/custom/ImageBentoGallery.tsx b/src/components/custom/ImageBentoGallery.tsx
new file mode 100644
index 0000000..a2e353f
--- /dev/null
+++ b/src/components/custom/ImageBentoGallery.tsx
@@ -0,0 +1,63 @@
+import { motion } from "motion/react";
+import { cn } from "@/lib/utils";
+
+interface ImageBentoGalleryProps {
+ title?: string;
+ description?: string;
+ images: {
+ src: string;
+ alt: string;
+ className?: string;
+ }[];
+}
+
+export default function ImageBentoGallery({
+ title,
+ description,
+ images,
+}: ImageBentoGalleryProps) {
+ return (
+
+ {description}
+
+ {title}
+
+ )}
+ {description && (
+
+
{image.alt}
+