cleared unused pages
This commit is contained in:
parent
0e60b141c2
commit
5cd0849363
@ -32,9 +32,9 @@ const WSPGallery = ({ galleryImages }) => {
|
||||
<div>
|
||||
{openModal && (
|
||||
<div className="sliderWrap">
|
||||
<AiOutlineClose className="btnClose" onClick={handleCloseModal} />
|
||||
<FaCircleChevronLeft className="btnPrev" onClick={prevSlide} />
|
||||
<FaCircleChevronRight className="btnNext" onClick={nextSlide} />
|
||||
<AiOutlineClose className="btnClose text-2xl" onClick={handleCloseModal} />
|
||||
<FaCircleChevronLeft className="btnPrev text-2xl" onClick={prevSlide} />
|
||||
<FaCircleChevronRight className="btnNext text-2xl" onClick={nextSlide} />
|
||||
<div className="fullScreenImage">
|
||||
<Image
|
||||
src={galleryImages[slideNumber].img}
|
||||
@ -56,8 +56,9 @@ const WSPGallery = ({ galleryImages }) => {
|
||||
<Image
|
||||
src={slide.img}
|
||||
alt="/"
|
||||
width={100}
|
||||
height={100}
|
||||
width={180}
|
||||
height={180}
|
||||
quality={100}
|
||||
className="cursor-pointer"
|
||||
onClick={() => handleOpenModal(index)}
|
||||
/>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import Link from 'next/link';
|
||||
import ProductCard from './components/ProductCard/ProductCard';
|
||||
import ProductCard from '../../UnusedPages/ProductCard/ProductCard';
|
||||
import Image from 'next/image';
|
||||
|
||||
export default function Home() {
|
||||
|
||||
@ -23,6 +23,6 @@
|
||||
"@/*": ["./*"]
|
||||
}
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "../UnusedPages/AddToCart.tsx"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user