From 16e20e4e18f320beff019f70547f2abd1b149f8c Mon Sep 17 00:00:00 2001 From: Krishna Mehta <66839875+cybraia@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:38:49 +0530 Subject: [PATCH] Delete gallery because unrelated to PR --- components/Gallery/gallery.js | 63 ----------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 components/Gallery/gallery.js diff --git a/components/Gallery/gallery.js b/components/Gallery/gallery.js deleted file mode 100644 index 6b2a38b6..00000000 --- a/components/Gallery/gallery.js +++ /dev/null @@ -1,63 +0,0 @@ -import LightGallery from 'lightgallery/react'; -import Heading from '../Typography/heading' -// import styles -import 'lightgallery/css/lightgallery.css'; -import 'lightgallery/css/lg-zoom.css'; -import 'lightgallery/css/lg-thumbnail.css'; -import 'lightgallery/css/lg-autoplay.css'; -import 'lightgallery/css/lg-fullscreen.css'; -import 'lightgallery/css/lg-share.css'; -import 'lightgallery/css/lg-rotate.css'; - - -// import plugins if you need -import lgThumbnail from 'lightgallery/plugins/thumbnail'; -import lgZoom from 'lightgallery/plugins/zoom'; -import lgAutoplay from 'lightgallery/plugins/autoplay' -import lgFullscreen from 'lightgallery/plugins/fullscreen'; -import lgShare from 'lightgallery/plugins/share'; -import lgRotate from 'lightgallery/plugins/rotate'; -import Button from '../Buttons/button'; - -const images = [ - { src: "/img/1.jpeg", alt: "1" }, - { src: "/img/2.jpeg", alt: "2" }, - { src: "/img/3.jpeg", alt: "3" }, - { src: "/img/4.jpeg", alt: "4", }, - { src: "/img/5.jpeg", alt: "5", }, - { src: "/img/6.jpeg", alt: "6", }, - -] - -function Gallery() { - const onInit = () => { - console.log('lightGallery has been initialized'); - }; - return ( -
- ); -} - -export default Gallery