diff --git a/src/components/sections/gallery/GalleryOne.tsx b/src/components/sections/gallery/GalleryOne.tsx new file mode 100644 index 0000000..86ec936 --- /dev/null +++ b/src/components/sections/gallery/GalleryOne.tsx @@ -0,0 +1,38 @@ +import React from 'react'; + +const GalleryOne = () => { + const images = [ + '/images/courses-box-1.e8498908-1768918267950.png', + '/images/courses-box-2.2e36a41b-1768918267948.png', + '/images/courses.aee168f4-1768918267985.png', + '/images/256-1768918267936.png' + ]; + + return ( +
+
+
+

+ Gallery +

+

+ Showcase of our work and components in action. +

+
+
+ {images.map((src, index) => ( +
+ {`Gallery +
+ ))} +
+
+
+ ); +}; + +export default GalleryOne; \ No newline at end of file