diff --git a/.env.production b/.env.production
new file mode 100644
index 0000000..64e0118
--- /dev/null
+++ b/.env.production
@@ -0,0 +1,7 @@
+NODE_ENV="production"
+
+NEXT_PUBLIC_SERVER_URL=https://api.vesmook.com
+NEXT_PUBLIC_PUBLIC_URL=https://api.vesmook.com
+NEXT_PUBLIC_API_URL=https://api.vesmook.com/api
+NEXT_PUBLIC_STORAGE_URL=http://storage.vesmook.com
+NEXT_PUBLIC_PACKAGE_VERSION=0.1.4
\ No newline at end of file
diff --git a/Contexts/AppContext.js b/Contexts/AppContext.js
new file mode 100644
index 0000000..fbb8c92
--- /dev/null
+++ b/Contexts/AppContext.js
@@ -0,0 +1,7 @@
+"use client";
+import { createContext } from "react";
+
+const AppContext = createContext({
+ state: {},
+});
+export default AppContext;
diff --git a/components/AppsComponent/CartData/page.jsx b/components/AppsComponent/CartData/page.jsx
new file mode 100644
index 0000000..41299ba
--- /dev/null
+++ b/components/AppsComponent/CartData/page.jsx
@@ -0,0 +1,148 @@
+"use client";
+import CardCart from "@comp/Cards/CardCart/page";
+import NavBarDownCart from "@comp/Carts/component/NavBarDownCart/page";
+import Navbar from "@comp/Navbar/page";
+import AppContext from "@ctx/AppContext";
+import { useRouter } from "next/navigation";
+import Chapar from "plugins/Chapar";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useEffect } from "react";
+import { toast } from "react-toastify";
+
+const CartData = () => {
+ const CTX = useContext(AppContext);
+ const router = useRouter();
+ const cart = CTX.state.cart;
+
+ const calculateTotalCost = cart.reduce(
+ (total, item) => total + parseInt(item.cost) * item.count,
+ 0
+ );
+
+ const calculateTotalCostWithDiscount = cart.reduce(
+ (total, item) => total + parseInt(item.costWithDiscount) * item.count,
+ 0
+ );
+
+ const handleGoCheckOut = async () => {
+ CTX.GoCheckOut();
+ };
+
+ useEffect(() => {
+ CTX.setBottomSheetCartOpen(false);
+ }, []);
+ return (
+ <>
+
+
+
+
+
+
+ محصولات انتخاب شده
+
+
+
+
+
+
+ {cart?.map((e, index) => (
+
+ ))}
+
+
+
+
حساب نهایی
+
+ {/*
*/}
+
+
+
+
+
قیمت
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
تخفیف محصول
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
+ قابل پرداخت
+
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
+
+
+
handleGoCheckOut()}
+ permissionGoPay={!!cart.length > 0}
+ />
+
+ >
+ );
+};
+
+export default CartData;
diff --git a/components/AppsComponent/CategoriesData/page.jsx b/components/AppsComponent/CategoriesData/page.jsx
new file mode 100644
index 0000000..2525827
--- /dev/null
+++ b/components/AppsComponent/CategoriesData/page.jsx
@@ -0,0 +1,255 @@
+"use client";
+
+import FilterCategory from "@comp/Category/FilterCategory/page";
+import ListProdocts from "@comp/Category/ListProdocts/page";
+import FilterCategoryMobile from "@comp/Category/Mobile/FilterCategoryMobile/page";
+import ListProductsMobile from "@comp/Category/Mobile/ListProductsMobile/page";
+import PaginationCategoory from "@comp/Category/PaginationCategoory/page";
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+import AppContext from "@ctx/AppContext";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import { useContext, useEffect, useMemo, useState } from "react";
+import InfiniteScroll from "react-infinite-scroll-component";
+
+export default function CategoriesData({ params, products }) {
+ const CTX = useContext(AppContext);
+ const searchParams = useSearchParams();
+
+ useEffect(() => {
+ if (
+ Number(searchParams.get("page")) === 0 ||
+ !Number(searchParams.get("page")) ||
+ CTX.state.stopProducts
+ ) {
+ CTX.setProducts(products.products);
+ } else {
+ CTX.setProducts([...CTX.state.products, ...products.products]);
+ }
+ CTX.setStopProducts(
+ CTX.state.stopProducts || products?.products?.length < 20
+ );
+ CTX.setPager(products.pager);
+ CTX.setFilter(products.filters);
+ }, [products]);
+
+ const pageGetProducts = useMemo(
+ () => (searchParams.get("page") ? Number(searchParams.get("page")) : 0),
+ [searchParams]
+ );
+ const stopProducts = CTX.state.stopProducts;
+ const pager = products.pager;
+ const productsLength = CTX.state?.products?.length || 0;
+ const filter = CTX.state.filter;
+
+ const isChecked = useMemo(
+ () => Boolean(Number(searchParams.get("isActive"))),
+ [searchParams]
+ );
+
+ const specialOffer = useMemo(
+ () => Boolean(Number(searchParams.get("specialOffer"))),
+ [searchParams]
+ );
+ const selectedBrands = useMemo(
+ () =>
+ searchParams.get("brandIds")
+ ? searchParams.get("brandIds").split(",")
+ : [],
+ [searchParams]
+ );
+ const rangePrice = useMemo(
+ () => [
+ searchParams.get("maxPrice")
+ ? Number(searchParams.get("maxPrice"))
+ : filter?.price?.maximumValue,
+ searchParams.get("minPrice")
+ ? Number(searchParams.get("minPrice"))
+ : filter?.price?.minimumValue,
+ ],
+ [searchParams]
+ );
+ const isRangePrice = CTX.state.isRangePrice;
+ const sortBy = useMemo(
+ () => Number(searchParams.get("sortBy")),
+ [searchParams]
+ );
+
+ //
+ // "filters",
+ // filter,
+ // isChecked,
+ // selectedBrands,
+ // rangePrice,
+ // isRangePrice,
+ // sortBy
+ // );
+
+ const fetchBarnds = async () => {
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/brand${
+ params.id[0] != 0 ? `?categoryId=${params.id[0]}` : ""
+ }`
+ );
+ const brands = await res.json();
+ CTX.setBrands(brands);
+ };
+
+ const decodedName = decodeURIComponent(params.id[1]);
+ const pathname = usePathname();
+ const router = useRouter();
+ const handleInfiniteNextFetchProducts = () => {
+ // Increment the page number
+ const nextPage = pageGetProducts + 1;
+
+ const params = new URLSearchParams(searchParams.toString());
+ params.set("page", nextPage);
+ router.push(`${pathname}?${params}`, { scroll: false });
+
+ // Fetch products for the next page
+
+ // CTX.fetchProducts(
+ // nextPage,
+ // params.id[0] != 0 ? params.id[0] : "",
+ // selectedBrands,
+ // isChecked,
+ // rangePrice,
+ // rangePrice,
+ // sortBy != -1 ? sortBy : "",
+ // isRangePrice
+ // );
+
+ // Update the pageGetProducts state for the next fetch
+ // CTX.setPageGetProducts(nextPage);
+ };
+
+ const [loading, setLoading] = useState(true);
+ const getData = async () => {
+ setLoading(true);
+ // await CTX.fetchProducts(0, params.id[0] != 0 ? params.id[0] : "");
+ await fetchBarnds();
+ setLoading(false);
+ };
+ useEffect(() => {
+ setLoading(false);
+ getData();
+ }, []);
+
+ return (
+ <>
+
+
+ {!CTX.state.isMobile && (
+
+
+
{decodedName.replace(/-/g, " ")}
+
+
+
+
+
+ {loading && <>در حال بارگیری>}
+ {true ? (
+ <>
+ {!loading && (
+
+
+
+ )}
+ >
+ ) : (
+
+ )}
+
+
+
+ )}
+
+ {CTX.state.isMobile && (
+
+
+
+
+ {decodedName.replace(/-/g, " ")}
+
+
+
+ {loading && <>در حال بارگیری>}
+ {true ? (
+ <>
+ {!loading && (
+
+
+
+ )}
+ >
+ ) : (
+
+ )}
+
+
+ )}
+
+ {pager?.totalPage > 1 && (
+
+ )}
+
+
+ >
+ );
+}
diff --git a/components/AppsComponent/CheckoutData/page.jsx b/components/AppsComponent/CheckoutData/page.jsx
new file mode 100644
index 0000000..2b6f19e
--- /dev/null
+++ b/components/AppsComponent/CheckoutData/page.jsx
@@ -0,0 +1,509 @@
+"use client";
+import NavBarDownCart from "@comp/Carts/component/NavBarDownCart/page";
+import Navbar from "@comp/Navbar/page";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useEffect, useState } from "react";
+import AppContext from "@ctx/AppContext";
+import ap from "@img/ap.png";
+import zarin from "@img/zarin.png";
+import Image from "next/image";
+import { useRouter } from "next/navigation";
+import Chapar from "plugins/Chapar";
+import BottomSheetDiscount from "plugins/bottomSheet/BottomSheetDiscount";
+import { toast } from "react-toastify";
+
+const CheckoutData = () => {
+ const CTX = useContext(AppContext);
+ const [shippingData, setShippingData] = useState([]);
+ const [shippingId, setShippingID] = useState(null);
+ const [addressData, setAddressData] = useState([]);
+ const [addressId, setAddressId] = useState(null);
+ const [permissionGoPay, setPermissionGoPay] = useState(false);
+
+ const router = useRouter();
+ const checkOutData = CTX.state.checkOutData;
+
+ const body = {
+ addressId: addressData[addressId]?.id,
+
+ orderId: checkOutData?.id,
+ shippingId: shippingData[shippingId]?.id,
+ };
+
+ const GetShippingData = async () => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/warehouse/shipping?page=0`
+ );
+
+ setShippingData(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ const handleShippingID = async (index) => {
+ if (addressId !== null) {
+ setShippingID(index);
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/order/bag/shipping/${checkOutData?.id}`,
+ JSON.stringify({
+ addressId: addressData[addressId]?.id,
+
+ orderId: checkOutData?.id,
+ shippingId: shippingData[index]?.id,
+ }),
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+ CTX.setCheckOutData(data);
+ setPermissionGoPay(true);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ } else {
+ toast.error(`ابتدا آدرس را انتحاب کنید`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ const handleGoPayment = async () => {
+ const token = localStorage.getItem("token").slice(7);
+
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/order/bag/payment/${checkOutData?.id}?paymentMethod=1&access_token=${token}`
+
+ // {
+ // headers: {
+ // Authorization: token,
+ // },
+ // }
+ );
+
+ router.push(data?.paymentUrl);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ useEffect(() => {
+ if (shippingData.length <= 0) {
+ GetShippingData();
+ }
+
+ CTX.fetchAddressUser();
+ }, [checkOutData]);
+
+ useEffect(() => {
+ setAddressData(CTX.state.addressData);
+ }, [CTX.state.addressData]);
+
+ useEffect(() => {
+ if (CTX.state.checkOutData.length <= 0) {
+ router.push("/cart");
+ }
+
+ setPermissionGoPay(false);
+ }, []);
+
+ return (
+ <>
+
+
+
+
+
+
آدرس ها
+
+ {/*
CTX.setBottomSheetAddressOpen(true)}
+ >
+
+ افزودن آدرس جدید
+
+
*/}
+
+
+ {addressData?.length > 0 ? (
+ <>
+ {addressData.map((e, index) => (
+
setAddressId(index)}
+ className={`flex rtl justify-between cursor-pointer mx-2 relative ${
+ addressId == index
+ ? "border-2 !border-green-600 rounded-lg bg-green-50"
+ : ""
+ }`}
+ >
+
+
+
+
+ {" "}
+ {e.address}{" "}
+
+
+
+
+
+
+ ))}
+ >
+ ) : (
+
+
+
CTX.setBottomSheetAddressOpen(true)}
+ >
+ افزودن آدرس +{" "}
+
+
+
+ )}
+
+
+
زمان و نحوه ارسال
+
+
+
+
+
+ سریع ترین زمان ارسال
+
+
+
+
+
+
+ {shippingData?.map((e, index) => (
+
handleShippingID(index)}
+ className={`flex rtl justify-between cursor-pointer mx-2 ${
+ shippingId == index
+ ? "border-2 !border-green-600 rounded-lg bg-green-50"
+ : ""
+ }`}
+ >
+
+
+
+
+ {e.name}{" "}
+
+
+ {" "}
+ هزینه ارسال
+
+ هزار تومان
+
+
+
+
+
+
+ ))}
+
+
+
+
+
+
+
+
+
+
+
+ پرداخت آنلاین
+
+
زرین پال
+
+
+
+
+
+
+
+
+
+ پرداخت آنلاین (به زودی)
+
+
آسان پرداخت
+
+
+
+
{
+ if (checkOutData?.discountCode == "") {
+ CTX.setBottomSheetDiscountOpen(true);
+ }
+ }}
+ >
+
+
+
+
+ افزودن کد تخفیف{" "}
+
+
+ کد تخفیف خود را وارد کنید
+
+
+
+
+ {checkOutData?.discountCode == "" ? (
+
+ +
+
+ ) : (
+
+
+ کد تخفیف ثبت شد{" "}
+
+
+ )}
+
+
+
+
+
+
حساب نهایی
+
+ {/*
*/}
+
+
+
+
+
قیمت
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
تخفیف محصول
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
+ هزینه بسته بندی
+
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
هزینه ارسال
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
+ قابل پرداخت
+
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+
+
handleGoPayment()}
+ permissionGoPay={permissionGoPay}
+ />
+
+
+
+ >
+ );
+};
+
+export default CheckoutData;
diff --git a/components/AppsComponent/FaqData/page.jsx b/components/AppsComponent/FaqData/page.jsx
new file mode 100644
index 0000000..c37ac8a
--- /dev/null
+++ b/components/AppsComponent/FaqData/page.jsx
@@ -0,0 +1,81 @@
+"use client";
+
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+import { useEffect, useState } from "react";
+
+const FaqData = () => {
+ const [faq, setFaq] = useState([]);
+ const [faqSelect, setFaqSelect] = useState(0);
+
+ const fetchNavData = async (id) => {
+ const res = await fetch(`https://jsonplaceholder.typicode.com/comments`);
+ const post = await res.json();
+ setFaq(post);
+ };
+
+ useEffect(() => {
+ fetchNavData();
+ }, []);
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ پرسشهای متداول
+
+
+
+
+
+
+
+ {faq?.map((e, index) => (
+
setFaqSelect(index)}
+ key={index}
+ >
+
+
+ {faqSelect == index ? "-" : "+"}
+
+
+ {e.name}
+
+
+ {faqSelect == index && (
+ <>
+
+
+ {e.body}
+
+ >
+ )}
+
+ ))}
+
+
+
+ >
+ );
+};
+
+export default FaqData;
diff --git a/components/AppsComponent/ProductData/page.jsx b/components/AppsComponent/ProductData/page.jsx
new file mode 100644
index 0000000..28821c4
--- /dev/null
+++ b/components/AppsComponent/ProductData/page.jsx
@@ -0,0 +1,407 @@
+"use client";
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+import GalleryBox from "plugins/Gallery/page";
+import { useEffect, useState } from "react";
+
+import AddToCart from "@comp/Cards/Components/AddToCart/page";
+import Image from "next/image";
+import PersianNumber from "plugins/PersianNumber";
+import logo from "../../../public/images/logo.png";
+
+const ProductData = ({ params, data }) => {
+ const [product, setProduct] = useState([]);
+ const [specificationsHeader, setSpecificationsHeader] = useState([]);
+ const [productBarDetail, setProductBarDetail] = useState(0);
+
+ const fetchPost = async (id) => {
+ const res = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/product/${id}`);
+ const post = await res.json();
+ setProduct(post.product);
+ };
+
+ const displaySpecifications = (specs) => {
+ let data = [];
+ if (specs?.length > 3) {
+ specs?.slice(0, 3).forEach((spec) => {
+ const { title, value } = spec;
+
+ data.push(`${title}: ${value}`);
+ });
+ } else {
+ specs?.forEach((spec) => {
+ const { title, value } = spec;
+
+ data.push(`${title}: ${value}`);
+ });
+ }
+
+ setSpecificationsHeader(data); // You can replace
+ };
+
+ const scrollToSection = (id) => {
+ const element = document.getElementById(id);
+ if (element) {
+ const offset = -80; // Adjust this value as needed
+ window.scrollTo({
+ top: element.offsetTop + offset,
+ behavior: "smooth",
+ });
+ }
+ };
+ useEffect(() => {
+ fetchPost(params.id[0]);
+ }, []);
+
+ useEffect(() => {
+ displaySpecifications(product?.specifications);
+ }, [product]);
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+ {data.product?.persianName}{" "}
+
+
+ {data?.product?.englishName}{" "}
+
+
+
+
+
+
+ {data?.product?.hasDiscount && (
+
+ )}
+
+ {!data?.product?.warranty == "" && (
+
+
+ {product?.warranty}
+
+
+ )}
+
+
+ {/*
*/}
+
+
+
+
+ {data?.product?.summery}
+
+
+
+
+
+ {specificationsHeader.map((e, index) => (
+
+
+
+ {e}
+
+
+ ))}
+
+
+
+ {/* xs:sticky lg:relative xs:top-[60px] lg:top-0 ==> sticky for price=================== */}
+
+
+
+
+
+ {data?.product?.files?.length > 0 ? (
+
CTX.setIsOpenLightBox(true)}
+ alt={`${product.persianName} - ${product.englishName}`}
+ property
+ loading="eager"
+ />
+ ) : (
+
+
+
+ )}
+
+
+
+
+ {data?.product?.persianName}{" "}
+
+
+
+
+
+
+
+ گارانتی{" "}
+ اصالت {" "}
+ و{" "}
+
+ سلامت فیزیکی کالا
+
+
+
+
+
+
+
+ {true ? (
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+
+
{
+ setProductBarDetail(0);
+ scrollToSection("section0");
+ }}
+ >
+
+ مشخصات محصول
+
+
مشخصات
+
+
{
+ setProductBarDetail(1);
+ scrollToSection("section1");
+ }}
+ >
+
روش استفاده
+
+
{
+ setProductBarDetail(2);
+ scrollToSection("section2");
+ }}
+ >
+
نقد و بررسی
+
+
{
+ setProductBarDetail(3);
+ scrollToSection("section3");
+ }}
+ >
+
+ دیدگاه مخاطبان
+
+
+ مخاطبان
+
+
+
+
+
+
+ مشخصات محصول
+
+
+ {product?.specifications?.map((e, index) => (
+
+
+ {e.title}:
+
+ {" "}
+ {e.value}{" "}
+
+
+
+ ))}
+
+
+
+
+
+ روش استفاده
+
+
{" "}
+
+
+
+
+ نقد و برسی{" "}
+
+
{" "}
+
+
+
+
+ دیدگاه مخاطبان{" "}
+
+
{" "}
+
+
+
+
+
+
+ {product?.hasDiscount ? (
+ <>
+
+
+
+
+
+
+ >
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export default ProductData;
diff --git a/components/AppsComponent/RootData/page.jsx b/components/AppsComponent/RootData/page.jsx
new file mode 100644
index 0000000..9396de4
--- /dev/null
+++ b/components/AppsComponent/RootData/page.jsx
@@ -0,0 +1,583 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import Chapar from "plugins/Chapar";
+import Loading from "plugins/Loading/page";
+import BottomSheetAddress from "plugins/bottomSheet/BottomSheetAddress";
+import BottomSheetLogOut from "plugins/bottomSheet/BottomSheetLogOut";
+import { useEffect, useState } from "react";
+// import "react-image-gallery/styles/css/image-gallery.css";
+import "react-image-lightbox/style.css";
+import "react-spring-bottom-sheet/dist/style.css";
+import { ToastContainer, toast } from "react-toastify";
+import "react-toastify/dist/ReactToastify.css";
+import "swiper/css";
+import "../../../style/fontiran.css";
+import "../../../style/globals.css";
+import { useRouter } from "next/navigation";
+import NextTopLoader from "nextjs-toploader";
+import SideBarNavBarMobile from "@comp/Navbar/SideBarNavBarMobile/page";
+import Goftino from "plugins/Goftino/page";
+import Yektanet from "plugins/Yektanet/page";
+
+const RootData = ({ children }) => {
+ const [cart, setCart] = useState([]);
+ const [products, setProducts] = useState([]);
+ const [pager, setPager] = useState([]);
+ const [filter, setFilter] = useState([]);
+ const [navData, setNavData] = useState([]);
+ const [brands, setBrands] = useState([]);
+ const [loading, setLoading] = useState(false);
+ const [closeNavbar, setCloseNavbar] = useState(false);
+ const [bottomSheetCartOpen, setBottomSheetCartOpen] = useState(false);
+ const [bottomSheetFilterOpen, setBottomSheetFilterOpen] = useState(false);
+ const [bottomSheetDiscountOpen, setBottomSheetDiscountOpen] = useState(false);
+ const [bottomSheetAddressOpen, setBottomSheetAddressOpen] = useState(false);
+ const [bottomSheetLogOutOpen, setBottomSheetLogOutOpen] = useState(false);
+ const [bottomSheetSeeOrderOpen, setBottomSheetSeeOrderOpen] = useState(false);
+ const [bottomSheetDeleteAddressOpen, setBottomSheetDeleteAddressOpen] =
+ useState(false);
+ const [checkOutData, setCheckOutData] = useState([]);
+ const [addressData, setAddressData] = useState([]);
+ const [orderUser, setOrderUser] = useState([]);
+ const [profile, setProfile] = useState([]);
+ const [stopProducts, setStopProducts] = useState(false);
+ const [pageGetProducts, setPageGetProducts] = useState(0);
+ const [isMobile, setIsMobile] = useState(false);
+ const [isOpenLightBox, setIsOpenLightBox] = useState(false);
+ const [
+ cooperationSystemProfileContractData,
+ setCooperationSystemProfileContractData,
+ ] = useState("");
+ const [cooperationSystemProfileData, setCooperationSystemProfileData] =
+ useState([]);
+ const [searchResultData, setSearchResultData] = useState([]);
+ const [isSearched, setIsSearched] = useState(false);
+
+ const [isChecked, setIsChecked] = useState(false);
+ const [selectedBrands, setSelectedBrands] = useState([]);
+ const [rangePrice, setRangePrice] = useState([1000, 100]);
+ const [isRangePrice, setIsRangePrice] = useState(false);
+ const [sortBy, setSortBy] = useState(-1);
+
+ const router = useRouter();
+
+ const AddItemToCart = (
+ id,
+ persianName,
+ cost,
+ costWithDiscount,
+ mainImage,
+ hasDiscount,
+ maxOrderCount
+ ) => {
+ setCart((prevCart) => {
+ // Check if the item is already in the cart
+ const existingItem = prevCart.find((item) => item.id === id);
+ let updatedCart;
+ if (existingItem) {
+ // If the item is already in the cart, update its count
+ if (existingItem.count < maxOrderCount || maxOrderCount == 0) {
+ updatedCart = prevCart.map((item) =>
+ item.id === id ? { ...item, count: item.count + 1 } : item
+ );
+ } else {
+ // Notify user if maxOrderCount is exceeded
+ toast.error(
+ `
+ نمیتوانید بیشتراز
+ ${" "}
+ ${maxOrderCount}
+ ${" "}
+ عدد ثبت کنید `,
+ {
+ position: "bottom-right",
+ closeOnClick: true,
+ }
+ );
+ updatedCart = prevCart;
+ }
+ } else {
+ // If the item is not in the cart, add it with a count of 1
+ updatedCart = [
+ ...prevCart,
+ {
+ id,
+ count: 1,
+ persianName,
+ cost,
+ costWithDiscount,
+ mainImage,
+ hasDiscount,
+ maxOrderCount,
+ },
+ ];
+ }
+ // Store the updated cart in local storage
+ localStorage.setItem("cart", JSON.stringify(updatedCart));
+
+ // Return the updated cart
+ return updatedCart;
+ });
+ };
+
+ const RemoveItemFromCart = (id) => {
+ setCart((prevCart) => {
+ // Check if the item is already in the cart
+ const existingItem = prevCart.find((item) => item.id === id);
+
+ if (existingItem) {
+ // If the item is already in the cart
+ if (existingItem.count === 1) {
+ // If the item count is 1, remove it from the cart
+ const updatedCart = prevCart.filter((item) => item.id !== id);
+
+ // Store the updated cart in local storage
+ localStorage.setItem("cart", JSON.stringify(updatedCart));
+
+ // Return the updated cart
+ return updatedCart;
+ } else {
+ // If the item count is greater than 1, update its count
+ const updatedCart = prevCart.map((item) =>
+ item.id === id ? { ...item, count: item.count - 1 } : item
+ );
+
+ // Store the updated cart in local storage
+ localStorage.setItem("cart", JSON.stringify(updatedCart));
+
+ // Return the updated cart
+ return updatedCart;
+ }
+ } else {
+ // If the item is not in the cart, do nothing
+ return prevCart;
+ }
+ });
+ };
+
+ const fetchNavData = async (id) => {
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/product/category?sortByMain=true`
+ );
+ const post = await res.json();
+ setNavData(post);
+ };
+
+ const fetchProducts = async (
+ pageGetProducts,
+ id,
+ selectedBrands,
+ isChecked,
+ minPrice,
+ maxPrice,
+ sort,
+ isRangePrice,
+ paginationSay
+ ) => {
+ const brandIds = selectedBrands?.map((brand) => brand.id);
+ // const query = {
+ // page:pageGetProducts,
+ // categoryId:categoryId
+ // }
+ const queryString = `${`page=${pageGetProducts}`}${
+ id ? `&categoryId=${id}` : ""
+ }${
+ brandIds?.length > 0 ? `&brandIds=${brandIds?.join("&brandIds=")}` : ""
+ }${isChecked ? `&isActive=${isChecked}` : ""}${
+ isRangePrice ? `&minPrice=${minPrice}` : ""
+ }${isRangePrice ? `&maxPrice=${maxPrice}` : ""}${
+ !!sort ? `&sortBy=${sort}` : ""
+ }`;
+
+ const cleanQueryString = decodeURIComponent(
+ queryString.replace(/\%20/g, " ")
+ );
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/product?${cleanQueryString}`
+ );
+ const post = await res.json();
+
+ setPager(post.pager);
+ setFilter(post.filters);
+
+ if (paginationSay) {
+ // If it's a paginated request (not the first Page)
+ window.scrollTo({
+ top: 0,
+ behavior: "smooth", // Optional: smooth scrolling behavior
+ });
+
+ setProducts(post.products);
+
+ setStopProducts(true); // Assuming this stops pagination
+ }
+
+ if (post.products.length <= 19) {
+ // If the length of fetched products is less than or equal to 19, indicating the last Page
+ setStopProducts(true); // Assuming this stops pagination
+ }
+ if (!paginationSay && pageGetProducts == 0) {
+ // If it's not a paginated request and it's the first Page
+ setProducts(post.products);
+ } else if (!paginationSay && pageGetProducts != 0) {
+ // If it's not a paginated request and it's not the first Page
+ setProducts((data) => [...(data ? data : []), ...post.products]);
+ }
+ };
+
+ const fetchAddressUser = async () => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/user/address`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setAddressData(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ setLoading(false);
+ }
+ };
+
+ const fetchOrderUser = async () => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/user/order`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setOrderUser(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ setLoading(false);
+ }
+ };
+
+ const fetchUserInfo = async () => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/user/info`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setProfile(data);
+ } catch ({ error, status }) {
+ localStorage.removeItem("token");
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ const fetchOrderBagCheck = async () => {
+ const productsToSend = cart.map((item) => ({
+ productId: item.id,
+ count: parseInt(item.count),
+ }));
+
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/order/bag/check`,
+
+ JSON.stringify(productsToSend)
+ );
+
+ const updatedCart = cart
+ .map((item) => {
+ const updatedCartItem = data.find(
+ (updatedItem) => updatedItem.productId === item.id
+ );
+ if (updatedCartItem) {
+ if (updatedCartItem.isRemoved || !updatedCartItem.isEnable) {
+ // Item is removed or not enabled, remove from cart
+ return null;
+ } else {
+ return {
+ ...item,
+ cost: updatedCartItem.cost,
+ costWithDiscount: updatedCartItem.costWithDiscount,
+ };
+ }
+ } else {
+ return item;
+ }
+ })
+ .filter(Boolean); // Filter out null entries (removed items)
+
+ setCart(updatedCart);
+ localStorage.setItem("cart", JSON.stringify(updatedCart)); // Save updatedCart to localStorage
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ const GoCheckOut = async () => {
+ // Check if the user is authorized based on the presence of a token in local storage
+ const token = localStorage.getItem("token");
+
+ if (token) {
+ // If token exists, proceed to checkout
+ const productsToSend = cart.map((item) => ({
+ productId: item.id,
+ count: parseInt(item.count),
+ }));
+
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/order/bag/submit`,
+
+ JSON.stringify(productsToSend),
+
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setCheckOutData(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ router.push("/cart/checkout"); // Redirect to the checkout Page
+ } else {
+ // If token does not exist, redirect to login
+ router.push("/login"); // Redirect to the login Page
+ }
+ };
+
+ const fetchCooperationSystemProfile = async () => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/marketer/profile`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setCooperationSystemProfileData(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ const fetchCooperationSystemProfileContract = async () => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/marketer/signup/contract`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setCooperationSystemProfileContractData(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ const fetchSearchResult = async (searchValue) => {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/search/thumb?name=${searchValue}`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ setSearchResultData(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ useEffect(() => {
+ const storedCart = localStorage.getItem("cart");
+ const token = localStorage.getItem("token");
+ if (storedCart) {
+ setCart(JSON.parse(storedCart));
+ }
+
+ if (token) {
+ fetchUserInfo();
+ }
+
+ fetchNavData();
+ // fetchCooperationSystemProfile();
+ }, []);
+
+ useEffect(() => {
+ const mediaQuery = window.matchMedia("(max-width: 768px)"); // Adjust the width according to your mobile breakpoint
+
+ const checkDeviceType = (mediaQuery) => {
+ if (mediaQuery.matches) {
+ setIsMobile(true);
+ } else {
+ setIsMobile(false);
+ }
+ };
+
+ // Initial check
+ checkDeviceType(mediaQuery);
+
+ // Listen for changes in media query
+ const listener = () => checkDeviceType(mediaQuery);
+ mediaQuery.addEventListener("change", listener);
+
+ // Clean up
+ return () => {
+ mediaQuery.removeEventListener("change", listener);
+ };
+ }, []);
+
+ return (
+
+ {children}
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default RootData;
diff --git a/components/Blog/BlogComponents/Cart.jsx b/components/Blog/BlogComponents/Cart.jsx
new file mode 100644
index 0000000..09665e0
--- /dev/null
+++ b/components/Blog/BlogComponents/Cart.jsx
@@ -0,0 +1,35 @@
+import Image from "next/image";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import React from "react";
+
+const Cart = ({ mainImage, title, categoryName, slug, id, summery }) => {
+ return (
+
+
+
+
+
+
{title}
+
{summery}
+
+
+
+
+ );
+};
+
+export default Cart;
diff --git a/components/Blog/BlogComponents/PaginationBlogs.jsx b/components/Blog/BlogComponents/PaginationBlogs.jsx
new file mode 100644
index 0000000..7f76cf5
--- /dev/null
+++ b/components/Blog/BlogComponents/PaginationBlogs.jsx
@@ -0,0 +1,120 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useEffect, useState } from "react";
+
+const PaginationBlogs = ({ totalPage }) => {
+ const CTX = useContext(AppContext);
+ const searchParams = useSearchParams();
+ const pager = totalPage;
+ const pathname = usePathname();
+ const router = useRouter();
+ const [currentPageIndex, setCurrentPageIndex] = useState(
+ Number(searchParams.get("page")) ? Number(searchParams.get("page")) : 0
+ );
+ useEffect(() => {
+ setCurrentPageIndex(
+ Number(searchParams.get("page")) ? Number(searchParams.get("page")) : 0
+ );
+ }, [searchParams]);
+ const renderPaginationButtons = () => {
+ const buttons = [];
+ const totalPages = pager?.totalPage;
+ const maxButtonsToShow = 7; // Maximum buttons to show
+
+ // If total pages are greater than maxButtonsToShow
+ if (totalPages > maxButtonsToShow) {
+ // Show buttons for the first page
+ buttons.push(renderPageButton(0));
+
+ // If current page is not too close to the start, show ellipsis
+ if (currentPageIndex > 2) {
+ buttons.push(renderEllipsis());
+ }
+
+ // Calculate the start index for buttons
+ const start = Math.max(1, currentPageIndex - 2);
+
+ // Calculate the end index for buttons
+ const end = Math.min(currentPageIndex + 3, totalPages - 1);
+
+ // Show buttons for pages within range
+ for (let i = start; i <= end; i++) {
+ buttons.push(renderPageButton(i));
+ }
+
+ // If current page is not too close to the end, show ellipsis
+ if (currentPageIndex < totalPages - 4) {
+ buttons.push(renderEllipsis());
+ }
+
+ // Show button for the last page
+ buttons.push(renderPageButton(totalPages - 1));
+ } else {
+ // Show buttons for all pages
+ for (let i = 0; i < totalPages; i++) {
+ buttons.push(renderPageButton(i));
+ }
+ }
+
+ return buttons;
+ };
+
+ const renderPageButton = (pageIndex) => (
+ handlePageClick(pageIndex)}
+ >
+
+
+
+
+ );
+
+ const renderEllipsis = () => (
+
+ ...
+
+ );
+
+ const handlePageClick = (pageIndex) => {
+ setCurrentPageIndex(pageIndex);
+ //
+ // CTX.fetchProducts(
+ // pageIndex,
+ // props.id[0] != 0 ? props.id[0] : "",
+ // props.selectedBrands,
+ // props.isChecked,
+ // props.rangePrice,
+ // props.rangePrice,
+ // props.sortBy != -1 ? props.sortBy : "",
+ // props.isRangePrice,
+ // true //pagination say or not
+ // );
+ const nextPage = pageIndex;
+
+ const params = new URLSearchParams(searchParams.toString());
+ params.set("page", nextPage);
+ router.push(`${pathname}?${params}`);
+ // CTX.setStopProducts(true);
+ // Your fetchProducts function call here
+ };
+
+ return (
+
+
+ {/* Previous page button */}
+
+ {renderPaginationButtons()}
+
+ {/* Next page button */}
+
+
+ );
+};
+
+export default PaginationBlogs;
diff --git a/components/Blog/BlogComponents/styleBlog.css b/components/Blog/BlogComponents/styleBlog.css
new file mode 100644
index 0000000..26aac25
--- /dev/null
+++ b/components/Blog/BlogComponents/styleBlog.css
@@ -0,0 +1,20 @@
+h2 {
+ color: rgb(0, 49, 155);
+
+ font-weight: 700;
+ margin-top: 15px;
+ margin-bottom: 2px;
+}
+p {
+ color: rgb(54, 54, 54);
+ font-weight: 400;
+}
+
+h3 {
+ color: rgb(216, 16, 16);
+
+ font-weight: 600;
+ margin-top: 15px;
+ margin-bottom: 2px;
+ margin-right: 10px;
+}
diff --git a/components/Blog/BlogData/page.jsx b/components/Blog/BlogData/page.jsx
new file mode 100644
index 0000000..03a0241
--- /dev/null
+++ b/components/Blog/BlogData/page.jsx
@@ -0,0 +1,36 @@
+"use client";
+
+import Image from "next/image";
+import React, { useEffect, useState } from "react";
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+
+const BlogData = ({ data }) => {
+ return (
+
+
+
+
+
+
+
+
+ {data.title}
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default BlogData;
diff --git a/components/Blog/BlogsData/page.jsx b/components/Blog/BlogsData/page.jsx
new file mode 100644
index 0000000..4a744c5
--- /dev/null
+++ b/components/Blog/BlogsData/page.jsx
@@ -0,0 +1,81 @@
+"use client";
+
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import PersianNumber from "plugins/PersianNumber";
+import React from "react";
+import Cart from "../BlogComponents/Cart";
+import PaginationBlogs from "../BlogComponents/PaginationBlogs";
+
+const BlogsData = ({ dataCaetgories, data }) => {
+ const pathname = usePathname();
+ const searchParams = useSearchParams();
+ const router = useRouter();
+
+ const searchParamsCurrentId = searchParams.get("blogCategoryId");
+ const handleGoCategories = (id) => {
+ // CTX.setIsChecked(!isChecked);
+ const params = new URLSearchParams(searchParams.toString());
+
+ params.set("blogCategoryId", id);
+
+ params.set("page", "0");
+ router.push(`${pathname}?${params}`);
+ };
+
+ return (
+
+
+
+
+
+
+
+ {data?.blogs?.map((e) => (
+
+ ))}
+
+
+
+
+
+
+
دسته بندی ها
+
+
+ {dataCaetgories?.map((e) => (
+
handleGoCategories(e.id)}>
+
+
+
{e.name}
+
+ (
+
+ )
+
+
+
+ ))}
+
+
+
+
+
+
+ );
+};
+
+export default BlogsData;
diff --git a/components/Cards/CardCart/page.jsx b/components/Cards/CardCart/page.jsx
new file mode 100644
index 0000000..5d8d01d
--- /dev/null
+++ b/components/Cards/CardCart/page.jsx
@@ -0,0 +1,85 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext } from "react";
+import logo from "../../../public/images/logo.png";
+import AddToCart from "../Components/AddToCart/page";
+import hyphenateString from "plugins/HyphenateString/page";
+
+const CardCart = ({ data }) => {
+ const CTX = useContext(AppContext);
+ const hyphenatedName = hyphenateString(data.persianName);
+
+ return (
+
+
+
+ {!!data.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+
+
+ {data?.persianName}
+
+
+
+
+
+
+
+ {data?.hasDiscount ? (
+
+ ) : (
+
+ )}
+
+
+
+
+ );
+};
+
+export default CardCart;
diff --git a/components/Cards/CardCategories/page.jsx b/components/Cards/CardCategories/page.jsx
new file mode 100644
index 0000000..70fa6db
--- /dev/null
+++ b/components/Cards/CardCategories/page.jsx
@@ -0,0 +1,124 @@
+"use client";
+
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext } from "react";
+import logo from "../../../public/images/logo.png";
+import AddToCart from "../Components/AddToCart/page";
+import hyphenateString from "plugins/HyphenateString/page";
+
+const CardCategories = ({ data }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+ const hyphenatedName = hyphenateString(data.persianName);
+
+ return (
+
+ <>
+
handleRoutineShiftPlanWithDay(index)}
+ >
+ {data.hasDiscount && (
+
+ )}
+ {data.hasDiscount && (
+
+ )}
+
+
+ {!!data.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+ {data.persianName}{" "}
+
+
+ {data.stock <= 3 && data.stock !== 0 && (
+
+ {data.stock} عدد موجود انبار
+
+ )}
+
+
+
+ >
+
+
+
+
+ {data?.hasDiscount ? (
+
+ ) : (
+
+ )}
+
+
+
+ );
+};
+
+export default CardCategories;
diff --git a/components/Cards/CardCategoriesMobile/page.jsx b/components/Cards/CardCategoriesMobile/page.jsx
new file mode 100644
index 0000000..2dfa212
--- /dev/null
+++ b/components/Cards/CardCategoriesMobile/page.jsx
@@ -0,0 +1,100 @@
+"use client";
+
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext } from "react";
+import logo from "../../../public/images/logo.png";
+import AddToCart from "../Components/AddToCart/page";
+import hyphenateString from "plugins/HyphenateString/page";
+
+const CardCategoriesMobile = ({ data }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+ const hyphenatedName = hyphenateString(data.persianName);
+
+ return (
+
+
+
+ {!!data.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+
+ {" "}
+
+
+ {data?.persianName}
+
+
+ {data.stock <= 3 && data.stock !== 0 && (
+
+ {data.stock} عدد موجود انبار
+
+ )}
+
+
{" "}
+
+ {data?.hasDiscount ? (
+
+ ) : (
+
+ )}
+
+
+
+
+ );
+};
+
+export default CardCategoriesMobile;
diff --git a/components/Cards/CardNormal/page.jsx b/components/Cards/CardNormal/page.jsx
new file mode 100644
index 0000000..3d3c80b
--- /dev/null
+++ b/components/Cards/CardNormal/page.jsx
@@ -0,0 +1,122 @@
+"use client";
+import React, { useContext } from "react";
+import { SwiperSlide } from "swiper/react";
+import logo from "../../../public/images/logo.png";
+
+import Image from "next/image";
+import PersianNumber from "plugins/PersianNumber";
+import AppContext from "@ctx/AppContext";
+import AddToCart from "../Components/AddToCart/page";
+import Link from "next/link";
+import hyphenateString from "plugins/HyphenateString/page";
+
+const CardNormal = ({ data, priority }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+
+ // const hyphenatedName = hyphenateString(data.persianName);
+
+ return (
+ <>
+ {" "}
+ <>
+
+ handleRoutineShiftPlanWithDay(index)}
+ >
+ {data.hasDiscount && (
+
+ )}
+
+
+ {!!data.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+ {data.persianName}
+
+
+ {data.stock <= 3 && data.stock !== 0 && (
+
+ {data.stock} عدد موجود انبار
+
+ )}
+
+
+
+ >
+
+
+
+
+
+ {data?.hasDiscount ? (
+ <>
+
+
+
+
+
+
+ >
+ ) : (
+
+ )}
+
+
+
+ >
+ );
+};
+
+export default CardNormal;
diff --git a/components/Cards/CardSurprise/page.jsx b/components/Cards/CardSurprise/page.jsx
new file mode 100644
index 0000000..a164511
--- /dev/null
+++ b/components/Cards/CardSurprise/page.jsx
@@ -0,0 +1,140 @@
+"use client";
+import { useContext } from "react";
+import logo from "../../../public/images/logo.png";
+
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import AddToCart from "../Components/AddToCart/page";
+import hyphenateString from "plugins/HyphenateString/page";
+
+const CardSurprise = ({ data, priority }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+ const hyphenatedName = hyphenateString(data.persianName);
+
+ return (
+ <>
+ {" "}
+ <>
+ handleRoutineShiftPlanWithDay(index)}
+ >
+ {data.hasDiscount && (
+
+ )}
+
+ <>
+
+
+ {!!data.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+ {data.persianName} asdsadsadadasd asdadasdas
+
+
+ {data.stock <= 3 && data.stock !== 0 && (
+
+ {data.stock} عدد موجود انبار
+
+ )}
+
+
+ >
+
+
+
+
+
+
+
+
+ عدد در انبار وجود دارد
+
+
+
+
+
+
+
+
+ {data?.hasDiscount ? (
+ <>
+
+
+
+
+
+
+ >
+ ) : (
+
+ )}
+
+
+
+
+ >
+ >
+ );
+};
+
+export default CardSurprise;
diff --git a/components/Cards/Components/AddToCart/page.jsx b/components/Cards/Components/AddToCart/page.jsx
new file mode 100644
index 0000000..d976787
--- /dev/null
+++ b/components/Cards/Components/AddToCart/page.jsx
@@ -0,0 +1,110 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext } from "react";
+
+const AddToCart = ({ data, theme }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+
+ const handleAddItemToCart = (id) => {
+ CTX.AddItemToCart(
+ data?.id,
+ data?.persianName,
+ data?.cost,
+ data?.costWithDiscount,
+ data?.mainImage,
+ data?.hasDiscount,
+ data?.maxOrderCount
+ );
+ };
+ return (
+ <>
+ {theme == 1 && (
+ <>
+ {" "}
+ {data?.stock == 0 ? (
+
+ ) : (
+
+ {!cart.find((item) => item.id === data?.id) ? (
+
+
handleAddItemToCart()}>
+
+
+
+
+ ) : (
+
+
handleAddItemToCart()}
+ >
+
+
+
+
+ item.id === data?.id).count}
+ />
+
+
CTX.RemoveItemFromCart(data?.id)}
+ >
+
-
+
+
+ )}
+
+ )}
+ >
+ )}
+
+ {theme == 2 && (
+ <>
+ {" "}
+ {data?.stock == 0 ? (
+
+ ) : (
+
+ {!cart.find((item) => item.id === data?.id) ? (
+
+
handleAddItemToCart()}>
+
+ افزودن به سبد
+
+
+
+ ) : (
+
+
handleAddItemToCart()}
+ >
+
+
+
+
+ item.id === data?.id).count}
+ />
+
+
CTX.RemoveItemFromCart(data?.id)}
+ >
+
-
+
+
+ )}
+
+ )}
+ >
+ )}
+ >
+ );
+};
+
+export default AddToCart;
diff --git a/components/Carts/component/NavBarDownCart/page.jsx b/components/Carts/component/NavBarDownCart/page.jsx
new file mode 100644
index 0000000..2eb7e6f
--- /dev/null
+++ b/components/Carts/component/NavBarDownCart/page.jsx
@@ -0,0 +1,43 @@
+"use client";
+import PersianNumber from "plugins/PersianNumber";
+
+const NavBarDownCart = ({ calculateTotalCost, event, permissionGoPay }) => {
+ return (
+
+
+ {/*
*/}
+
+ {permissionGoPay ? (
+
+ ادامه فرایند خرید
+
+ ) : (
+
+ ادامه فرایند خرید
+
+ )}
+
+ {/* */}
+
+
+ قابل پرداخت{" "}
+
+
+
+
+
+
+ {" "}
+ تومان
+
+
+
+
+
+ );
+};
+
+export default NavBarDownCart;
diff --git a/components/Category/FilterCategory/page.jsx b/components/Category/FilterCategory/page.jsx
new file mode 100644
index 0000000..9f41890
--- /dev/null
+++ b/components/Category/FilterCategory/page.jsx
@@ -0,0 +1,299 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import { Switch } from "@headlessui/react";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import PersianNumber from "plugins/PersianNumber";
+import RangeSlider from "plugins/RangeSlider/page";
+import { useContext, useEffect, useRef } from "react";
+
+const FilterCategory = ({
+ id,
+ selectedBrands,
+ isChecked,
+ rangePrice,
+ sortBy,
+ isRangePrice,
+ theme,
+ specialOffer,
+ filter,
+}) => {
+ const pathname = usePathname();
+ const searchParams = useSearchParams();
+ const CTX = useContext(AppContext);
+ const brands = CTX.state.brands;
+ const pageGetProducts = CTX.state.pageGetProducts;
+ const isFirstRender = useRef(true);
+
+ const router = useRouter();
+
+ const handleCheckboxChange = () => {
+ // CTX.setIsChecked(!isChecked);
+ const params = new URLSearchParams(searchParams.toString());
+ if (!isChecked) {
+ params.set("isActive", Number(!isChecked));
+ } else {
+ params.delete("isActive");
+ }
+ params.set("page", "0");
+ router.push(`${pathname}?${params}`);
+ };
+
+ const handleSpecialOfferChange = () => {
+ // CTX.setIsChecked(!isChecked);
+ const params = new URLSearchParams(searchParams.toString());
+ if (!specialOffer) {
+ params.set("specialOffer", Number(!specialOffer));
+ } else {
+ params.delete("specialOffer");
+ }
+ params.set("page", "0");
+ router.push(`${pathname}?${params}`);
+ };
+
+ const handleRangeChange = (values) => {
+ // CTX.setIsRangePrice(true);
+
+ // CTX.setRangePrice(values);
+ //
+
+ const params = new URLSearchParams(searchParams.toString());
+ params.set("minPrice", values[0]);
+ params.set("maxPrice", values[1]);
+ params.set("page", "0");
+ router.push(`${pathname}?${params}`, { scroll: false });
+ };
+
+ const handleFilterBrand = (name, id) => {
+ const params = new URLSearchParams(searchParams.toString());
+ let brandIds = params.get("brandIds")
+ ? Array.from(params.get("brandIds").split(",") ?? [])
+ : [];
+ //
+ if (brandIds.includes(id)) {
+ brandIds = brandIds.filter((brandId) => brandId !== id);
+
+ if (brandIds.length === 0) {
+ params.delete("brandIds");
+ router.push(`${pathname}?${params}`);
+ return;
+ }
+ } else {
+ brandIds.push(id);
+ }
+ params.set("brandIds", brandIds.join(","));
+ params.set("page", "0");
+
+ router.push(`${pathname}?${params}`);
+ // Check if the brand is already selected
+ // const isBrandSelected = selectedBrands.some((brand) => brand.id === id);
+
+ // if (!isBrandSelected) {
+ // // If the brand is not already selected, add it to the state
+ // CTX.setSelectedBrands((prevBrands) => [...prevBrands, { name, id }]);
+ // } else {
+ // // If the brand is already selected, remove it from the state
+ // CTX.setSelectedBrands((prevBrands) =>
+ // prevBrands.filter((brand) => brand.id !== id)
+ // );
+ // }
+ };
+
+ const handleRangePriceFilter = () => {
+ CTX.fetchProducts(
+ 0,
+ id[0],
+ selectedBrands,
+ isChecked,
+ rangePrice[0],
+ rangePrice[1],
+ sortBy != -1 ? sortBy : "",
+ isRangePrice
+ );
+ };
+
+ // useEffect(() => {
+ // if (isFirstRender.current) {
+ // isFirstRender.current = false;
+ // return;
+ // }
+
+ // CTX.fetchProducts(
+ // 0,
+ // id[0] != 0 ? id[0] : "",
+ // selectedBrands,
+ // isChecked,
+ // rangePrice[0],
+ // rangePrice[1],
+ // sortBy != -1 ? sortBy : "",
+ // isRangePrice
+ // );
+ // }, [CTX.state.selectedBrands, CTX.state.isChecked]);
+
+ // useEffect(() => {
+ // CTX.setRangePrice([
+ // filter?.price?.minimumValue,
+ // filter?.price?.maximumValue,
+ // ]);
+ // }, [filter]);
+
+ return (
+
+
+
+
+
+
+
+ {brands?.map((e, index) => (
+
handleFilterBrand(e.persianName, e.id)}
+ >
+
+
id == e.id)
+ ? "bg-primary-200 p-1"
+ : ""
+ } `}
+ >
+
+ {e.persianName}
+
+
+
+ ))}
+
+
+
+
+
فقط محصولات موجود
+
+ Enable notifications
+
+
+
+
+
+
+ فقط پیشنهاد های ویژه{" "}
+
+
+ Enable notifications
+
+
+
+
+ {/*
+
+
+ handleRangeChange(e)}
+ />
+
+
+
+
*/}
+
+
+
+ );
+};
+
+export default FilterCategory;
diff --git a/components/Category/ListProdocts/page.jsx b/components/Category/ListProdocts/page.jsx
new file mode 100644
index 0000000..630327f
--- /dev/null
+++ b/components/Category/ListProdocts/page.jsx
@@ -0,0 +1,139 @@
+"use client";
+import CardCategories from "@comp/Cards/CardCategories/page";
+import AppContext from "@ctx/AppContext";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useEffect } from "react";
+
+const ListProdocts = ({
+ sortBy,
+ rangePrice,
+ selectedBrands,
+ isChecked,
+ id,
+ isRangePrice,
+}) => {
+ const CTX = useContext(AppContext);
+ const products = CTX.state.products;
+
+ const pager = CTX.state.pager;
+ const stopProducts = CTX.state.stopProducts;
+ const pageGetProducts = CTX.state.pageGetProducts;
+
+ const searchParams = useSearchParams();
+ const pathname = usePathname();
+ const router = useRouter();
+ const sort = (by) => {
+ const params = new URLSearchParams(searchParams.toString());
+ params.set("sortBy", by);
+ params.set("page", "0");
+ router.push(`${pathname}?${params}`);
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
sort(1)}
+ >
+
+ پربازدید ترین
+
+
+
sort(2)}
+ >
+
+ محبوب ترین
+
+
+
sort(3)}
+ >
+
+ گران ترین
+
+
+
sort(4)}
+ >
+
+ ارزان ترین
+
+
+
sort(1)}
+ >
+
+ پرفروش ترین
+
+
+
+
+
+
+
+
+
+
+ {products?.map((e, index) => (
+
+ ))}
+
+
+
+ );
+};
+
+export default ListProdocts;
diff --git a/components/Category/Mobile/Component/SearchSideBar/page.jsx b/components/Category/Mobile/Component/SearchSideBar/page.jsx
new file mode 100644
index 0000000..6413aab
--- /dev/null
+++ b/components/Category/Mobile/Component/SearchSideBar/page.jsx
@@ -0,0 +1,152 @@
+"use client";
+import ResultSearchBar from "@comp/Navbar/ResultSearchBar/page";
+import AppContext from "@ctx/AppContext";
+import { useContext, useEffect, useRef, useState } from "react";
+
+const SearchSideBar = () => {
+ const CTX = useContext(AppContext);
+ const [searchValue, setSearchValue] = useState("");
+ const isSearched = CTX.state.isSearched;
+
+ const inputRef = useRef(null);
+
+ const handleRemoveSearch = () => {
+ CTX.setSearchResultData([]);
+ setSearchValue("");
+ CTX.setIsSearched(false);
+ };
+
+ useEffect(() => {
+ if (CTX.state.closeNavbar) {
+ inputRef.current.focus();
+ }
+ setSearchValue("");
+ }, [CTX.state.closeNavbar]);
+
+ const handleInputChange = (event) => {
+ setSearchValue(event.target.value);
+ };
+
+ useEffect(() => {
+ // Define a function to send the request
+ const sendRequest = async () => {
+ CTX.fetchSearchResult(searchValue);
+ };
+
+ // Set a timer to send the request after 2000 milliseconds of inactivity
+ const timer = setTimeout(() => {
+ if (searchValue.trim() !== "") {
+ sendRequest();
+ CTX.setIsSearched(true);
+ }
+
+ if (searchValue == "") {
+ CTX.setIsSearched(false);
+ }
+ }, 1000);
+
+ // Clean up function to clear the timer on component unmount or when searchTerm changes
+ return () => clearTimeout(timer);
+ }, [searchValue]);
+
+ return (
+ <>
+
+
+
{
+ CTX.setCloseNavbar(true);
+ }}
+ >
+
+
+
+
CTX.setCloseNavbar(true)}
+ value={searchValue}
+ onChange={(e) => handleInputChange(e)}
+ />
+
+ {!isSearched ? (
+
+ ) : (
+
handleRemoveSearch()}
+ >
+
+
+ )}
+
+
+ {/* {true && (
+ setSearchResultShow(!searchResultShow)}
+ >
+
+
+ )} */}
+ >
+ );
+};
+
+export default SearchSideBar;
diff --git a/components/Category/Mobile/FilterCategoryMobile/page.jsx b/components/Category/Mobile/FilterCategoryMobile/page.jsx
new file mode 100644
index 0000000..dba7803
--- /dev/null
+++ b/components/Category/Mobile/FilterCategoryMobile/page.jsx
@@ -0,0 +1,188 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import BottomSheetFilter from "plugins/bottomSheet/BottomSheetFilter";
+import { useContext, useEffect, useState } from "react";
+
+const FilterCategoryMobile = (props) => {
+ const CTX = useContext(AppContext);
+ const pageGetProducts = CTX.state.pageGetProducts;
+
+ const [trendFilter, setTrendFilter] = useState(false);
+
+ // useEffect(() => {
+ // if (props.sortBy != -1) {
+ // CTX.fetchProducts(
+ // 0,
+ // props.id[0] != 0 ? props.id[0] : "",
+ // props.selectedBrands,
+ // props.isChecked,
+ // props.rangePrice,
+ // props.rangePrice,
+ // props.sortBy != -1 ? props.sortBy : "",
+ // props.isRangePrice
+ // );
+ // }
+ // }, [props.sortBy]);
+
+ const searchParams = useSearchParams();
+ const pathname = usePathname();
+ const router = useRouter();
+
+ const sort = (by) => {
+ const params = new URLSearchParams(searchParams.toString());
+ params.set("sortBy", by);
+ params.set("page", "0");
+ router.push(`${pathname}?${params}`);
+ };
+
+ return (
+ <>
+
+
CTX.setBottomSheetFilterOpen(true)}
+ >
+
+
فیلتر ها
+
+
setTrendFilter(!trendFilter)}
+ >
+
+
مرتب سازی
+
+
+
+ {trendFilter ? (
+
+
sort(1)}
+ >
+
+ پربازدید ترین
+
+
+
sort(2)}
+ >
+
+ محبوب ترین
+
+
+
sort(3)}
+ >
+
+ گران ترین
+
+
+
sort(4)}
+ >
+
+ ارزان ترین
+
+
+
sort(5)}
+ >
+
+ پرفروش ترین
+
+
+
+ ) : (
+ ""
+ )}
+
+
+ >
+ );
+};
+
+export default FilterCategoryMobile;
diff --git a/components/Category/Mobile/ListProductsMobile/page.jsx b/components/Category/Mobile/ListProductsMobile/page.jsx
new file mode 100644
index 0000000..82c63b7
--- /dev/null
+++ b/components/Category/Mobile/ListProductsMobile/page.jsx
@@ -0,0 +1,22 @@
+"use client";
+import CardCategoriesMobile from "@comp/Cards/CardCategoriesMobile/page";
+import AppContext from "@ctx/AppContext";
+import { useContext } from "react";
+
+const ListProductsMobile = (props) => {
+ const CTX = useContext(AppContext);
+ const products = CTX.state.products;
+ const stopProducts = CTX.state.stopProducts;
+
+ return (
+ <>
+
+ {products?.map((e, index) => (
+
+ ))}
+
+ >
+ );
+};
+
+export default ListProductsMobile;
diff --git a/components/Category/PaginationCategoory/page.jsx b/components/Category/PaginationCategoory/page.jsx
new file mode 100644
index 0000000..5be6ee9
--- /dev/null
+++ b/components/Category/PaginationCategoory/page.jsx
@@ -0,0 +1,120 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import { usePathname, useRouter, useSearchParams } from "next/navigation";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useEffect, useState } from "react";
+
+const PaginationCategoory = (props) => {
+ const CTX = useContext(AppContext);
+ const searchParams = useSearchParams();
+ const pager = CTX.state.pager;
+ const pathname = usePathname();
+ const router = useRouter();
+ const [currentPageIndex, setCurrentPageIndex] = useState(
+ Number(searchParams.get("page")) ? Number(searchParams.get("page")) : 0
+ );
+ useEffect(() => {
+ setCurrentPageIndex(
+ Number(searchParams.get("page")) ? Number(searchParams.get("page")) : 0
+ );
+ }, [searchParams]);
+ const renderPaginationButtons = () => {
+ const buttons = [];
+ const totalPages = pager?.totalPage;
+ const maxButtonsToShow = 7; // Maximum buttons to show
+
+ // If total pages are greater than maxButtonsToShow
+ if (totalPages > maxButtonsToShow) {
+ // Show buttons for the first page
+ buttons.push(renderPageButton(0));
+
+ // If current page is not too close to the start, show ellipsis
+ if (currentPageIndex > 2) {
+ buttons.push(renderEllipsis());
+ }
+
+ // Calculate the start index for buttons
+ const start = Math.max(1, currentPageIndex - 2);
+
+ // Calculate the end index for buttons
+ const end = Math.min(currentPageIndex + 3, totalPages - 1);
+
+ // Show buttons for pages within range
+ for (let i = start; i <= end; i++) {
+ buttons.push(renderPageButton(i));
+ }
+
+ // If current page is not too close to the end, show ellipsis
+ if (currentPageIndex < totalPages - 4) {
+ buttons.push(renderEllipsis());
+ }
+
+ // Show button for the last page
+ buttons.push(renderPageButton(totalPages - 1));
+ } else {
+ // Show buttons for all pages
+ for (let i = 0; i < totalPages; i++) {
+ buttons.push(renderPageButton(i));
+ }
+ }
+
+ return buttons;
+ };
+
+ const renderPageButton = (pageIndex) => (
+ handlePageClick(pageIndex)}
+ >
+
+
+
+
+ );
+
+ const renderEllipsis = () => (
+
+ ...
+
+ );
+
+ const handlePageClick = (pageIndex) => {
+ setCurrentPageIndex(pageIndex);
+ //
+ // CTX.fetchProducts(
+ // pageIndex,
+ // props.id[0] != 0 ? props.id[0] : "",
+ // props.selectedBrands,
+ // props.isChecked,
+ // props.rangePrice,
+ // props.rangePrice,
+ // props.sortBy != -1 ? props.sortBy : "",
+ // props.isRangePrice,
+ // true //pagination say or not
+ // );
+ const nextPage = pageIndex;
+
+ const params = new URLSearchParams(searchParams.toString());
+ params.set("page", nextPage);
+ router.push(`${pathname}?${params}`);
+ CTX.setStopProducts(true);
+ // Your fetchProducts function call here
+ };
+
+ return (
+
+
+ {/* Previous page button */}
+
+ {renderPaginationButtons()}
+
+ {/* Next page button */}
+
+
+ );
+};
+
+export default PaginationCategoory;
diff --git a/components/Footer/page.jsx b/components/Footer/page.jsx
new file mode 100644
index 0000000..564e20b
--- /dev/null
+++ b/components/Footer/page.jsx
@@ -0,0 +1,299 @@
+import Image from "next/image";
+import Link from "next/link";
+import logo from "../../public/images/logo.png";
+import bale from "@img/bale.png";
+
+const Footer = () => {
+ return (
+ <>
+
+
+
+
+
+
+
+ فروشگاه لوازم آرایشی و بهداشتی{" "}
+
+ وسمه{" "}
+
+
+
+
+
+
+
+
+
+ {" "}
+ ثبت شماره
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ کرم مرطوب کننده دست و پا{" "}
+
+
+
+
+
+ مرطوب کننده و آبرسان صورت{" "}
+
+
+
+
+ شوینده سطوح
+
+
+
+
+ بهداشت دهان و دندان
+
+
+
+
+ نرم کننده مو
+
+
+
+
+
+
+
+
+ کیت رنگ مو{" "}
+
+
+
+
+ بهداشت خانه و آشپرخانه{" "}
+
+
+
+
+ سرم مو{" "}
+
+
+
+
+ ژل بهداشتی بانوان{" "}
+
+
+
+
+
+ مجله زیبایی وسمه{" "}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ سوالات متداول{" "}
+
+
+
+
+ تماس باما{" "}
+
+
+
+
+ قوانین سایت
+
+
+
+
+ درباره ما{" "}
+
+
+
+
+
+
+
+
+
+
+
+ وسمه تعهد داره تجربه خرید لوازم آرایشی و بهداشتی رو متحول کنه.
+ این تحول میتونه برای مشتری احساس قسمتی از خانواده وسمه بودن رو
+ داشته باشه. وسمه با برطرف کردن دغدغههای خرید لوازم آرایشی و
+ بهداشتی به ساختن لایف استایل شخصی خانمهای ایرانی کمک میکنه و
+ زندگی راحتتری پیش روی مشتریانش قرار میده. از سال 1400 ما تمام
+ انرژیمون رو به کار گرفتیم تا با تمرکز برکیفیت کالا، سرعت ارسال و
+ قیمت کالا ، نیاز افراد رو برطرف کنیم و تجربه جدیدی از لذت خرید
+ به وجود بیاریم.
+
+
+
+
+
+
+
+
+ استفاده از مطالب فروشگاه وسمه فقط برای مقاصد غیرتجاری و باذکر منبع
+ بلامانع است. کلیه حقوق این سایت متعلق به شرکت وسمه می باشد. ورژن
+ {process.env.NEXT_PUBLIC_PACKAGE_VERSION}
+
+
+ >
+ );
+};
+
+export default Footer;
diff --git a/components/LandingPage/BeautySection/page.jsx b/components/LandingPage/BeautySection/page.jsx
new file mode 100644
index 0000000..fb54071
--- /dev/null
+++ b/components/LandingPage/BeautySection/page.jsx
@@ -0,0 +1,80 @@
+import CardNormal from "@comp/Cards/CardNormal/page";
+import Link from "next/link";
+import { Swiper, SwiperSlide } from "swiper/react";
+
+const BeautySection = ({ data }) => {
+ return (
+
+
+
+
+
+
+
+ آرایش صورت وسمه{" "}
+
+
+
+
console.log("slide change")}
+ className="rtl relative mt-5"
+ // dir="rtl"
+ breakpoints={{
+ 320: {
+ slidesPerView: 1.3,
+ },
+ 480: {
+ slidesPerView: 2,
+ },
+ 768: {
+ slidesPerView: 3,
+ },
+ 1024: {
+ slidesPerView: 4.5,
+ },
+ 1440: {
+ slidesPerView: 6,
+ },
+ }}
+ >
+ {data?.map((e, index) => (
+
+
+
+ ))}
+
+
+
+
+
+ مشاهده بیشتر{" "}
+
+
+
+
+
+ );
+};
+
+export default BeautySection;
diff --git a/components/LandingPage/BetweenSexualSection/page.jsx b/components/LandingPage/BetweenSexualSection/page.jsx
new file mode 100644
index 0000000..838c906
--- /dev/null
+++ b/components/LandingPage/BetweenSexualSection/page.jsx
@@ -0,0 +1,95 @@
+import Image from "next/image";
+import Link from "next/link";
+
+const BetweenSexualSection = () => {
+ return (
+
+
+
+
+
+
+
+
+ لوازم بهداشتی وسمه
+
+
+
+ به صرفه زیبا شـــــــــــــو
+
+
+
+ {/*
+ لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با
+ استفاده از طراحان گرافیک است
+
*/}
+
+
+
+
+
+
+ بهداشت روزانه بانوان
+
+
+
+ شروع خرید{" "}
+
+
+
+
+
+
+
+
+ بهداشت روزانه آقایان
+
+
+
+ شروع خرید{" "}
+
+
+
+
+
+
+
+
+ );
+};
+
+export default BetweenSexualSection;
diff --git a/components/LandingPage/BrandsLogoSection/page.jsx b/components/LandingPage/BrandsLogoSection/page.jsx
new file mode 100644
index 0000000..2cdb88c
--- /dev/null
+++ b/components/LandingPage/BrandsLogoSection/page.jsx
@@ -0,0 +1,13 @@
+import MovingLogos from "plugins/MovingLogos/page";
+
+const BrandsLogoSection = () => {
+ return (
+
+ );
+};
+
+export default BrandsLogoSection;
diff --git a/components/LandingPage/HeroSection/page.jsx b/components/LandingPage/HeroSection/page.jsx
new file mode 100644
index 0000000..39061cc
--- /dev/null
+++ b/components/LandingPage/HeroSection/page.jsx
@@ -0,0 +1,891 @@
+import Image from "next/image";
+import Link from "next/link";
+
+import cat1 from "../../../public/images/cat1.jpg";
+import cat2 from "../../../public/images/cat2.jpg";
+import cat3 from "../../../public/images/cat3.jpg";
+import cat11 from "../../../public/images/cat11.png";
+import cat12 from "../../../public/images/cat12.png";
+import cat13 from "../../../public/images/cat13.png";
+import cat14 from "../../../public/images/cat14.png";
+import cat15 from "../../../public/images/cat15.png";
+import PersianNumber from "@plugins/PersianNumber";
+import { Swiper, SwiperSlide } from "swiper/react";
+import CardNormal from "@comp/Cards/CardNormal/page";
+import CardSurprise from "@comp/Cards/CardSurprise/page";
+import NavbarTransparent from "@comp/Navbar/NavbarTransparent";
+
+const HeroSection = ({ data }) => {
+ console.log(data);
+ return (
+
+
+
+
+
+
+
+
+ فروشگاه آشپرخانه بونسای{" "}
+
+
+ بونسای نبض آرام آشپزخانه
+
+
+
+
+
+
+
+
+
+
+
+
+ {" "}
+ {" "}
+ {" "}
+
+
+
+
+
+
+ {/*
+
+
+
+
+
+
امنیت در خرید
+
+ همه ساعت روز هفت روز
+
+
+
+
+
+
+
+
+
ارسال رایگان
+
+ بدون محدودیت قیمت{" "}
+
+
+
+
+
+
+
+
+
اصالت کالا
+
+ تضمین برگشت پول{" "}
+
+
+
+
+
+ {" "}
+
+
+
پشتیبانی حرفه ای
+
+ همه ساعت روز هفت روز
+
+
+
+
+
*/}
+
+
+ {/*
*/}
+
+
+
+
+
+ دسته بندی های بونسای
+
+
+ با تصمین کمترین قیمت در تمامی دستنه بندی ها خرید کنید{" "}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+ +
+
+ {" "} محصول
+
+
+
+
+
+ سینی های روسی{" "}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ پیشنهادات ویژه بونسای
+
+
+ هر روز از ساعت شش عصر تا 12 شب ویژه های بونسایی را مشاهده کنید{" "}
+
+
+
+
+ console.log("slide change")}
+ className="rtl relative mt-5"
+ // dir="rtl"
+ breakpoints={{
+ 320: {
+ slidesPerView: 1.4,
+ },
+ 480: {
+ slidesPerView: 2,
+ },
+ 768: {
+ slidesPerView: 3,
+ },
+ 1024: {
+ slidesPerView: 4.5,
+ },
+ 1440: {
+ slidesPerView: 6,
+ },
+ }}
+ >
+ {data?.products?.map((e, index) => (
+
+
+
+ ))}
+
+
+
+
+
+
+
+
+
+
+ هدیه های به صرفه
+ بونسای
+
+
+ با تصمین کمترین قیمت در تمامی دستنه بندی ها خرید کنید{" "}
+
+
+
+
+ {data?.products?.map((e) => (
+
+
+
+ ))}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ کرم مرطوب کننده دست و پا{" "}
+
+
+
+
+
+ مرطوب کننده و آبرسان صورت{" "}
+
+
+
+
+ شوینده سطوح
+
+
+
+
+ بهداشت دهان و دندان
+
+
+
+
+ نرم کننده مو
+
+
+
+
+
+
+
+
+ کیت رنگ مو{" "}
+
+
+
+
+ بهداشت خانه و آشپرخانه{" "}
+
+
+
+
+ سرم مو{" "}
+
+
+
+
+ ژل بهداشتی بانوان{" "}
+
+
+
+
+
+ مجله زیبایی وسمه{" "}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ سوالات متداول{" "}
+
+
+
+
+ تماس باما{" "}
+
+
+
+
+ قوانین سایت
+
+
+
+
+ درباره ما{" "}
+
+
+
+
+
+
+
+
+
+
+
+ وسمه تعهد داره تجربه خرید لوازم آرایشی و بهداشتی رو متحول کنه.
+ این تحول میتونه برای مشتری احساس قسمتی از خانواده وسمه بودن رو
+ داشته باشه. وسمه با برطرف کردن دغدغههای خرید لوازم آرایشی و
+ بهداشتی به ساختن لایف استایل شخصی خانمهای ایرانی کمک میکنه و
+ زندگی راحتتری پیش روی مشتریانش قرار میده. از سال 1400 ما تمام
+ انرژیمون رو به کار گرفتیم تا با تمرکز برکیفیت کالا، سرعت ارسال و
+ قیمت کالا ، نیاز افراد رو برطرف کنیم و تجربه جدیدی از لذت خرید
+ به وجود بیاریم.
+
+
+
+
+
+
+
+
+ استفاده از مطالب فروشگاه وسمه فقط برای مقاصد غیرتجاری و باذکر منبع
+ بلامانع است. کلیه حقوق این سایت متعلق به شرکت وسمه می باشد. ورژن
+
+
+
+ );
+};
+
+export default HeroSection;
diff --git a/components/LandingPage/HomeSection/page.jsx b/components/LandingPage/HomeSection/page.jsx
new file mode 100644
index 0000000..138de26
--- /dev/null
+++ b/components/LandingPage/HomeSection/page.jsx
@@ -0,0 +1,81 @@
+import CardNormal from "@comp/Cards/CardNormal/page";
+import Image from "next/image";
+import { Swiper, SwiperSlide } from "swiper/react";
+import khane from "../../../public/images/khane.jpg";
+import CardSurprise from "@comp/Cards/CardSurprise/page";
+import Link from "next/link";
+
+const HomeSection = ({ data }) => {
+ return (
+
+
+
+
+
+
+
+
+ لوازم بهداشتی منزل وسمه
+
+
+
+ به صرفه شـــــــــــــو
+
+
+
+
console.log("slide change")}
+ // onSwiper={(swiper) => console.log(swiper)}
+ className="rtl relative mt-4"
+ breakpoints={{
+ 320: {
+ slidesPerView: 1.3,
+ },
+ 480: {
+ slidesPerView: 2,
+ },
+ 768: {
+ slidesPerView: 3,
+ },
+ 1024: {
+ slidesPerView: 3.4,
+ },
+ 1440: {
+ slidesPerView: 3.8,
+ },
+ }}
+ >
+ {data?.map((e, index) => (
+
+
+
+ ))}
+
+
+
+
+
+
+ مشاهده بیشتر{" "}
+
+
+
+
+
+ );
+};
+
+export default HomeSection;
diff --git a/components/LandingPage/SurpriseSection/page.jsx b/components/LandingPage/SurpriseSection/page.jsx
new file mode 100644
index 0000000..42e42b3
--- /dev/null
+++ b/components/LandingPage/SurpriseSection/page.jsx
@@ -0,0 +1,85 @@
+import CardNormal from "@comp/Cards/CardNormal/page";
+import TimerDown from "@comp/TimerDown/TimerDown";
+import Link from "next/link";
+import { Swiper, SwiperSlide } from "swiper/react";
+
+const SurpriseSection = ({ data }) => {
+ return (
+
+
+
+
+
+
+
+ پیشنهاد های ویژه امروز{" "}
+
+
+
+
+
+ // onSwiper={(swiper) =>
+ className="rtl relative mt-5"
+ breakpoints={{
+ 320: {
+ slidesPerView: 1.4,
+ },
+ 480: {
+ slidesPerView: 2,
+ },
+ 768: {
+ slidesPerView: 3,
+ },
+ 1024: {
+ slidesPerView: 4.5,
+ },
+ 1440: {
+ slidesPerView: 6,
+ },
+ }}
+ >
+ {data?.map((e, index) => (
+
+
+
+ ))}
+
+
+
+
+
+ مشاهده بیشتر{" "}
+
+
+
+
+
+ );
+};
+
+export default SurpriseSection;
diff --git a/components/Login/LoginStep.jsx b/components/Login/LoginStep.jsx
new file mode 100644
index 0000000..52d3cdc
--- /dev/null
+++ b/components/Login/LoginStep.jsx
@@ -0,0 +1,41 @@
+"use client";
+
+const LoginStep = ({ phoneNumber, setPhoneNumber, ConfirmPhoneNumber }) => {
+ return (
+
+
ورود / ثبت نام
+
+ شماره موبایل خود را وارد کنید
+
+
+
+
setPhoneNumber(e.target.value)}
+ />
+
+
+ ConfirmPhoneNumber()}
+ >
+ ورود و ثبت نام
+
+
+
+
+
+ با ورود و یا ثبت نام در وسمه شما{" "}
+
+ شرایط و قوانین
+ {" "}
+ استفاده از سرویس های سایت وسمه و قوانین حریم خصوصی آن را می پذیرید.
+
+
+
+
+ );
+};
+
+export default LoginStep;
diff --git a/components/Login/SignUp.jsx b/components/Login/SignUp.jsx
new file mode 100644
index 0000000..b6ecb28
--- /dev/null
+++ b/components/Login/SignUp.jsx
@@ -0,0 +1,48 @@
+const SignUp = ({ setLastName, setFirstName, SignUpLogin }) => {
+ return (
+
+
مشخصات را وارد کنید
+
+
+
+ نام
+ setFirstName(e.target.value)}
+ />
+
+
+
+ نام خانوادگی
+ setLastName(e.target.value)}
+ />
+
+
+
+ SignUpLogin()}
+ >
+ ورود و ثبت نام
+
+
+
+
+
+ با ورود و یا ثبت نام در وسمه شما{" "}
+
+ شرایط و قوانین
+ {" "}
+ استفاده از سرویس های سایت وسمه و قوانین حریم خصوصی آن را می پذیرید.
+
+
+
+
+ );
+};
+
+export default SignUp;
diff --git a/components/Login/VerifyCodeStep.jsx b/components/Login/VerifyCodeStep.jsx
new file mode 100644
index 0000000..fe7c6ba
--- /dev/null
+++ b/components/Login/VerifyCodeStep.jsx
@@ -0,0 +1,41 @@
+"use client";
+import PersianNumber from "plugins/PersianNumber";
+
+const VerifyCodeStep = ({
+ LoginWhitVerifyCode,
+ setVerifyCode,
+ verifyCode,
+ phoneNumber,
+}) => {
+ return (
+
+
+ {" "}
+ پیامک حاوی کد تایید برای شماره
+
+
+
+ ارسال شده است
+
+
+
+ setVerifyCode(e.target.value)}
+ />
+
+
+ LoginWhitVerifyCode()}
+ >
+ ورود و ثبت نام
+
+
+
+ );
+};
+
+export default VerifyCodeStep;
diff --git a/components/Navbar/CartNavbar/page.jsx b/components/Navbar/CartNavbar/page.jsx
new file mode 100644
index 0000000..4aa2fe9
--- /dev/null
+++ b/components/Navbar/CartNavbar/page.jsx
@@ -0,0 +1,103 @@
+"use client";
+import CardCart from "@comp/Cards/CardCart/page";
+import AppContext from "@ctx/AppContext";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useState } from "react";
+
+const CartNavbar = ({ isScrolled }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+ const [smallBasket, setSmallBasket] = useState(false);
+
+ return (
+
+
setSmallBasket(!smallBasket)}
+ >
+
سبد خرید
+
+
+
+
+ {smallBasket && (
+
+
+
+
+
+ محصول موجود در سبد
+
+
+ {/*
*/}
+
+ {cart.map((e, index) => (
+
+ ))}
+
+
+
+
+ {/*
+
+ جمع کل :
+
+ تومان
+
+
*/}
+
+
CTX.fetchOrderBagCheck()}
+ >
+ {" "}
+ ثبت خرید
+
+
+
+
+
+ )}
+
+ );
+};
+
+export default CartNavbar;
diff --git a/components/Navbar/NavbarTransparent.jsx b/components/Navbar/NavbarTransparent.jsx
new file mode 100644
index 0000000..86ead3e
--- /dev/null
+++ b/components/Navbar/NavbarTransparent.jsx
@@ -0,0 +1,463 @@
+"use client";
+
+// import { useSubscriber } from "@ctx/SubscriberContext";
+
+import Image from "next/image";
+import Link from "next/link";
+import { useContext, useEffect, useRef, useState } from "react";
+
+import { motion } from "framer-motion";
+
+import { useRouter } from "next/navigation";
+import AppContext from "../../Contexts/AppContext";
+
+import logo from "@img/logo.png";
+import PersianNumber from "@plugins/PersianNumber";
+
+const NavbarTransparent = () => {
+ const router = useRouter();
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+
+ const openNavBarServices = CTX.state.openNavBarServices;
+ const NavBarData = CTX.state.navData;
+
+ const [closeNavbar, setClosNavbar] = useState(false);
+ const [activeStepNavbar, setActiveStepNavbar] = useState(null);
+
+ const [isScrolled, setIsScrolled] = useState(false);
+ // const [hoverItemNavbar, setHoverItemNavbar] = useState(-1);
+
+ const [responsiveNavBarItemStep, setResponsiveNavBarItemStep] =
+ useState(false);
+ const ref = useRef(null);
+
+ const handleResetFramer = () => {
+ setRestFramer(false);
+ setTimeout(() => {
+ setRestFramer(true);
+ }, 100);
+ };
+
+ const toLeft = {
+ visible: (custom) => ({
+ opacity: ["0", "1"],
+ // y: ["-30%", "0%"],
+ transition: { delay: custom * 0.06 },
+ }),
+ };
+
+ useEffect(() => {
+ const handleScroll = () => {
+ const scrollTop = window.scrollY;
+ setIsScrolled(scrollTop > 200);
+ };
+
+ window.addEventListener("scroll", handleScroll);
+
+ return () => {
+ window.removeEventListener("scroll", handleScroll);
+ };
+ }, []);
+
+ return (
+ <>
+ {/* */}
+
+
+
+
+
+ {NavBarData.map((e, index) => (
+ <>
+
{
+ // setHoverItemNavbar(index);
+ setActiveStepNavbar(e.id);
+ }}
+ onMouseLeave={() => {
+ // setHoverItemNavbar(-1);
+ setActiveStepNavbar(null);
+ }}
+ // onClick={() => context.setOpenNavBarServices(false)}
+ >
+
+ {e.name}
+ {e.children.length > 0 && ""}
+
+
+ {e.children.length > 0 && e.id == activeStepNavbar && (
+
{
+ // setHoverItemNavbar(-1);
+ // }}
+ >
+
+
+
+
+
+
+
+
+ {e.children.map((s, index) => (
+
+ {/* */}
+
+ {/* */}
+
+ ))}
+
+
+
+
+ )}
+
+ >
+ ))}
+
+
+
+
+
+
+ {/* reponsive navbar */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+ {/* responsive part */}
+
+
+
+ {/*
*/}
+
+ {/* */}
+
setClosNavbar(true)}
+ >
+
+
+
+
+
+
+ {closeNavbar && (
+
+ )}
+
+
+
+
+
setClosNavbar(false)}
+ >
+
+
+
+
+
+
+
+
+
+ {/*
*/}
+
+
+
+
فروشگاه بونسای
+ {/* */}
+
+
+
+
+
+
+
+ {NavBarData.map((e, index) => (
+ <>
+
+ {/* */}
+ <>
+ {
+ if (e.children.length > 0) {
+ setResponsiveNavBarItemStep(index);
+
+ setActiveStepNavbar(e.id);
+ }
+ }}
+ >
+
+ {e.name}
+
+ {e.children.length > 0 ? (
+
+ ) : (
+ ""
+ )}
+
+
+
+ >
+ {/* {" "} */}
+
+
+ {responsiveNavBarItemStep === index &&
+ e.children.length > 0 &&
+ e.id == activeStepNavbar && (
+
+
+ {e.children.map((s, index) => (
+ //
+
+ //
+ ))}
+
+
+ )}
+ >
+ ))}
+
+
+
+
+
+
+ >
+ );
+};
+
+export default NavbarTransparent;
diff --git a/components/Navbar/ResultSearchBar/page.jsx b/components/Navbar/ResultSearchBar/page.jsx
new file mode 100644
index 0000000..7591b43
--- /dev/null
+++ b/components/Navbar/ResultSearchBar/page.jsx
@@ -0,0 +1,152 @@
+import Image from "next/image";
+import Link from "next/link";
+import React, { useContext } from "react";
+import logoBlack from "../../../public/images/logo.png";
+import AppContext from "@ctx/AppContext";
+
+const ResultSearchBar = ({
+ searchResultProductData,
+ searchResultCategoryData,
+}) => {
+ const CTX = useContext(AppContext);
+
+ return (
+ <>
+
+
+
+
+
+
+
CTX.setCloseNavbar(false)}
+ >
+
شامپو بدن
+
+
+
+
CTX.setCloseNavbar(false)}
+ >
+
کرم مرطوب کننده دست و پا
+
+
+
+
+
CTX.setCloseNavbar(false)}
+ >
+
شوینده ظروف
+
+
+
+
+ {searchResultCategoryData?.length > 0 &&
+ searchResultProductData?.length > 0 ? (
+ <>
+ {searchResultCategoryData?.map((e, index) => (
+
+
CTX.setCloseNavbar(false)}
+ >
+
+ {" "}
+
+
+
{e.name}
+
+ دسته بندی
+
+
+
+
+ ))}
+
+
+
+ {searchResultProductData?.map((e, index) => (
+
+
CTX.setCloseNavbar(false)}
+ >
+
+
+ {!!e.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+
{e.persianName}
+
+ محصول{" "}
+
+
+
+
+ ))}
+ >
+ ) : (
+
+ )}
+
+ >
+ );
+};
+
+export default ResultSearchBar;
diff --git a/components/Navbar/SideBarNavBarMobile/page.jsx b/components/Navbar/SideBarNavBarMobile/page.jsx
new file mode 100644
index 0000000..5658919
--- /dev/null
+++ b/components/Navbar/SideBarNavBarMobile/page.jsx
@@ -0,0 +1,173 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import Link from "next/link";
+import { useContext, useState } from "react";
+import logo from "../../../public/images/logo.png";
+import Navbar from "../page";
+import SearchSideBar from "@comp/Category/Mobile/Component/SearchSideBar/page";
+import ResultSearchBar from "../ResultSearchBar/page";
+
+const SideBarNavBarMobile = () => {
+ const CTX = useContext(AppContext);
+ const [firstChild, setFirstChild] = useState([]);
+ const [firstChildIndex, setFirstChildIndex] = useState(-1);
+
+ const dataNav = CTX.state.navData;
+ const isSearched = CTX.state.isSearched;
+ const searchResultCategoryData = CTX.state.searchResultData.categories;
+ const searchResultProductData = CTX.state.searchResultData.products;
+
+ const closeNavbar = CTX.state.closeNavbar;
+
+ return (
+ <>
+
+
+
+
{
+ CTX.setCloseNavbar(false);
+ setFirstChildIndex(-1);
+ }}
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {isSearched ? (
+
+
+
+ ) : (
+
+
+ {dataNav?.map((e, index) => (
+ {
+ setFirstChild(dataNav[index].children);
+ setFirstChildIndex(index);
+ }}
+ key={index}
+ >
+
+
+ {firstChildIndex == index && (
+ <>
+
+
+ CTX.setCloseNavbar(false)}
+ >
+
+ همه موارد
+
+
+ {" "}
+ {firstChild.map((e, index) => (
+
+
+ CTX.setCloseNavbar(false)
+ }
+ >
+
+
+
+ ))}
+
+ >
+ )}
+
+ ))}
+
+
+ )}
+
+
+
+
+
+
+ >
+ );
+};
+
+export default SideBarNavBarMobile;
diff --git a/components/Navbar/page.jsx b/components/Navbar/page.jsx
new file mode 100644
index 0000000..85b3da0
--- /dev/null
+++ b/components/Navbar/page.jsx
@@ -0,0 +1,683 @@
+"use client";
+import Image from "next/image";
+import { useContext, useEffect, useState } from "react";
+import cover from "../../public/images/navbar/n1.jpg";
+import divider from "../../public/images/divider.png";
+import logoWhite from "../../public/images/logo-white.png";
+import logoBlack from "../../public/images/logo.png";
+
+import SearchSideBar from "@comp/Category/Mobile/Component/SearchSideBar/page";
+import AppContext from "@ctx/AppContext";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import BottomSheetCart from "plugins/bottomSheet/BottomSheetCart";
+import CartNavbar from "./CartNavbar/page";
+import { debounce } from "lodash";
+import { useRouter } from "next/navigation";
+import ResultSearchBar from "./ResultSearchBar/page";
+
+const Navbar = ({ theme }) => {
+ const [open, setOpen] = useState(false);
+
+ const CTX = useContext(AppContext);
+ const router = useRouter();
+ const dataNav = CTX.state.navData;
+ const profile = CTX.state.profile;
+ const cart = CTX.state.cart;
+ const searchResultCategoryData = CTX.state.searchResultData.categories;
+ const searchResultProductData = CTX.state.searchResultData.products;
+
+ const [navItemHover, setNavItemHover] = useState(null);
+ const [isDesktop, setIsDesktop] = useState(null);
+ const [closeNavbar, setClosNavbar] = useState(false);
+ const [isScrolled, setIsScrolled] = useState(false);
+ const [smallDashboard, setSmallDashboard] = useState(false);
+ const [searchResultShow, setSearchResultShow] = useState(false);
+ const [searchValue, setSearchValue] = useState("");
+
+ const handleItemNavber = (index) => {
+ setNavItemHover(index);
+ };
+
+ const handleRemoveSearch = () => {
+ CTX.setSearchResultData([]);
+ setSearchValue("");
+ setSearchResultShow(false);
+ };
+
+ useEffect(() => {
+ const handleResize = () => {
+ setIsDesktop(window.innerWidth > 1000); // You can adjust the width threshold as needed
+ };
+
+ // Set initial window size
+ handleResize();
+
+ // Add event listener to handle window resize
+ window.addEventListener("resize", handleResize);
+
+ // Remove event listener on component unmount
+ return () => {
+ window.removeEventListener("resize", handleResize);
+ };
+ }, []);
+
+ useEffect(() => {
+ const handleScroll = () => {
+ const scrollTop = window.scrollY;
+ setIsScrolled(scrollTop > 200);
+ };
+
+ window.addEventListener("scroll", handleScroll);
+
+ return () => {
+ window.removeEventListener("scroll", handleScroll);
+ };
+ }, []);
+
+ useEffect(() => {
+ // Define a function to send the request
+ const sendRequest = async () => {
+ CTX.fetchSearchResult(searchValue);
+
+ setSearchResultShow(true);
+ };
+
+ // Set a timer to send the request after 2000 milliseconds of inactivity
+ const timer = setTimeout(() => {
+ if (searchValue.trim() !== "") {
+ sendRequest();
+ }
+ }, 1000);
+
+ // Clean up function to clear the timer on component unmount or when searchTerm changes
+ return () => clearTimeout(timer);
+ }, [searchValue]);
+
+ const handleInputChange = (event) => {
+ setSearchValue(event.target.value);
+ };
+
+ return (
+ <>
+ {isDesktop && (
+
+
+
+
+
+
+
+
+
+ <>
+
+
handleInputChange(e)}
+ />
+
+ {!searchResultShow ? (
+
+ ) : (
+
handleRemoveSearch()}
+ >
+
+
+ )}
+
+
+ {searchResultShow && (
+
setSearchResultShow(!searchResultShow)}
+ >
+
+
+
+
+ )}
+ >
+ {profile?.length <= 0 ? (
+
+
+
+ ورود / عضویت{" "}
+
+
+
+ ) : (
+
+
+
setSmallDashboard(!smallDashboard)}
+ >
+
+ {profile?.firstName} {profile?.lastName}
+
+
+
+
+ {smallDashboard && (
+
setSmallDashboard(true)}
+ onMouseLeave={() => setSmallDashboard(false)}
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ همکاری در فروش{" "}
+
+
+
+
+
+
+
+ CTX.setBottomSheetLogOutOpen(true)
+ }
+ >
+
+ خروج{" "}
+
+
+
+
+
+
+
+ )}
+
+
+ )}
+
+
+
+
+
+
+
+
+
+ {dataNav?.map((e, index) => (
+
handleItemNavber(index)}
+ onMouseLeave={() => setNavItemHover(null)}
+ key={index}
+ >
+ {e.name}{" "}
+
+ ))}
+
+
+ {/*
{
+ const element = document.getElementById("offer");
+ if (element) {
+ const offset = -80; // Adjust this value as needed
+ window.scrollTo({
+ top: element.offsetTop + offset,
+ behavior: "smooth",
+ });
+ }
+ }}
+ >
+
+
*/}
+
+
+
setNavItemHover(navItemHover)}
+ onMouseLeave={() => setNavItemHover(null)}
+ >
+
+
+
+
+
+
+
+
+
+
+ {navItemHover != null &&
+ dataNav &&
+ dataNav[navItemHover].children.map((e, index) => (
+
+
+
+
+
+ {e.name}
+
+
+
+ {e.children.length > 0 && (
+
+ )}
+
+
+ {/* ======hear==== */}
+ {e.children && e.children.length > 0 && (
+
+ {e.children.map((child, index) => (
+
+
+ {child.name}
+
+
+ ))}
+
+ )}
+
+ ))}
+
+
+
+
+
+
+
+
+ {/*
+
+
+ چرا آرایشی وسمه ؟
+
+
*/}
+
+
+
+
+
+
+
+
+
+
+ )}
+
+ {!isDesktop && (
+ <>
+
+ {" "}
+
+
+ {isScrolled ? (
+
+ ) : (
+
+ )}
+
+
+
+
+ {profile?.length <= 0 ? (
+
+
+
+ ورود / عضویت{" "}
+
+
+
+ ) : (
+
+
+
setSmallDashboard(!smallDashboard)}
+ >
+
+ {profile?.firstName} {profile?.lastName}
+
{" "}
+
+
+ {smallDashboard && (
+
setSmallDashboard(true)}
+ onMouseLeave={() => setSmallDashboard(false)}
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ همکاری در فروش{" "}
+
+
+
+
+
+
+
+ CTX.setBottomSheetLogOutOpen(true)
+ }
+ >
+
+ خروج{" "}
+
+
+
+
+
+
+
+ )}
+
+
+ )}
+
+
+
CTX.setBottomSheetCartOpen(true)}
+ >
+ {/*
+ {cart?.length > 0 && (
+
+ )}
+
+
+
+
+ */}
+
+
+ {cart?.length > 0 && (
+
+ )}
+
+
CTX.setBottomSheetCartOpen(true)}
+ >
+
سبد خرید
+
+
+
+
+
+
+ >
+ )}
+ >
+ );
+};
+
+export default Navbar;
diff --git a/components/TimerDown/TimerDown.jsx b/components/TimerDown/TimerDown.jsx
new file mode 100644
index 0000000..445da7c
--- /dev/null
+++ b/components/TimerDown/TimerDown.jsx
@@ -0,0 +1,103 @@
+"use client";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useEffect, useState } from "react";
+
+const TimerDown = () => {
+ const [timeRemaining, setTimeRemaining] = useState({
+ days: 0,
+ hours: 0,
+ minutes: 0,
+ seconds: 0,
+ milliseconds: 0,
+ });
+
+ useEffect(() => {
+ const calculateTimeRemaining = () => {
+ // Get current date and time
+ const now = new Date();
+
+ // Calculate yesterday's date
+ const yesterday = new Date(now);
+ yesterday.setDate(now.getDate() - 1);
+ yesterday.setHours(23, 59, 0, 0); // Set time to 23:59:00
+
+ // Calculate tomorrow's date
+ const tomorrow = new Date(now);
+ tomorrow.setDate(now.getDate() + 1);
+ tomorrow.setHours(23, 59, 0, 0); // Set time to 23:59:00
+
+ // Calculate time difference
+ const difference = tomorrow - now;
+
+ // Convert time difference to days, hours, minutes, seconds, and milliseconds
+ const days = Math.floor(difference / (1000 * 60 * 60 * 24));
+ const hours = Math.floor(
+ (difference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)
+ );
+ const minutes = Math.floor((difference % (1000 * 60 * 60)) / (1000 * 60));
+ const seconds = Math.floor((difference % (1000 * 60)) / 1000);
+ const milliseconds = difference % 1000;
+
+ // Update state
+ setTimeRemaining({ days, hours, minutes, seconds, milliseconds });
+ };
+
+ // Call calculateTimeRemaining once to set initial state
+ calculateTimeRemaining();
+
+ // Update time remaining every second
+ const intervalId = setInterval(calculateTimeRemaining, 1000);
+
+ // Clean up interval on component unmount
+ return () => clearInterval(intervalId);
+ }, []);
+
+ return (
+
+
+
+
+
+
+
+ {" "}
+
+
+
+
ثانیه
+
+
+
+ );
+};
+
+export default TimerDown;
diff --git a/iranCities.js b/iranCities.js
new file mode 100644
index 0000000..2228ad3
--- /dev/null
+++ b/iranCities.js
@@ -0,0 +1,2570 @@
+export const iranCities = () => {
+ return [
+ {
+ id: 102,
+ title: "آبادان",
+ slug: "Abadan",
+ province_id: 7,
+ latitude: 32.9925,
+ longitude: 47.419722,
+ },
+ {
+ id: 129,
+ title: "آباده",
+ slug: "Abade",
+ province_id: 8,
+ latitude: 30.347296,
+ longitude: 48.2934004,
+ },
+ {
+ id: 296,
+ title: "آبدانان",
+ slug: "ABDANAN",
+ province_id: 17,
+ latitude: 32.9925,
+ longitude: 47.419722,
+ },
+ {
+ id: 65,
+ title: "آذرشهر",
+ slug: "Azarshahr",
+ province_id: 4,
+ latitude: 37.758889,
+ longitude: 45.978333,
+ },
+ {
+ id: 332,
+ title: "آرادان",
+ slug: "Aradan",
+ province_id: 21,
+ latitude: 33.860278,
+ longitude: 58.521667,
+ },
+ {
+ id: 226,
+ title: "آران وبيدگل",
+ slug: "Aran va Bidgol",
+ province_id: 11,
+ latitude: 34.057778,
+ longitude: 51.484167,
+ },
+ {
+ id: 400,
+ title: "آزادشهر",
+ slug: "Azadshahr",
+ province_id: 28,
+ latitude: 37.758889,
+ longitude: 45.978333,
+ },
+ {
+ id: 13,
+ title: "آستارا",
+ slug: "Astara",
+ province_id: 2,
+ latitude: 38.429167,
+ longitude: 48.871944,
+ },
+ {
+ id: 14,
+ title: "آستانه اشرفيه",
+ slug: "Astaneh",
+ province_id: 2,
+ latitude: 37.2598022,
+ longitude: 49.9436621,
+ },
+ {
+ id: 2,
+ title: "آشتيان",
+ slug: "Ashtian",
+ province_id: 1,
+ latitude: 34.521944,
+ longitude: 50.006111,
+ },
+ {
+ id: 398,
+ title: "آق قلا",
+ slug: "Aqqala",
+ province_id: 28,
+ latitude: 37.013889,
+ longitude: 54.455,
+ },
+ {
+ id: 29,
+ title: "آمل",
+ slug: "Amol",
+ province_id: 3,
+ latitude: 36.469722,
+ longitude: 52.350833,
+ },
+ {
+ id: 341,
+ title: "ابركوه",
+ slug: "Abarkouh",
+ province_id: 22,
+ latitude: 31.1304036,
+ longitude: 53.2503736,
+ },
+ {
+ id: 319,
+ title: "ابهر",
+ slug: "Abhar",
+ province_id: 20,
+ latitude: 38.4894305,
+ longitude: 47.0683575,
+ },
+ {
+ id: 345,
+ title: "ابوموسي",
+ slug: "Abu Musa",
+ province_id: 23,
+ latitude: 25.8797106,
+ longitude: 55.0328017,
+ },
+ {
+ id: 1,
+ title: "اراک",
+ slug: "Arak",
+ province_id: 1,
+ latitude: 34.091667,
+ longitude: 49.689167,
+ },
+ {
+ id: 374,
+ title: "اردبيل",
+ slug: "Ardabil",
+ province_id: 25,
+ latitude: 38.4853276,
+ longitude: 47.8911209,
+ },
+ {
+ id: 209,
+ title: "اردستان",
+ slug: "Ardestān",
+ province_id: 11,
+ latitude: 33.376111,
+ longitude: 52.369444,
+ },
+ {
+ id: 335,
+ title: "اردكان",
+ slug: "Ardakan",
+ province_id: 22,
+ latitude: 33.376111,
+ longitude: 52.369444,
+ },
+ {
+ id: 275,
+ title: "اردل",
+ slug: "Ardal",
+ province_id: 15,
+ latitude: 38.4853276,
+ longitude: 47.8911209,
+ },
+ {
+ id: 145,
+ title: "ارسنجان",
+ slug: "Arsanjan",
+ province_id: 8,
+ latitude: 33.376111,
+ longitude: 52.369444,
+ },
+ {
+ id: 71,
+ title: "اروميه",
+ slug: "Address:",
+ province_id: 5,
+ latitude: 37.555278,
+ longitude: 45.0725,
+ },
+ {
+ id: 286,
+ title: "ازنا",
+ slug: "AZNA",
+ province_id: 16,
+ latitude: 33.455833,
+ longitude: 49.455556,
+ },
+ {
+ id: 130,
+ title: "استهبان",
+ slug: "Estahban",
+ province_id: 8,
+ latitude: 35.696111,
+ longitude: 51.423056,
+ },
+ {
+ id: 267,
+ title: "اسدآباد",
+ slug: "Asadabad",
+ province_id: 14,
+ latitude: 37.85,
+ longitude: 46.833333,
+ },
+ {
+ id: 405,
+ title: "اسفراين",
+ slug: "Esfaraien",
+ province_id: 29,
+ latitude: 37.076389,
+ longitude: 57.51,
+ },
+ {
+ id: 88,
+ title: "اسلام آبادغرب",
+ slug: "Islamic garb",
+ province_id: 6,
+ latitude: 33.7293882,
+ longitude: 73.0931461,
+ },
+ {
+ id: 364,
+ title: "اسلامشهر",
+ slug: "Eslamshahr",
+ province_id: 24,
+ latitude: 35.5445805,
+ longitude: 51.2302457,
+ },
+ {
+ id: 66,
+ title: "اسکو",
+ slug: "Osku",
+ province_id: 4,
+ latitude: 37.915833,
+ longitude: 46.123611,
+ },
+ {
+ id: 83,
+ title: "اشنويه",
+ slug: "Oshnavieh",
+ province_id: 5,
+ latitude: 37.039722,
+ longitude: 45.098333,
+ },
+ {
+ id: 210,
+ title: "اصفهان",
+ slug: "Esfahan",
+ province_id: 11,
+ latitude: 32.6546275,
+ longitude: 51.6679826,
+ },
+ {
+ id: 131,
+ title: "اقليد",
+ slug: "Eghlid",
+ province_id: 8,
+ latitude: 30.898889,
+ longitude: 52.686667,
+ },
+ {
+ id: 389,
+ title: "البرز",
+ slug: "Alborz",
+ province_id: 27,
+ latitude: 35.9960467,
+ longitude: 50.9289246,
+ },
+ {
+ id: 280,
+ title: "اليگودرز",
+ slug: "Aligoudarz",
+ province_id: 16,
+ latitude: 33.400556,
+ longitude: 49.695,
+ },
+ {
+ id: 25,
+ title: "املش",
+ slug: "Amlash",
+ province_id: 2,
+ latitude: 37.0916334,
+ longitude: 50.1869377,
+ },
+ {
+ id: 177,
+ title: "انار",
+ slug: "Pomegranate",
+ province_id: 9,
+ latitude: 37.340278,
+ longitude: 46.056111,
+ },
+ {
+ id: 103,
+ title: "انديمشک",
+ slug: "ANDIMESHK",
+ province_id: 7,
+ latitude: 32.46,
+ longitude: 48.359167,
+ },
+ {
+ id: 51,
+ title: "اهر",
+ slug: "Ahar",
+ province_id: 4,
+ latitude: 38.4894305,
+ longitude: 47.0683575,
+ },
+ {
+ id: 104,
+ title: "اهواز",
+ slug: "Ahvaz",
+ province_id: 7,
+ latitude: 31.3183272,
+ longitude: 48.6706187,
+ },
+ {
+ id: 322,
+ title: "ايجرود",
+ slug: "Ijroud",
+ province_id: 20,
+ latitude: 36.4160928,
+ longitude: 48.2469249,
+ },
+ {
+ id: 105,
+ title: "ايذه",
+ slug: "IZEH",
+ province_id: 7,
+ latitude: 31.834167,
+ longitude: 49.867222,
+ },
+ {
+ id: 233,
+ title: "ايرانشهر",
+ slug: "Iranshahr",
+ province_id: 12,
+ latitude: 36.694444,
+ longitude: 45.141667,
+ },
+ {
+ id: 291,
+ title: "ايلام",
+ slug: "Ilam",
+ province_id: 17,
+ latitude: 33.2957618,
+ longitude: 46.670534,
+ },
+ {
+ id: 297,
+ title: "ايوان",
+ slug: "Ivan",
+ province_id: 17,
+ latitude: 33.2729171,
+ longitude: 52.1985314,
+ },
+ {
+ id: 30,
+ title: "بابل",
+ slug: "Babol",
+ province_id: 3,
+ latitude: 36.7025,
+ longitude: 52.6575,
+ },
+ {
+ id: 39,
+ title: "بابلسر",
+ slug: "Babolsar",
+ province_id: 3,
+ latitude: 32.468191,
+ longitude: 44.5501935,
+ },
+ {
+ id: 307,
+ title: "باشت",
+ slug: "Basht",
+ province_id: 18,
+ latitude: 29.233056,
+ longitude: 56.602222,
+ },
+ {
+ id: 116,
+ title: "باغ ملک",
+ slug: "Garden Property",
+ province_id: 7,
+ latitude: 32.3947206,
+ longitude: 51.5965328,
+ },
+ {
+ id: 158,
+ title: "بافت",
+ slug: "Tissue",
+ province_id: 9,
+ latitude: 29.233056,
+ longitude: 56.602222,
+ },
+ {
+ id: 336,
+ title: "بافق",
+ slug: "Bafg",
+ province_id: 22,
+ latitude: 35.9985999,
+ longitude: 45.8823428,
+ },
+ {
+ id: 252,
+ title: "بانه",
+ slug: "Bane",
+ province_id: 13,
+ latitude: 35.2747322,
+ longitude: 59.4677727,
+ },
+ {
+ id: 125,
+ title: "باوي",
+ slug: "Bavi",
+ province_id: 7,
+ latitude: 35.2747322,
+ longitude: 59.4677727,
+ },
+ {
+ id: 200,
+ title: "بجستان",
+ slug: "Bajestan",
+ province_id: 10,
+ latitude: 33.376111,
+ longitude: 52.369444,
+ },
+ {
+ id: 406,
+ title: "بجنورد",
+ slug: "Bojnoord",
+ province_id: 29,
+ latitude: 37.475,
+ longitude: 57.333333,
+ },
+ {
+ id: 230,
+ title: "برخوار",
+ slug: "Borkhar",
+ province_id: 11,
+ latitude: 34.974722,
+ longitude: 59.623611,
+ },
+ {
+ id: 195,
+ title: "بردسكن",
+ slug: "Bardaskan",
+ province_id: 10,
+ latitude: 35.260833,
+ longitude: 57.969722,
+ },
+ {
+ id: 167,
+ title: "بردسير",
+ slug: "Bardsir",
+ province_id: 9,
+ latitude: 29.9275,
+ longitude: 56.572222,
+ },
+ {
+ id: 281,
+ title: "بروجرد",
+ slug: "Borujerd",
+ province_id: 16,
+ latitude: 37.475,
+ longitude: 57.333333,
+ },
+ {
+ id: 271,
+ title: "بروجن",
+ slug: "Borujen",
+ province_id: 15,
+ latitude: 31.965278,
+ longitude: 51.287222,
+ },
+ {
+ id: 59,
+ title: "بستان آباد",
+ slug: "Bostanabad",
+ province_id: 4,
+ latitude: 37.85,
+ longitude: 46.833333,
+ },
+ {
+ id: 353,
+ title: "بستك",
+ slug: "Block",
+ province_id: 23,
+ latitude: 27.199167,
+ longitude: 54.366667,
+ },
+ {
+ id: 159,
+ title: "بم",
+ slug: "Bass",
+ province_id: 9,
+ latitude: 29.106111,
+ longitude: 58.356944,
+ },
+ {
+ id: 58,
+ title: "بناب",
+ slug: "BONAB",
+ province_id: 4,
+ latitude: 37.340278,
+ longitude: 46.056111,
+ },
+ {
+ id: 15,
+ title: "بندرانزلي",
+ slug: "Bandar Anzali",
+ province_id: 2,
+ latitude: 37.4724467,
+ longitude: 49.4587312,
+ },
+ {
+ id: 346,
+ title: "بندرعباس",
+ slug: "Bandar Abbas",
+ province_id: 23,
+ latitude: 35.952222,
+ longitude: 50.6075,
+ },
+ {
+ id: 347,
+ title: "بندرلنگه",
+ slug: "Lengeh seaport",
+ province_id: 23,
+ latitude: 26.558056,
+ longitude: 54.880556,
+ },
+ {
+ id: 106,
+ title: "بندرماهشهر",
+ slug: "Bandar-e Mahshahr",
+ province_id: 7,
+ latitude: 33.139722,
+ longitude: 47.376111,
+ },
+ {
+ id: 391,
+ title: "بندرگز",
+ slug: "Gaz",
+ province_id: 28,
+ latitude: 37.444444,
+ longitude: 59.108056,
+ },
+ {
+ id: 344,
+ title: "بهاباد",
+ slug: "Bahabad",
+ province_id: 22,
+ latitude: 36.763056,
+ longitude: 45.722222,
+ },
+ {
+ id: 268,
+ title: "بهار",
+ slug: "Spring",
+ province_id: 14,
+ latitude: 37.340278,
+ longitude: 46.056111,
+ },
+ {
+ id: 371,
+ title: "بهارستان",
+ slug: "BAHARESTAN",
+ province_id: 24,
+ latitude: 33.376111,
+ longitude: 52.369444,
+ },
+ {
+ id: 107,
+ title: "بهبهان",
+ slug: "PA",
+ province_id: 7,
+ latitude: 30.595833,
+ longitude: 50.241667,
+ },
+ {
+ id: 31,
+ title: "بهشهر",
+ slug: "Behshahr",
+ province_id: 3,
+ latitude: 34.9083252,
+ longitude: 48.4392729,
+ },
+ {
+ id: 305,
+ title: "بهمئي",
+ slug: "Bahmaie",
+ province_id: 18,
+ latitude: 0,
+ longitude: 0,
+ },
+ {
+ id: 385,
+ title: "بوئين زهرا",
+ slug: "Buin Zahra",
+ province_id: 27,
+ latitude: 35.766944,
+ longitude: 50.057778,
+ },
+ {
+ id: 144,
+ title: "بوانات",
+ slug: "Bavanat",
+ province_id: 8,
+ latitude: 33.220556,
+ longitude: 50.315,
+ },
+ {
+ id: 309,
+ title: "بوشهر",
+ slug: "Bushehr",
+ province_id: 19,
+ latitude: 28.9233837,
+ longitude: 50.820314,
+ },
+ {
+ id: 80,
+ title: "بوكان",
+ slug: "Bukan",
+ province_id: 5,
+ latitude: 36.521111,
+ longitude: 46.208889,
+ },
+ {
+ id: 301,
+ title: "بويراحمد",
+ slug: "Boyer",
+ province_id: 18,
+ latitude: 30.724586,
+ longitude: 50.8456323,
+ },
+ {
+ id: 253,
+ title: "بيجار",
+ slug: "Bijar",
+ province_id: 13,
+ latitude: 32.735278,
+ longitude: 59.466667,
+ },
+ {
+ id: 413,
+ title: "بيرجند",
+ slug: "Birjand",
+ province_id: 30,
+ latitude: 32.8649039,
+ longitude: 59.2262472,
+ },
+ {
+ id: 375,
+ title: "بيله سوار",
+ slug: "Bilesavar",
+ province_id: 25,
+ latitude: 39.3567775,
+ longitude: 47.9490765,
+ },
+ {
+ id: 386,
+ title: "تاكستان",
+ slug: "The vineyard",
+ province_id: 27,
+ latitude: 28.9837547,
+ longitude: 50.8330708,
+ },
+ {
+ id: 181,
+ title: "تايباد",
+ slug: "Taybad",
+ province_id: 10,
+ latitude: 34.74,
+ longitude: 60.775556,
+ },
+ {
+ id: 52,
+ title: "تبريز",
+ slug: "Tabriz",
+ province_id: 4,
+ latitude: 38.066667,
+ longitude: 46.3,
+ },
+ {
+ id: 183,
+ title: "تربت جام",
+ slug: "Torbat-e Jam",
+ province_id: 10,
+ latitude: 35.243889,
+ longitude: 60.6225,
+ },
+ {
+ id: 182,
+ title: "تربت حيدريه",
+ slug: "Torbat",
+ province_id: 10,
+ latitude: 35.273889,
+ longitude: 59.219444,
+ },
+ {
+ id: 337,
+ title: "تفت",
+ slug: "Taft",
+ province_id: 22,
+ latitude: 39.630631,
+ longitude: -78.929542,
+ },
+ {
+ id: 3,
+ title: "تفرش",
+ slug: "Tafresh",
+ province_id: 1,
+ latitude: 34.691944,
+ longitude: 50.013056,
+ },
+ {
+ id: 82,
+ title: "تكاب",
+ slug: "Tekab",
+ province_id: 5,
+ latitude: 37.340278,
+ longitude: 46.056111,
+ },
+ {
+ id: 32,
+ title: "تنكابن",
+ slug: "Tonkabon",
+ province_id: 3,
+ latitude: 36.816389,
+ longitude: 50.873889,
+ },
+ {
+ id: 310,
+ title: "تنگستان",
+ slug: "Tangistan",
+ province_id: 19,
+ latitude: 28.9837547,
+ longitude: 50.8330708,
+ },
+ {
+ id: 358,
+ title: "تهران",
+ slug: "Tehran",
+ province_id: 24,
+ latitude: 31.94,
+ longitude: 51.647778,
+ },
+ {
+ id: 262,
+ title: "تويسركان",
+ slug: "Tuyserkan",
+ province_id: 14,
+ latitude: 34.548056,
+ longitude: 48.446944,
+ },
+ {
+ id: 227,
+ title: "تيران وکرون",
+ slug: "Tiran Vkrvn",
+ province_id: 11,
+ latitude: 0,
+ longitude: 0,
+ },
+ {
+ id: 99,
+ title: "ثلاث باباجاني",
+ slug: "Salas Babajani",
+ province_id: 6,
+ latitude: 34.7358371,
+ longitude: 46.1493969,
+ },
+ {
+ id: 407,
+ title: "جاجرم",
+ slug: "Jajarm",
+ province_id: 29,
+ latitude: 36.95,
+ longitude: 56.38,
+ },
+ {
+ id: 350,
+ title: "جاسك",
+ slug: "Jask",
+ province_id: 23,
+ latitude: 25.643889,
+ longitude: 57.774444,
+ },
+ {
+ id: 203,
+ title: "جغتاي",
+ slug: "Jaghatay",
+ province_id: 10,
+ latitude: 36.5788853,
+ longitude: 57.251215,
+ },
+ {
+ id: 63,
+ title: "جلفا",
+ slug: "Jolfa",
+ province_id: 4,
+ latitude: 38.940278,
+ longitude: 45.630833,
+ },
+ {
+ id: 317,
+ title: "جم",
+ slug: "Jam",
+ province_id: 19,
+ latitude: 27.827778,
+ longitude: 52.326944,
+ },
+ {
+ id: 132,
+ title: "جهرم",
+ slug: "Jahrom",
+ province_id: 8,
+ latitude: 28.5,
+ longitude: 53.560556,
+ },
+ {
+ id: 96,
+ title: "جوانرود",
+ slug: "Javanrood",
+ province_id: 6,
+ latitude: 36.418056,
+ longitude: 54.976389,
+ },
+ {
+ id: 43,
+ title: "جويبار",
+ slug: "Juybar",
+ province_id: 3,
+ latitude: 36.8241289,
+ longitude: 49.4237274,
+ },
+ {
+ id: 205,
+ title: "جوين",
+ slug: "Jovin",
+ province_id: 10,
+ latitude: 36.6362238,
+ longitude: 57.5079912,
+ },
+ {
+ id: 160,
+ title: "جيرفت",
+ slug: "Jiroft",
+ province_id: 9,
+ latitude: 28.6751124,
+ longitude: 57.7371569,
+ },
+ {
+ id: 352,
+ title: "حاجي اباد",
+ slug: "Hajiabadi",
+ province_id: 23,
+ latitude: 28.309167,
+ longitude: 55.901667,
+ },
+ {
+ id: 343,
+ title: "خاتم",
+ slug: "Seal",
+ province_id: 22,
+ latitude: 28.1804287,
+ longitude: 55.7453367,
+ },
+ {
+ id: 235,
+ title: "خاش",
+ slug: "Khash",
+ province_id: 12,
+ latitude: 28.216667,
+ longitude: 61.2,
+ },
+ {
+ id: 320,
+ title: "خدابنده",
+ slug: "Khodabande",
+ province_id: 20,
+ latitude: 36.114722,
+ longitude: 48.591111,
+ },
+ {
+ id: 282,
+ title: "خرم آباد",
+ slug: "Khorramabad",
+ province_id: 16,
+ latitude: 39.648333,
+ longitude: 47.9175,
+ },
+ {
+ id: 146,
+ title: "خرم بيد",
+ slug: "Khorrambid",
+ province_id: 8,
+ latitude: 32.6708345,
+ longitude: 51.6470279,
+ },
+ {
+ id: 323,
+ title: "خرمدره",
+ slug: "Khoramdeh",
+ province_id: 20,
+ latitude: 30.4256219,
+ longitude: 48.1891185,
+ },
+ {
+ id: 108,
+ title: "خرمشهر",
+ slug: "Khorramshahr",
+ province_id: 7,
+ latitude: 37.758889,
+ longitude: 45.978333,
+ },
+ {
+ id: 376,
+ title: "خلخال",
+ slug: "Anklet",
+ province_id: 25,
+ latitude: 37.618889,
+ longitude: 48.525833,
+ },
+ {
+ id: 198,
+ title: "خليل آباد",
+ slug: "Khaliabad",
+ province_id: 10,
+ latitude: 35.255833,
+ longitude: 58.286389,
+ },
+ {
+ id: 354,
+ title: "خمير",
+ slug: "Dough",
+ province_id: 23,
+ latitude: 26.952222,
+ longitude: 55.585,
+ },
+ {
+ id: 4,
+ title: "خمين",
+ slug: "Khomain",
+ province_id: 1,
+ latitude: 33.6406148,
+ longitude: 50.0771125,
+ },
+ {
+ id: 211,
+ title: "خميني شهر",
+ slug: "Khomeini Shahr",
+ province_id: 11,
+ latitude: 32.700278,
+ longitude: 51.521111,
+ },
+ {
+ id: 152,
+ title: "خنج",
+ slug: "Khonj",
+ province_id: 8,
+ latitude: 27.891389,
+ longitude: 53.434444,
+ },
+ {
+ id: 11,
+ title: "خنداب",
+ slug: "Varkaroud",
+ province_id: 1,
+ latitude: 37.340278,
+ longitude: 46.056111,
+ },
+ {
+ id: 192,
+ title: "خواف",
+ slug: "KHAF",
+ province_id: 10,
+ latitude: 34.576389,
+ longitude: 60.140833,
+ },
+ {
+ id: 212,
+ title: "خوانسار",
+ slug: "Khansar",
+ province_id: 11,
+ latitude: 33.220556,
+ longitude: 50.315,
+ },
+ {
+ id: 422,
+ title: "خوسف",
+ slug: "Khoosf",
+ province_id: 30,
+ latitude: 34.576389,
+ longitude: 60.140833,
+ },
+ {
+ id: 133,
+ title: "داراب",
+ slug: "Darab",
+ province_id: 8,
+ latitude: 37.940833,
+ longitude: 47.536667,
+ },
+ {
+ id: 100,
+ title: "دالاهو",
+ slug: "Dalahoo",
+ province_id: 6,
+ latitude: 34.284167,
+ longitude: 46.242222,
+ },
+ {
+ id: 327,
+ title: "دامغان",
+ slug: "Damghan",
+ province_id: 21,
+ latitude: 31.94,
+ longitude: 51.647778,
+ },
+ {
+ id: 208,
+ title: "داورزن",
+ slug: "Davarzan",
+ province_id: 10,
+ latitude: 36.168333,
+ longitude: 54.348056,
+ },
+ {
+ id: 414,
+ title: "درميان",
+ slug: "in the middle of",
+ province_id: 30,
+ latitude: 33.0339405,
+ longitude: 60.1184797,
+ },
+ {
+ id: 292,
+ title: "دره شهر",
+ slug: "Valley City",
+ province_id: 17,
+ latitude: 33.139722,
+ longitude: 47.376111,
+ },
+ {
+ id: 184,
+ title: "درگز",
+ slug: "Dargaz",
+ province_id: 10,
+ latitude: 37.444444,
+ longitude: 59.108056,
+ },
+ {
+ id: 109,
+ title: "دزفول",
+ slug: "Dezful",
+ province_id: 7,
+ latitude: 32.3830777,
+ longitude: 48.4235841,
+ },
+ {
+ id: 110,
+ title: "دشت آزادگان",
+ slug: "DashteAzadegan",
+ province_id: 7,
+ latitude: 30.347296,
+ longitude: 48.2934004,
+ },
+ {
+ id: 311,
+ title: "دشتستان",
+ slug: "Dashtestan",
+ province_id: 19,
+ latitude: 29.266667,
+ longitude: 51.216667,
+ },
+ {
+ id: 312,
+ title: "دشتي",
+ slug: "Dashti",
+ province_id: 19,
+ latitude: 35.7845145,
+ longitude: 51.4347961,
+ },
+ {
+ id: 283,
+ title: "دلفان",
+ slug: "Delfan",
+ province_id: 16,
+ latitude: 38.940278,
+ longitude: 45.630833,
+ },
+ {
+ id: 5,
+ title: "دليجان",
+ slug: "Delijan",
+ province_id: 1,
+ latitude: 32.4750168,
+ longitude: 51.3050851,
+ },
+ {
+ id: 244,
+ title: "دلگان",
+ slug: "Dlgan",
+ province_id: 12,
+ latitude: 27.6077357,
+ longitude: 59.4720904,
+ },
+ {
+ id: 359,
+ title: "دماوند",
+ slug: "Damavand",
+ province_id: 24,
+ latitude: 35.9467494,
+ longitude: 52.1275481,
+ },
+ {
+ id: 304,
+ title: "دنا",
+ slug: "Dena",
+ province_id: 18,
+ latitude: 30.9516666,
+ longitude: 51.4375,
+ },
+ {
+ id: 229,
+ title: "دهاقان",
+ slug: "Dehaghan",
+ province_id: 11,
+ latitude: 31.94,
+ longitude: 51.647778,
+ },
+ {
+ id: 293,
+ title: "دهلران",
+ slug: "DEHLORAN",
+ province_id: 17,
+ latitude: 31.94,
+ longitude: 51.647778,
+ },
+ {
+ id: 261,
+ title: "دهگلان",
+ slug: "Dehgolan",
+ province_id: 13,
+ latitude: 31.94,
+ longitude: 51.647778,
+ },
+ {
+ id: 289,
+ title: "دوره",
+ slug: "the period",
+ province_id: 16,
+ latitude: 33.4955028,
+ longitude: 49.0631743,
+ },
+ {
+ id: 284,
+ title: "دورود",
+ slug: "Dorud",
+ province_id: 16,
+ latitude: 34.806667,
+ longitude: 46.488611,
+ },
+ {
+ id: 316,
+ title: "ديلم",
+ slug: "Daylam",
+ province_id: 19,
+ latitude: 30.1182632,
+ longitude: 50.2261227,
+ },
+ {
+ id: 258,
+ title: "ديواندره",
+ slug: "Divandareh",
+ province_id: 13,
+ latitude: 35.913889,
+ longitude: 47.023889,
+ },
+ {
+ id: 175,
+ title: "رابر",
+ slug: "Seal",
+ province_id: 9,
+ latitude: 37.940833,
+ longitude: 47.536667,
+ },
+ {
+ id: 33,
+ title: "رامسر",
+ slug: "Ramsar",
+ province_id: 3,
+ latitude: 36.903056,
+ longitude: 50.658333,
+ },
+ {
+ id: 120,
+ title: "رامشير",
+ slug: "Ramshir",
+ province_id: 7,
+ latitude: 30.4256219,
+ longitude: 48.1891185,
+ },
+ {
+ id: 111,
+ title: "رامهرمز",
+ slug: "Rāmhormoz",
+ province_id: 7,
+ latitude: 31.28,
+ longitude: 49.603611,
+ },
+ {
+ id: 401,
+ title: "راميان",
+ slug: "Ramian",
+ province_id: 28,
+ latitude: 33.2729171,
+ longitude: 52.1985314,
+ },
+ {
+ id: 168,
+ title: "راور",
+ slug: "Raver",
+ province_id: 9,
+ latitude: 31.265556,
+ longitude: 56.805556,
+ },
+ {
+ id: 365,
+ title: "رباطكريم",
+ slug: "Robat Karim",
+ province_id: 24,
+ latitude: 35.484722,
+ longitude: 51.082778,
+ },
+ {
+ id: 269,
+ title: "رزن",
+ slug: "Razan",
+ province_id: 14,
+ latitude: 35.386667,
+ longitude: 49.033889,
+ },
+ {
+ id: 154,
+ title: "رستم",
+ slug: "Rustam",
+ province_id: 8,
+ latitude: 37.2709152,
+ longitude: 49.5969146,
+ },
+ {
+ id: 17,
+ title: "رشت",
+ slug: "Rasht",
+ province_id: 2,
+ latitude: 37.280833,
+ longitude: 49.583056,
+ },
+ {
+ id: 196,
+ title: "رشتخوار",
+ slug: "Roshtkhar",
+ province_id: 10,
+ latitude: 34.974722,
+ longitude: 59.623611,
+ },
+ {
+ id: 26,
+ title: "رضوانشهر",
+ slug: "Rezvanshahr",
+ province_id: 2,
+ latitude: 36.694444,
+ longitude: 45.141667,
+ },
+ {
+ id: 161,
+ title: "رفسنجان",
+ slug: "Rafsanjan",
+ province_id: 9,
+ latitude: 32.4750168,
+ longitude: 51.3050851,
+ },
+ {
+ id: 101,
+ title: "روانسر",
+ slug: "Rawansar",
+ province_id: 6,
+ latitude: 33.220556,
+ longitude: 50.315,
+ },
+ {
+ id: 18,
+ title: "رودبار",
+ slug: "Rudbar",
+ province_id: 2,
+ latitude: 36.641111,
+ longitude: 52.9125,
+ },
+ {
+ id: 172,
+ title: "رودبارجنوب",
+ slug: "Rvdbarjnvb",
+ province_id: 9,
+ latitude: 36.8241289,
+ longitude: 49.4237274,
+ },
+ {
+ id: 19,
+ title: "رودسر",
+ slug: "Rudsar",
+ province_id: 2,
+ latitude: 37.1378415,
+ longitude: 50.2836199,
+ },
+ {
+ id: 290,
+ title: "رومشکان",
+ slug: "Rvmshkan",
+ province_id: 16,
+ latitude: 36.521111,
+ longitude: 46.208889,
+ },
+ {
+ id: 174,
+ title: "ريگان",
+ slug: "Reagan",
+ province_id: 9,
+ latitude: 27.6077357,
+ longitude: 59.4720904,
+ },
+ {
+ id: 236,
+ title: "زابل",
+ slug: "Zabul",
+ province_id: 12,
+ latitude: 31.028611,
+ longitude: 61.501111,
+ },
+ {
+ id: 237,
+ title: "زاهدان",
+ slug: "Zahedan",
+ province_id: 12,
+ latitude: 30.347296,
+ longitude: 48.2934004,
+ },
+ {
+ id: 204,
+ title: "زاوه",
+ slug: "Zavh",
+ province_id: 10,
+ latitude: 35.2747322,
+ longitude: 59.4677727,
+ },
+ {
+ id: 162,
+ title: "زرند",
+ slug: "Zarand",
+ province_id: 9,
+ latitude: 38.425117,
+ longitude: 45.769636,
+ },
+ {
+ id: 9,
+ title: "زرنديه",
+ slug: "Zarandieh",
+ province_id: 1,
+ latitude: 30.812778,
+ longitude: 56.563889,
+ },
+ {
+ id: 147,
+ title: "زرين دشت",
+ slug: "Zarrindasht",
+ province_id: 8,
+ latitude: 28.3545047,
+ longitude: 54.4178006,
+ },
+ {
+ id: 321,
+ title: "زنجان",
+ slug: "Zanjan",
+ province_id: 20,
+ latitude: 32.4750168,
+ longitude: 51.3050851,
+ },
+ {
+ id: 421,
+ title: "زيرکوه",
+ slug: "Zirkouh",
+ province_id: 30,
+ latitude: 31.1304036,
+ longitude: 53.2503736,
+ },
+ {
+ id: 34,
+ title: "سارئ",
+ slug: "Infectious",
+ province_id: 3,
+ latitude: 36.563333,
+ longitude: 53.06,
+ },
+ {
+ id: 278,
+ title: "سامان",
+ slug: "Order",
+ province_id: 15,
+ latitude: 31.94,
+ longitude: 51.647778,
+ },
+ {
+ id: 425,
+ title: "ساوجبلاغ",
+ slug: "Savojbolagh",
+ province_id: 31,
+ latitude: 38.3787941,
+ longitude: 47.4974359,
+ },
+ {
+ id: 6,
+ title: "ساوه",
+ slug: "Saveh",
+ province_id: 1,
+ latitude: 35.2747322,
+ longitude: 59.4677727,
+ },
+ {
+ id: 185,
+ title: "سبزوار",
+ slug: "Sabzevar",
+ province_id: 10,
+ latitude: 36.2151823,
+ longitude: 57.6678228,
+ },
+ {
+ id: 53,
+ title: "سراب",
+ slug: "Sarab",
+ province_id: 4,
+ latitude: 37.940833,
+ longitude: 47.536667,
+ },
+ {
+ id: 238,
+ title: "سراوان",
+ slug: "Saravan",
+ province_id: 12,
+ latitude: 33.860278,
+ longitude: 58.521667,
+ },
+ {
+ id: 418,
+ title: "سرايان",
+ slug: "Writers",
+ province_id: 30,
+ latitude: 33.860278,
+ longitude: 58.521667,
+ },
+ {
+ id: 240,
+ title: "سرباز",
+ slug: "Soldier",
+ province_id: 12,
+ latitude: 37.940833,
+ longitude: 47.536667,
+ },
+ {
+ id: 415,
+ title: "سربيشه",
+ slug: "Sarbishe",
+ province_id: 30,
+ latitude: 32.575556,
+ longitude: 59.798333,
+ },
+ {
+ id: 193,
+ title: "سرخس",
+ slug: "Fern",
+ province_id: 10,
+ latitude: 37.940833,
+ longitude: 47.536667,
+ },
+ {
+ id: 334,
+ title: "سرخه",
+ slug: "Sorkhe",
+ province_id: 21,
+ latitude: 36.545,
+ longitude: 61.157778,
+ },
+ {
+ id: 74,
+ title: "سردشت",
+ slug: "Sardasht",
+ province_id: 5,
+ latitude: 36.155278,
+ longitude: 45.478889,
+ },
+ {
+ id: 260,
+ title: "سروآباد",
+ slug: "Sarvabad",
+ province_id: 13,
+ latitude: 37.85,
+ longitude: 46.833333,
+ },
+ {
+ id: 153,
+ title: "سروستان",
+ slug: "Sarvestan",
+ province_id: 8,
+ latitude: 33.376111,
+ longitude: 52.369444,
+ },
+ {
+ id: 91,
+ title: "سرپل ذهاب",
+ slug: "Sarpolzohab",
+ province_id: 6,
+ latitude: 34.461111,
+ longitude: 45.862778,
+ },
+ {
+ id: 254,
+ title: "سقز",
+ slug: "Turpentine",
+ province_id: 13,
+ latitude: 36.246389,
+ longitude: 46.266389,
+ },
+ {
+ id: 288,
+ title: "سلسله",
+ slug: "Series",
+ province_id: 16,
+ latitude: 32.045776,
+ longitude: 34.751639,
+ },
+ {
+ id: 75,
+ title: "سلماس",
+ slug: "Salmas",
+ province_id: 5,
+ latitude: 38.197222,
+ longitude: 44.765278,
+ },
+ {
+ id: 328,
+ title: "سمنان",
+ slug: "Semnan",
+ province_id: 21,
+ latitude: 35.2255585,
+ longitude: 54.4342138,
+ },
+ {
+ id: 213,
+ title: "سميرم",
+ slug: "Semirom",
+ province_id: 11,
+ latitude: 31.3988346,
+ longitude: 51.567593,
+ },
+ {
+ id: 92,
+ title: "سنقر",
+ slug: "Falcon",
+ province_id: 6,
+ latitude: 34.783611,
+ longitude: 47.600278,
+ },
+ {
+ id: 255,
+ title: "سنندج",
+ slug: "Sanandaj",
+ province_id: 13,
+ latitude: 35.3218748,
+ longitude: 46.9861647,
+ },
+ {
+ id: 35,
+ title: "سوادكوه",
+ slug: "Savadkooh",
+ province_id: 3,
+ },
+ {
+ id: 163,
+ title: "سيرجان",
+ slug: "Sirjan",
+ province_id: 9,
+ },
+ {
+ id: 299,
+ title: "سيروان",
+ slug: "Sirvan",
+ province_id: 17,
+ },
+ {
+ id: 134,
+ title: "سپيدان",
+ slug: "Sepidan",
+ province_id: 8,
+ },
+ {
+ id: 112,
+ title: "شادگان",
+ slug: "Shadegan",
+ province_id: 7,
+ },
+ {
+ id: 7,
+ title: "شازند",
+ slug: "Shazand",
+ province_id: 1,
+ },
+ {
+ id: 329,
+ title: "شاهرود",
+ slug: "Anymore",
+ province_id: 21,
+ },
+ {
+ id: 81,
+ title: "شاهين دژ",
+ slug: "Shahindezh",
+ province_id: 5,
+ },
+ {
+ id: 224,
+ title: "شاهين شهروميمه",
+ slug: "Shahin Shhrvmymh",
+ province_id: 11,
+ },
+ {
+ id: 60,
+ title: "شبستر",
+ slug: "Shabestar",
+ province_id: 4,
+ },
+ {
+ id: 24,
+ title: "شفت",
+ slug: "Shafts",
+ province_id: 2,
+ },
+ {
+ id: 361,
+ title: "شميرانات",
+ slug: "Shemiranat",
+ province_id: 24,
+ },
+ {
+ id: 164,
+ title: "شهربابك",
+ slug: "Shahrbabak",
+ province_id: 9,
+ },
+ {
+ id: 217,
+ title: "شهرضا",
+ slug: "Branch",
+ province_id: 11,
+ },
+ {
+ id: 272,
+ title: "شهركرد",
+ slug: "Kord",
+ province_id: 15,
+ },
+ {
+ id: 363,
+ title: "شهريار",
+ slug: "Sh.",
+ province_id: 24,
+ },
+ {
+ id: 115,
+ title: "شوش",
+ slug: "Susa",
+ province_id: 7,
+ },
+ {
+ id: 113,
+ title: "شوشتر",
+ slug: "Shushtar",
+ province_id: 7,
+ },
+ {
+ id: 87,
+ title: "شوط",
+ slug: "Round",
+ province_id: 5,
+ },
+ {
+ id: 135,
+ title: "شيراز",
+ slug: "Shiraz",
+ province_id: 8,
+ },
+ {
+ id: 408,
+ title: "شيروان",
+ slug: "Shirvan",
+ province_id: 29,
+ },
+ {
+ id: 97,
+ title: "صحنه",
+ slug: "Scene",
+ province_id: 6,
+ },
+ {
+ id: 20,
+ title: "صومعه سرا",
+ slug: "Somesara",
+ province_id: 2,
+ },
+ {
+ id: 324,
+ title: "طارم",
+ slug: "Tarom",
+ province_id: 20,
+ },
+ {
+ id: 427,
+ title: "طالقان",
+ slug: "Taleghan",
+ province_id: 31,
+ },
+ {
+ id: 423,
+ title: "طبس",
+ slug: "Peaks",
+ province_id: 30,
+ },
+ {
+ id: 16,
+ title: "طوالش",
+ slug: "Tvalsh",
+ province_id: 2,
+ },
+ {
+ id: 46,
+ title: "عباس آباد",
+ slug: "Abbas Abad",
+ province_id: 3,
+ },
+ {
+ id: 69,
+ title: "عجب شير",
+ slug: "Ajabshir",
+ province_id: 4,
+ },
+ {
+ id: 393,
+ title: "علي آباد",
+ slug: "Ali Abad",
+ province_id: 28,
+ },
+ {
+ id: 169,
+ title: "عنبرآباد",
+ slug: "Anbarabad",
+ province_id: 9,
+ },
+ {
+ id: 273,
+ title: "فارسان",
+ slug: "Farsan",
+ province_id: 15,
+ },
+ {
+ id: 409,
+ title: "فاروج",
+ slug: "Faruj",
+ province_id: 29,
+ },
+ {
+ id: 150,
+ title: "فراشبند",
+ slug: "Farashband",
+ province_id: 8,
+ },
+ {
+ id: 12,
+ title: "فراهان",
+ slug: "FARAHAN",
+ province_id: 1,
+ },
+ {
+ id: 419,
+ title: "فردوس",
+ slug: "Paradise",
+ province_id: 30,
+ },
+ {
+ id: 429,
+ title: "فرديس",
+ slug: "Fardis",
+ province_id: 31,
+ },
+ {
+ id: 214,
+ title: "فريدن",
+ slug: "Frieden",
+ province_id: 11,
+ },
+ {
+ id: 215,
+ title: "فريدونشهر",
+ slug: "Fereidunshahr",
+ province_id: 11,
+ },
+ {
+ id: 45,
+ title: "فريدونكنار",
+ slug: "Fereidoon'kenar",
+ province_id: 3,
+ },
+ {
+ id: 194,
+ title: "فريمان",
+ slug: "FARIMAN",
+ province_id: 10,
+ },
+ {
+ id: 136,
+ title: "فسا",
+ slug: "Fasa",
+ province_id: 8,
+ },
+ {
+ id: 216,
+ title: "فلاورجان",
+ slug: "Falavarjan",
+ province_id: 11,
+ },
+ {
+ id: 251,
+ title: "فنوج",
+ slug: "Fenouj",
+ province_id: 12,
+ },
+ {
+ id: 21,
+ title: "فومن",
+ slug: "Fooman",
+ province_id: 2,
+ },
+ {
+ id: 137,
+ title: "فيروزآباد",
+ slug: "Firozabad",
+ province_id: 8,
+ },
+ {
+ id: 367,
+ title: "فيروزكوه",
+ slug: "Firouzkouh",
+ province_id: 24,
+ },
+ {
+ id: 36,
+ title: "قائم شهر",
+ slug: "Qaemshahr",
+ province_id: 3,
+ },
+ {
+ id: 416,
+ title: "قائنات",
+ slug: "Ghaenat",
+ province_id: 30,
+ },
+ {
+ id: 256,
+ title: "قروه",
+ slug: "Qorveh",
+ province_id: 13,
+ },
+ {
+ id: 387,
+ title: "قزوين",
+ slug: "Qazvin",
+ province_id: 27,
+ },
+ {
+ id: 348,
+ title: "قشم",
+ slug: "Qeshm",
+ province_id: 23,
+ },
+ {
+ id: 93,
+ title: "قصرشيرين",
+ slug: "Qasr-e Shirin",
+ province_id: 6,
+ },
+ {
+ id: 173,
+ title: "قلعه گنج",
+ slug: "Castle treasure",
+ province_id: 9,
+ },
+ {
+ id: 384,
+ title: "قم",
+ slug: "Qom",
+ province_id: 26,
+ },
+ {
+ id: 186,
+ title: "قوچان",
+ slug: "Ghoochan",
+ province_id: 10,
+ },
+ {
+ id: 148,
+ title: "قيروکارزين",
+ slug: "Qyrvkarzyn",
+ province_id: 8,
+ },
+ {
+ id: 187,
+ title: "كاشمر",
+ slug: "Kashmar",
+ province_id: 10,
+ },
+ {
+ id: 259,
+ title: "كامياران",
+ slug: "Kamyaran",
+ province_id: 13,
+ },
+ {
+ id: 266,
+ title: "كبودرآهنگ",
+ slug: "Kaboudarahang",
+ province_id: 14,
+ },
+ {
+ id: 165,
+ title: "كرمان",
+ slug: "Kerman",
+ province_id: 9,
+ },
+ {
+ id: 197,
+ title: "كلات",
+ slug: "Kalat",
+ province_id: 10,
+ },
+ {
+ id: 399,
+ title: "كلاله",
+ slug: "Stigma",
+ province_id: 28,
+ },
+ {
+ id: 314,
+ title: "كنگان",
+ slug: "Kangan",
+ province_id: 19,
+ },
+ {
+ id: 166,
+ title: "كهنوج",
+ slug: "Kahnooj",
+ province_id: 9,
+ },
+ {
+ id: 380,
+ title: "كوثر",
+ slug: "Kosar",
+ province_id: 25,
+ },
+ {
+ id: 171,
+ title: "كوهبنان",
+ slug: "Kuhbanan",
+ province_id: 9,
+ },
+ {
+ id: 276,
+ title: "كوهرنگ",
+ slug: "Kouhrang",
+ province_id: 15,
+ },
+ {
+ id: 139,
+ title: "لارستان",
+ slug: "LARESTAN",
+ province_id: 8,
+ },
+ {
+ id: 118,
+ title: "لالي",
+ slug: "Lali",
+ province_id: 7,
+ },
+ {
+ id: 143,
+ title: "لامرد",
+ slug: "Lamerd",
+ province_id: 8,
+ },
+ {
+ id: 23,
+ title: "لاهيجان",
+ slug: "LAHIJAN",
+ province_id: 2,
+ },
+ {
+ id: 274,
+ title: "لردگان",
+ slug: "LORDEGAN",
+ province_id: 15,
+ },
+ {
+ id: 220,
+ title: "لنجان",
+ slug: "Lenjan",
+ province_id: 11,
+ },
+ {
+ id: 308,
+ title: "لنده",
+ slug: "Landhi",
+ province_id: 18,
+ },
+ {
+ id: 22,
+ title: "لنگرود",
+ slug: "Langerud",
+ province_id: 2,
+ },
+ {
+ id: 28,
+ title: "ماسال",
+ slug: "Masal",
+ province_id: 2,
+ },
+ {
+ id: 76,
+ title: "ماكو",
+ slug: "Maku",
+ province_id: 5,
+ },
+ {
+ id: 410,
+ title: "مانه وسملقان",
+ slug: "Manet Vsmlqan",
+ province_id: 29,
+ },
+ {
+ id: 325,
+ title: "ماهنشان",
+ slug: "Mahneshan",
+ province_id: 20,
+ },
+ {
+ id: 225,
+ title: "مبارکه",
+ slug: "Mobarakeh",
+ province_id: 11,
+ },
+ {
+ id: 8,
+ title: "محلات",
+ slug: "Mahalat",
+ province_id: 1,
+ },
+ {
+ id: 40,
+ title: "محمودآباد",
+ slug: "Mahmudabad",
+ province_id: 3,
+ },
+ {
+ id: 54,
+ title: "مراغه",
+ slug: "Maragheh",
+ province_id: 4,
+ },
+ {
+ id: 55,
+ title: "مرند",
+ slug: "Marand",
+ province_id: 4,
+ },
+ {
+ id: 140,
+ title: "مرودشت",
+ slug: "MARVDASHT",
+ province_id: 8,
+ },
+ {
+ id: 257,
+ title: "مريوان",
+ slug: "Marivan",
+ province_id: 13,
+ },
+ {
+ id: 114,
+ title: "مسجدسليمان",
+ slug: "Masjed Soleiman",
+ province_id: 7,
+ },
+ {
+ id: 189,
+ title: "مشهد",
+ slug: "Mashhad",
+ province_id: 10,
+ },
+ {
+ id: 377,
+ title: "مشگين شهر",
+ slug: "Meshkinshar",
+ province_id: 25,
+ },
+ {
+ id: 369,
+ title: "ملارد",
+ slug: "Mallard",
+ province_id: 24,
+ },
+ {
+ id: 263,
+ title: "ملاير",
+ slug: "Malayer",
+ province_id: 14,
+ },
+ {
+ id: 64,
+ title: "ملکان",
+ slug: "Malakan",
+ province_id: 4,
+ },
+ {
+ id: 141,
+ title: "ممسني",
+ slug: "Mamasani",
+ province_id: 8,
+ },
+ {
+ id: 170,
+ title: "منوجان",
+ slug: "Manoujan",
+ province_id: 9,
+ },
+ {
+ id: 199,
+ title: "مه ولات",
+ slug: "Mahvelat",
+ province_id: 10,
+ },
+ {
+ id: 77,
+ title: "مهاباد",
+ slug: "Mahabad",
+ province_id: 5,
+ },
+ {
+ id: 331,
+ title: "مهدئ شهر",
+ slug: "Mehdi City",
+ province_id: 21,
+ },
+ {
+ id: 149,
+ title: "مهر",
+ slug: "stamp",
+ province_id: 8,
+ },
+ {
+ id: 295,
+ title: "مهران",
+ slug: "Mehran",
+ province_id: 17,
+ },
+ {
+ id: 245,
+ title: "مهرستان",
+ slug: "Your spouse",
+ province_id: 12,
+ },
+ {
+ id: 338,
+ title: "مهريز",
+ slug: "MEHRIZ",
+ province_id: 22,
+ },
+ {
+ id: 78,
+ title: "مياندوآب",
+ slug: "Miandoab",
+ province_id: 5,
+ },
+ {
+ id: 56,
+ title: "ميانه",
+ slug: "Mianeh",
+ province_id: 4,
+ },
+ {
+ id: 340,
+ title: "ميبد",
+ slug: "Meibod",
+ province_id: 22,
+ },
+ {
+ id: 349,
+ title: "ميناب",
+ slug: "Minab",
+ province_id: 23,
+ },
+ {
+ id: 397,
+ title: "مينودشت",
+ slug: "Minoodasht",
+ province_id: 28,
+ },
+ {
+ id: 222,
+ title: "نجف آباد",
+ slug: "Najaf Abad",
+ province_id: 11,
+ },
+ {
+ id: 178,
+ title: "نرماشير",
+ slug: "Narmashir",
+ province_id: 9,
+ },
+ {
+ id: 223,
+ title: "نطنز",
+ slug: "Natanz",
+ province_id: 11,
+ },
+ {
+ id: 426,
+ title: "نظرآباد",
+ slug: "Nazarabad",
+ province_id: 31,
+ },
+ {
+ id: 79,
+ title: "نقده",
+ slug: "Tinsel",
+ province_id: 5,
+ },
+ {
+ id: 381,
+ title: "نمين",
+ slug: "Namin",
+ province_id: 25,
+ },
+ {
+ id: 264,
+ title: "نهاوند",
+ slug: "Skinheads",
+ province_id: 14,
+ },
+ {
+ id: 417,
+ title: "نهبندان",
+ slug: "Nehbandan",
+ province_id: 30,
+ },
+ {
+ id: 37,
+ title: "نور",
+ slug: "Nur",
+ province_id: 3,
+ },
+ {
+ id: 38,
+ title: "نوشهر",
+ slug: "Noshahr",
+ province_id: 3,
+ },
+ {
+ id: 382,
+ title: "نير",
+ slug: "Nir",
+ province_id: 25,
+ },
+ {
+ id: 190,
+ title: "نيشابور",
+ slug: "Neyshabur",
+ province_id: 10,
+ },
+ {
+ id: 239,
+ title: "نيك شهر",
+ slug: "Nikshahr",
+ province_id: 12,
+ },
+ {
+ id: 98,
+ title: "هرسين",
+ slug: "Harsin",
+ province_id: 6,
+ },
+ {
+ id: 62,
+ title: "هريس",
+ slug: "Harris",
+ province_id: 4,
+ },
+ {
+ id: 57,
+ title: "هشترود",
+ slug: "Hashtrood",
+ province_id: 4,
+ },
+ {
+ id: 265,
+ title: "همدان",
+ slug: "Hamedan",
+ province_id: 14,
+ },
+ {
+ id: 119,
+ title: "هنديجان",
+ slug: "Hendijan",
+ province_id: 7,
+ },
+ {
+ id: 362,
+ title: "ورامين",
+ slug: "Varamin",
+ province_id: 24,
+ },
+ {
+ id: 68,
+ title: "ورزقان",
+ slug: "Varzeghan",
+ province_id: 4,
+ },
+ {
+ id: 379,
+ title: "پارس آباد",
+ slug: "Pars Abad",
+ province_id: 25,
+ },
+ {
+ id: 355,
+ title: "پارسيان",
+ slug: "Parsian",
+ province_id: 23,
+ },
+ {
+ id: 151,
+ title: "پاسارگاد",
+ slug: "Pasargad",
+ province_id: 8,
+ },
+ {
+ id: 366,
+ title: "پاكدشت",
+ slug: "Pakdasht",
+ province_id: 24,
+ },
+ {
+ id: 90,
+ title: "پاوه",
+ slug: "Pave",
+ province_id: 6,
+ },
+ {
+ id: 372,
+ title: "پرديس",
+ slug: "College",
+ province_id: 24,
+ },
+ {
+ id: 287,
+ title: "پلدختر",
+ slug: "Poldokhtar",
+ province_id: 16,
+ },
+ {
+ id: 85,
+ title: "پلدشت",
+ slug: "Demands",
+ province_id: 5,
+ },
+ {
+ id: 72,
+ title: "پيرانشهر",
+ slug: "Piranshar",
+ province_id: 5,
+ },
+ {
+ id: 228,
+ title: "چادگان",
+ slug: "Chadegan",
+ province_id: 11,
+ },
+ {
+ id: 67,
+ title: "چاراويماق",
+ slug: "Charoymagh",
+ province_id: 4,
+ },
+ {
+ id: 84,
+ title: "چالدران",
+ slug: "Chalderan",
+ province_id: 5,
+ },
+ {
+ id: 42,
+ title: "چالوس",
+ slug: "Chalus",
+ province_id: 3,
+ },
+ {
+ id: 234,
+ title: "چابهار",
+ slug: "ChaBahar",
+ province_id: 12,
+ },
+ {
+ id: 191,
+ title: "چناران",
+ slug: "CHENARAN",
+ province_id: 10,
+ },
+ {
+ id: 128,
+ title: "کارون",
+ slug: "Karun",
+ province_id: 7,
+ },
+ {
+ id: 138,
+ title: "کازرون",
+ slug: "Kazeroon",
+ province_id: 8,
+ },
+ {
+ id: 218,
+ title: "کاشان",
+ slug: "Kashan",
+ province_id: 11,
+ },
+ {
+ id: 424,
+ title: "کرج",
+ slug: "Karaj",
+ province_id: 31,
+ },
+ {
+ id: 89,
+ title: "کرمانشاه",
+ slug: "Kermanshah",
+ province_id: 6,
+ },
+ {
+ id: 50,
+ title: "کلاردشت",
+ slug: "Kelardasht",
+ province_id: 3,
+ },
+ {
+ id: 61,
+ title: "کليبر",
+ slug: "Kalibar",
+ province_id: 4,
+ },
+ {
+ id: 10,
+ title: "کميجان",
+ slug: "Komijan",
+ province_id: 1,
+ },
+ {
+ id: 94,
+ title: "کنگاور",
+ slug: "Kangavar",
+ province_id: 6,
+ },
+ {
+ id: 156,
+ title: "کوار",
+ slug: "Kovar",
+ province_id: 8,
+ },
+ {
+ id: 285,
+ title: "کوهدشت",
+ slug: "Kuhdasht",
+ province_id: 16,
+ },
+ {
+ id: 121,
+ title: "گتوند",
+ slug: "Scroll down",
+ province_id: 7,
+ },
+ {
+ id: 330,
+ title: "گرمسار",
+ slug: "Garmsar",
+ province_id: 21,
+ },
+ {
+ id: 411,
+ title: "گرمه",
+ slug: "it is hot",
+ province_id: 29,
+ },
+ {
+ id: 378,
+ title: "گرمي",
+ slug: "G",
+ province_id: 25,
+ },
+ {
+ id: 395,
+ title: "گرگان",
+ slug: "Gorgan",
+ province_id: 2,
+ },
+ {
+ id: 44,
+ title: "گلوگاه",
+ slug: "Galugah",
+ province_id: 3,
+ },
+ {
+ id: 219,
+ title: "گلپايگان",
+ slug: "Golpaygan",
+ province_id: 11,
+ },
+ {
+ id: 188,
+ title: "گناباد",
+ slug: "GONABAD",
+ province_id: 10,
+ },
+ {
+ id: 315,
+ title: "گناوه",
+ slug: "Ganaveh",
+ province_id: 19,
+ },
+ {
+ id: 396,
+ title: "گنبدكاووس",
+ slug: "Gonbad",
+ province_id: 28,
+ },
+ {
+ id: 95,
+ title: "گيلانغرب",
+ slug: "Gilangharb",
+ province_id: 6,
+ },
+ {
+ id: 303,
+ title: "گچساران",
+ slug: "Gachsaran",
+ province_id: 18,
+ },
+ ];
+};
diff --git a/iranProvince.js b/iranProvince.js
new file mode 100644
index 0000000..5c47f30
--- /dev/null
+++ b/iranProvince.js
@@ -0,0 +1,221 @@
+export const iranProvince = () => {
+ return [
+ {
+ id: 4,
+ title: "آذربايجان شرقي",
+ slug: "East Azarbaijan",
+ latitude: 37.9035733,
+ longitude: 46.2682109,
+ },
+ {
+ id: 5,
+ title: "آذربايجان غربي",
+ slug: "Western Azerbaijan",
+ latitude: 37.9035733,
+ longitude: 46.2682109,
+ },
+ {
+ id: 25,
+ title: "اردبيل",
+ slug: "Ardabil",
+ latitude: 38.4853276,
+ longitude: 47.8911209,
+ },
+ {
+ id: 11,
+ title: "اصفهان",
+ slug: "Esfahan",
+ latitude: 32.6546275,
+ longitude: 51.6679826,
+ },
+ {
+ id: 31,
+ title: "البرز",
+ slug: "Alborz",
+ latitude: 35.9960467,
+ longitude: 50.9289246,
+ },
+ {
+ id: 17,
+ title: "ايلام",
+ slug: "Ilam",
+ latitude: 33.2957618,
+ longitude: 46.670534,
+ },
+ {
+ id: 19,
+ title: "بوشهر",
+ slug: "Bushehr",
+ latitude: 28.9233837,
+ longitude: 50.820314,
+ },
+ {
+ id: 24,
+ title: "تهران",
+ slug: "Tehran",
+ latitude: 35.696111,
+ longitude: 51.423056,
+ },
+ {
+ id: 30,
+ title: "خراسان جنوبي",
+ slug: "South Khorasan",
+ latitude: 32.5175643,
+ longitude: 59.1041758,
+ },
+ {
+ id: 10,
+ title: "خراسان رضوئ",
+ slug: "Khorasan Razavi",
+ latitude: 32.5175643,
+ longitude: 59.1041758,
+ },
+ {
+ id: 29,
+ title: "خراسان شمالي",
+ slug: "North Khorasan",
+ latitude: 37.4710353,
+ longitude: 57.1013188,
+ },
+ {
+ id: 7,
+ title: "خوزستان",
+ slug: "Khuzestan",
+ latitude: 31.4360149,
+ longitude: 49.041312,
+ },
+ {
+ id: 20,
+ title: "زنجان",
+ slug: "Zanjan",
+ latitude: 36.5018185,
+ longitude: 48.3988186,
+ },
+ {
+ id: 21,
+ title: "سمنان",
+ slug: "Semnan",
+ latitude: 35.2255585,
+ longitude: 54.4342138,
+ },
+ {
+ id: 12,
+ title: "سيستان وبلوچستان",
+ slug: "Sistan and Baluchistan",
+ latitude: 27.5299906,
+ longitude: 60.5820676,
+ },
+ {
+ id: 8,
+ title: "فارس",
+ slug: "Fars",
+ latitude: 29.1043813,
+ longitude: 53.045893,
+ },
+ {
+ id: 27,
+ title: "قزوين",
+ slug: "Qazvin",
+ latitude: 36.0881317,
+ longitude: 49.8547266,
+ },
+ {
+ id: 26,
+ title: "قم",
+ slug: "Qom",
+ latitude: 34.6399443,
+ longitude: 50.8759419,
+ },
+ {
+ id: 13,
+ title: "كردستان",
+ slug: "Kurdistan",
+ latitude: 31.4360149,
+ longitude: 49.041312,
+ },
+ {
+ id: 9,
+ title: "كرمان",
+ slug: "Kerman",
+ latitude: 30.2839379,
+ longitude: 57.0833628,
+ },
+ {
+ id: 6,
+ title: "کرمانشاه",
+ slug: "Kermanshah",
+ latitude: 34.314167,
+ longitude: 47.065,
+ },
+ {
+ id: 18,
+ title: "كهگيلويه وبويراحمد",
+ slug: "Kohgiloyeh Boyerahmad",
+ latitude: 30.6509479,
+ longitude: 51.60525,
+ },
+ {
+ id: 28,
+ title: "گلستان",
+ slug: "Golestan",
+ latitude: 37.2898123,
+ longitude: 55.1375834,
+ },
+ {
+ id: 2,
+ title: "گيلان",
+ slug: "Gilan",
+ latitude: 37.2809,
+ longitude: 49.5924,
+ },
+ {
+ id: 16,
+ title: "لرستان",
+ slug: "Lorestan",
+ latitude: 31.4360149,
+ longitude: 49.041312,
+ },
+ {
+ id: 3,
+ title: "مازندران",
+ slug: "Mazandaran",
+ latitude: 36.2262393,
+ longitude: 52.5318604,
+ },
+ {
+ id: 1,
+ title: "مرکزی",
+ slug: "Markazi",
+ latitude: 34.6123,
+ longitude: 49.8547,
+ },
+ {
+ id: 23,
+ title: "هرمزگان",
+ slug: "Hormozgan",
+ latitude: 30.2839379,
+ longitude: 57.0833628,
+ },
+ {
+ id: 14,
+ title: "همدان",
+ slug: "Hamedan",
+ latitude: 27.138723,
+ longitude: 55.1375834,
+ },
+ {
+ id: 15,
+ title: "چهارمحال وبختياری",
+ slug: "Chaharmahal and Bakhtiari ",
+ latitude: 31.9614348,
+ longitude: 50.8456323,
+ },
+ {
+ id: 22,
+ title: "یزد",
+ slug: "Yazd",
+ latitude: 0,
+ longitude: 0,
+ },
+ ];
+};
diff --git a/jsconfig.json b/jsconfig.json
index b8d6842..b365a7d 100644
--- a/jsconfig.json
+++ b/jsconfig.json
@@ -1,7 +1,18 @@
{
"compilerOptions": {
+ "baseUrl": ".",
+ "module": "commonjs",
+ "target": "es2020",
"paths": {
- "@/*": ["./src/*"]
+ "@comp/*": ["components/*"],
+ "@styles/*": ["styles/*"],
+ "@assets/*": ["assets/*"],
+ "@ctx/*": ["Contexts/*"],
+ "@img/*": ["public/images/*"],
+ "@layout/*": ["layout/*"],
+ "@plugins/*": ["plugins/*"]
}
- }
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.js", "**/*.jsx"],
+ "exclude": ["node_modules"]
}
diff --git a/next.config.mjs b/next.config.mjs
index 4678774..dd73203 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -1,4 +1,16 @@
/** @type {import('next').NextConfig} */
-const nextConfig = {};
+const nextConfig = {
+ reactStrictMode: false, // React Strict Mode is off
+ images: {
+ minimumCacheTTL: 2592000,
+ domains: ["storage.vesmeh.com"],
+ remotePatterns: [
+ {
+ protocol: "https",
+ hostname: "storage.vesmeh.com",
+ },
+ ],
+ },
+};
export default nextConfig;
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..0be361f
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,5879 @@
+{
+ "name": "bonsai",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "bonsai",
+ "version": "0.1.0",
+ "dependencies": {
+ "@headlessui/react": "^1.7.17",
+ "axios": "^1.6.5",
+ "framer-motion": "^10.16.16",
+ "jalali-moment": "^3.3.11",
+ "next": "14.1.1",
+ "nextjs-toploader": "^1.6.6",
+ "rc-slider": "^10.5.0",
+ "react": "^18",
+ "react-dom": "^18",
+ "react-image-lightbox": "^5.1.4",
+ "react-infinite-scroll-component": "^6.1.0",
+ "react-spring-bottom-sheet": "^3.4.1",
+ "react-toastify": "^9.1.3",
+ "simple-react-validator": "^1.6.2",
+ "swiper": "^11.0.5"
+ },
+ "devDependencies": {
+ "autoprefixer": "^10.0.1",
+ "eslint": "^8",
+ "eslint-config-next": "14.1.1",
+ "postcss": "^8",
+ "tailwindcss": "^3.3.0"
+ }
+ },
+ "node_modules/@aashutoshrathi/word-wrap": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
+ "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@alloc/quick-lru": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.24.4",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.4.tgz",
+ "integrity": "sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==",
+ "dependencies": {
+ "regenerator-runtime": "^0.14.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emotion/is-prop-valid": {
+ "version": "0.8.8",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
+ "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
+ "optional": true,
+ "dependencies": {
+ "@emotion/memoize": "0.7.4"
+ }
+ },
+ "node_modules/@emotion/memoize": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
+ "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
+ "optional": true
+ },
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
+ "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
+ "dev": true,
+ "dependencies": {
+ "eslint-visitor-keys": "^3.3.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ }
+ },
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.10.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
+ "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
+ "dev": true,
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@eslint/eslintrc": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
+ "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
+ "dev": true,
+ "dependencies": {
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.6.0",
+ "globals": "^13.19.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "8.57.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
+ "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
+ "dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@headlessui/react": {
+ "version": "1.7.19",
+ "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.19.tgz",
+ "integrity": "sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==",
+ "dependencies": {
+ "@tanstack/react-virtual": "^3.0.0-beta.60",
+ "client-only": "^0.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "react-dom": "^16 || ^17 || ^18"
+ }
+ },
+ "node_modules/@humanwhocodes/config-array": {
+ "version": "0.11.14",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
+ "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
+ "dev": true,
+ "dependencies": {
+ "@humanwhocodes/object-schema": "^2.0.2",
+ "debug": "^4.3.1",
+ "minimatch": "^3.0.5"
+ },
+ "engines": {
+ "node": ">=10.10.0"
+ }
+ },
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/object-schema": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
+ "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
+ "dev": true
+ },
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
+ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/set-array": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.4.15",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
+ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
+ "dev": true
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@juggle/resize-observer": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz",
+ "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA=="
+ },
+ "node_modules/@next/env": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.1.tgz",
+ "integrity": "sha512-7CnQyD5G8shHxQIIg3c7/pSeYFeMhsNbpU/bmvH7ZnDql7mNRgg8O2JZrhrc/soFnfBnKP4/xXNiiSIPn2w8gA=="
+ },
+ "node_modules/@next/eslint-plugin-next": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.1.tgz",
+ "integrity": "sha512-NP1WoGFnFLpqqCWgGFjnn/sTwUExdPyjeFKRdQP1X/bL/tjAQ/TXDmYqw6vzGaP5NaZ2u6xzg+N/0nd7fOPOGQ==",
+ "dev": true,
+ "dependencies": {
+ "glob": "10.3.10"
+ }
+ },
+ "node_modules/@next/swc-darwin-arm64": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.1.tgz",
+ "integrity": "sha512-yDjSFKQKTIjyT7cFv+DqQfW5jsD+tVxXTckSe1KIouKk75t1qZmj/mV3wzdmFb0XHVGtyRjDMulfVG8uCKemOQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.1.tgz",
+ "integrity": "sha512-KCQmBL0CmFmN8D64FHIZVD9I4ugQsDBBEJKiblXGgwn7wBCSe8N4Dx47sdzl4JAg39IkSN5NNrr8AniXLMb3aw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.1.tgz",
+ "integrity": "sha512-YDQfbWyW0JMKhJf/T4eyFr4b3tceTorQ5w2n7I0mNVTFOvu6CGEzfwT3RSAQGTi/FFMTFcuspPec/7dFHuP7Eg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.1.tgz",
+ "integrity": "sha512-fiuN/OG6sNGRN/bRFxRvV5LyzLB8gaL8cbDH5o3mEiVwfcMzyE5T//ilMmaTrnA8HLMS6hoz4cHOu6Qcp9vxgQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.1.tgz",
+ "integrity": "sha512-rv6AAdEXoezjbdfp3ouMuVqeLjE1Bin0AuE6qxE6V9g3Giz5/R3xpocHoAi7CufRR+lnkuUjRBn05SYJ83oKNQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.1.tgz",
+ "integrity": "sha512-YAZLGsaNeChSrpz/G7MxO3TIBLaMN8QWMr3X8bt6rCvKovwU7GqQlDu99WdvF33kI8ZahvcdbFsy4jAFzFX7og==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.1.tgz",
+ "integrity": "sha512-1L4mUYPBMvVDMZg1inUYyPvFSduot0g73hgfD9CODgbr4xiTYe0VOMTZzaRqYJYBA9mana0x4eaAaypmWo1r5A==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-ia32-msvc": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.1.tgz",
+ "integrity": "sha512-jvIE9tsuj9vpbbXlR5YxrghRfMuG0Qm/nZ/1KDHc+y6FpnZ/apsgh+G6t15vefU0zp3WSpTMIdXRUsNl/7RSuw==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.1.tgz",
+ "integrity": "sha512-S6K6EHDU5+1KrBDLko7/c1MNy/Ya73pIAmvKeFwsF4RmBFJSO7/7YeD4FnZ4iBdzE69PpQ4sOMU9ORKeNuxe8A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@reach/portal": {
+ "version": "0.13.2",
+ "resolved": "https://registry.npmjs.org/@reach/portal/-/portal-0.13.2.tgz",
+ "integrity": "sha512-g74BnCdtuTGthzzHn2cWW+bcyIYb0iIE/yRsm89i8oNzNgpopbkh9UY8TPbhNlys52h7U60s4kpRTmcq+JqsTA==",
+ "dependencies": {
+ "@reach/utils": "0.13.2",
+ "tslib": "^2.1.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
+ }
+ },
+ "node_modules/@reach/utils": {
+ "version": "0.13.2",
+ "resolved": "https://registry.npmjs.org/@reach/utils/-/utils-0.13.2.tgz",
+ "integrity": "sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==",
+ "dependencies": {
+ "@types/warning": "^3.0.0",
+ "tslib": "^2.1.0",
+ "warning": "^4.0.3"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || 17.x",
+ "react-dom": "^16.8.0 || 17.x"
+ }
+ },
+ "node_modules/@rushstack/eslint-patch": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.2.tgz",
+ "integrity": "sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==",
+ "dev": true
+ },
+ "node_modules/@swc/helpers": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz",
+ "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==",
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@tanstack/react-virtual": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.4.0.tgz",
+ "integrity": "sha512-GZN4xn/Tg5w7gvYeVcMVCeL4pEyUhvg+Cp6KX2Z01C4FRNxIWMgIQ9ibgMarNQfo+gt0PVLcEER4A9sNv/jlow==",
+ "dependencies": {
+ "@tanstack/virtual-core": "3.4.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@tanstack/virtual-core": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.4.0.tgz",
+ "integrity": "sha512-75jXqXxqq5M5Veb9KP1STi8kA5u408uOOAefk2ftHDGCpUk3RP6zX++QqfbmHJTBiU72NQ+ghgCZVts/Wocz8Q==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ }
+ },
+ "node_modules/@types/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
+ "dev": true
+ },
+ "node_modules/@types/nprogress": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@types/nprogress/-/nprogress-0.2.3.tgz",
+ "integrity": "sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA=="
+ },
+ "node_modules/@types/warning": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz",
+ "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q=="
+ },
+ "node_modules/@typescript-eslint/parser": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz",
+ "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/scope-manager": "6.21.0",
+ "@typescript-eslint/types": "6.21.0",
+ "@typescript-eslint/typescript-estree": "6.21.0",
+ "@typescript-eslint/visitor-keys": "6.21.0",
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^7.0.0 || ^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@typescript-eslint/scope-manager": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz",
+ "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "6.21.0",
+ "@typescript-eslint/visitor-keys": "6.21.0"
+ },
+ "engines": {
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/types": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz",
+ "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==",
+ "dev": true,
+ "engines": {
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz",
+ "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "6.21.0",
+ "@typescript-eslint/visitor-keys": "6.21.0",
+ "debug": "^4.3.4",
+ "globby": "^11.1.0",
+ "is-glob": "^4.0.3",
+ "minimatch": "9.0.3",
+ "semver": "^7.5.4",
+ "ts-api-utils": "^1.0.1"
+ },
+ "engines": {
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
+ "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz",
+ "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "6.21.0",
+ "eslint-visitor-keys": "^3.4.1"
+ },
+ "engines": {
+ "node": "^16.0.0 || >=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@ungap/structured-clone": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
+ "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
+ "dev": true
+ },
+ "node_modules/@xstate/react": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/@xstate/react/-/react-1.6.3.tgz",
+ "integrity": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==",
+ "dependencies": {
+ "use-isomorphic-layout-effect": "^1.0.0",
+ "use-subscription": "^1.3.0"
+ },
+ "peerDependencies": {
+ "@xstate/fsm": "^1.0.0",
+ "react": "^16.8.0 || ^17.0.0",
+ "xstate": "^4.11.0"
+ },
+ "peerDependenciesMeta": {
+ "@xstate/fsm": {
+ "optional": true
+ },
+ "xstate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/acorn": {
+ "version": "8.11.3",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
+ "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
+ "dev": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "dependencies": {
+ "type-fest": "^0.21.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-escapes/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/any-promise": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
+ "dev": true
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "dev": true,
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/arg": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
+ "dev": true
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true
+ },
+ "node_modules/aria-query": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz",
+ "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
+ "dev": true,
+ "dependencies": {
+ "dequal": "^2.0.3"
+ }
+ },
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz",
+ "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.5",
+ "is-array-buffer": "^3.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.8",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
+ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/array.prototype.findlast": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
+ "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
+ "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
+ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
+ "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.toreversed": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz",
+ "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0"
+ }
+ },
+ "node_modules/array.prototype.tosorted": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz",
+ "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.3",
+ "es-errors": "^1.1.0",
+ "es-shim-unscopables": "^1.0.2"
+ }
+ },
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz",
+ "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==",
+ "dev": true,
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.3",
+ "es-errors": "^1.2.1",
+ "get-intrinsic": "^1.2.3",
+ "is-array-buffer": "^3.0.4",
+ "is-shared-array-buffer": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/ast-types-flow": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
+ "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
+ "dev": true
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ },
+ "node_modules/autoprefixer": {
+ "version": "10.4.19",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz",
+ "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "browserslist": "^4.23.0",
+ "caniuse-lite": "^1.0.30001599",
+ "fraction.js": "^4.3.7",
+ "normalize-range": "^0.1.2",
+ "picocolors": "^1.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "bin": {
+ "autoprefixer": "bin/autoprefixer"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
+ }
+ },
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
+ "dev": true,
+ "dependencies": {
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/axe-core": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz",
+ "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/axios": {
+ "version": "1.6.8",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz",
+ "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==",
+ "dependencies": {
+ "follow-redirects": "^1.15.6",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
+ }
+ },
+ "node_modules/axobject-query": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz",
+ "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==",
+ "dev": true,
+ "dependencies": {
+ "dequal": "^2.0.3"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/bl": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+ "dependencies": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ }
+ },
+ "node_modules/body-scroll-lock": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz",
+ "integrity": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg=="
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "dependencies": {
+ "fill-range": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.23.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz",
+ "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001587",
+ "electron-to-chromium": "^1.4.668",
+ "node-releases": "^2.0.14",
+ "update-browserslist-db": "^1.0.13"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "node_modules/busboy": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
+ "dependencies": {
+ "streamsearch": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=10.16.0"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
+ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "dev": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "set-function-length": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camelcase-css": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001611",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001611.tgz",
+ "integrity": "sha512-19NuN1/3PjA3QI8Eki55N8my4LzfkMCRLgCVfrl/slbSAchQfV0+GwjPrK3rq37As4UCLlM/DHajbKkAqbv92Q==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ]
+ },
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/chardet": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
+ },
+ "node_modules/chokidar": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "dev": true,
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/chokidar/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/classnames": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz",
+ "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="
+ },
+ "node_modules/cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "dependencies": {
+ "restore-cursor": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cli-spinners": {
+ "version": "2.9.2",
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
+ "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cli-width": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/client-only": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
+ },
+ "node_modules/clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/clsx": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
+ "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/commander": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "dev": true,
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true,
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/damerau-levenshtein": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
+ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
+ "dev": true
+ },
+ "node_modules/data-view-buffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz",
+ "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz",
+ "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz",
+ "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "node_modules/defaults": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
+ "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
+ "dependencies": {
+ "clone": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "dev": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/didyoumean": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
+ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
+ "dev": true
+ },
+ "node_modules/dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "dev": true,
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/dlv": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
+ "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
+ "dev": true
+ },
+ "node_modules/doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.4.744",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.744.tgz",
+ "integrity": "sha512-nAGcF0yeKKfrP13LMFr5U1eghfFSvFLg302VUFzWlcjPOnUYd52yU5x6PBYrujhNbc4jYmZFrGZFK+xasaEzVA==",
+ "dev": true
+ },
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.16.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz",
+ "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/es-abstract": {
+ "version": "1.23.3",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz",
+ "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==",
+ "dev": true,
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "arraybuffer.prototype.slice": "^1.0.3",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "data-view-buffer": "^1.0.1",
+ "data-view-byte-length": "^1.0.1",
+ "data-view-byte-offset": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-set-tostringtag": "^2.0.3",
+ "es-to-primitive": "^1.2.1",
+ "function.prototype.name": "^1.1.6",
+ "get-intrinsic": "^1.2.4",
+ "get-symbol-description": "^1.0.2",
+ "globalthis": "^1.0.3",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.0.3",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.0.7",
+ "is-array-buffer": "^3.0.4",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.1",
+ "is-negative-zero": "^2.0.3",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.3",
+ "is-string": "^1.0.7",
+ "is-typed-array": "^1.1.13",
+ "is-weakref": "^1.0.2",
+ "object-inspect": "^1.13.1",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.5",
+ "regexp.prototype.flags": "^1.5.2",
+ "safe-array-concat": "^1.1.2",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.trim": "^1.2.9",
+ "string.prototype.trimend": "^1.0.8",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.2",
+ "typed-array-byte-length": "^1.0.1",
+ "typed-array-byte-offset": "^1.0.2",
+ "typed-array-length": "^1.0.6",
+ "unbox-primitive": "^1.0.2",
+ "which-typed-array": "^1.1.15"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
+ "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "dev": true,
+ "dependencies": {
+ "get-intrinsic": "^1.2.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-iterator-helpers": {
+ "version": "1.0.18",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz",
+ "integrity": "sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.0",
+ "es-errors": "^1.3.0",
+ "es-set-tostringtag": "^2.0.3",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "globalthis": "^1.0.3",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.0.3",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.7",
+ "iterator.prototype": "^1.1.2",
+ "safe-array-concat": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz",
+ "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==",
+ "dev": true,
+ "dependencies": {
+ "get-intrinsic": "^1.2.4",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-shim-unscopables": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
+ "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
+ "dev": true,
+ "dependencies": {
+ "hasown": "^2.0.0"
+ }
+ },
+ "node_modules/es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "dependencies": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz",
+ "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint": {
+ "version": "8.57.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz",
+ "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@eslint-community/regexpp": "^4.6.1",
+ "@eslint/eslintrc": "^2.1.4",
+ "@eslint/js": "8.57.0",
+ "@humanwhocodes/config-array": "^0.11.14",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@nodelib/fs.walk": "^1.2.8",
+ "@ungap/structured-clone": "^1.2.0",
+ "ajv": "^6.12.4",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^7.2.2",
+ "eslint-visitor-keys": "^3.4.3",
+ "espree": "^9.6.1",
+ "esquery": "^1.4.2",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "globals": "^13.19.0",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "is-path-inside": "^3.0.3",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3",
+ "strip-ansi": "^6.0.1",
+ "text-table": "^0.2.0"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-config-next": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.1.1.tgz",
+ "integrity": "sha512-OLyw2oHzwE0M0EODGYMbjksDQKSshQWBzYY+Nkoxoe3+Q5G0lpb9EkekyDk7Foz9BMfotbYShJrgYoBEAVqU4Q==",
+ "dev": true,
+ "dependencies": {
+ "@next/eslint-plugin-next": "14.1.1",
+ "@rushstack/eslint-patch": "^1.3.3",
+ "@typescript-eslint/parser": "^5.4.2 || ^6.0.0",
+ "eslint-import-resolver-node": "^0.3.6",
+ "eslint-import-resolver-typescript": "^3.5.2",
+ "eslint-plugin-import": "^2.28.1",
+ "eslint-plugin-jsx-a11y": "^6.7.1",
+ "eslint-plugin-react": "^7.33.2",
+ "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
+ },
+ "peerDependencies": {
+ "eslint": "^7.23.0 || ^8.0.0",
+ "typescript": ">=3.3.1"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^3.2.7",
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
+ }
+ },
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-import-resolver-typescript": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz",
+ "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^4.3.4",
+ "enhanced-resolve": "^5.12.0",
+ "eslint-module-utils": "^2.7.4",
+ "fast-glob": "^3.3.1",
+ "get-tsconfig": "^4.5.0",
+ "is-core-module": "^2.11.0",
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
+ },
+ "peerDependencies": {
+ "eslint": "*",
+ "eslint-plugin-import": "*"
+ }
+ },
+ "node_modules/eslint-module-utils": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz",
+ "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^3.2.7"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import": {
+ "version": "2.29.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz",
+ "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==",
+ "dev": true,
+ "dependencies": {
+ "array-includes": "^3.1.7",
+ "array.prototype.findlastindex": "^1.2.3",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.8.0",
+ "hasown": "^2.0.0",
+ "is-core-module": "^2.13.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.7",
+ "object.groupby": "^1.0.1",
+ "object.values": "^1.1.7",
+ "semver": "^6.3.1",
+ "tsconfig-paths": "^3.15.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.8.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz",
+ "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.23.2",
+ "aria-query": "^5.3.0",
+ "array-includes": "^3.1.7",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "=4.7.0",
+ "axobject-query": "^3.2.1",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "es-iterator-helpers": "^1.0.15",
+ "hasown": "^2.0.0",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.7",
+ "object.fromentries": "^2.0.7"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ }
+ },
+ "node_modules/eslint-plugin-react": {
+ "version": "7.34.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz",
+ "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==",
+ "dev": true,
+ "dependencies": {
+ "array-includes": "^3.1.7",
+ "array.prototype.findlast": "^1.2.4",
+ "array.prototype.flatmap": "^1.3.2",
+ "array.prototype.toreversed": "^1.1.2",
+ "array.prototype.tosorted": "^1.1.3",
+ "doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.0.17",
+ "estraverse": "^5.3.0",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.7",
+ "object.fromentries": "^2.0.7",
+ "object.hasown": "^1.1.3",
+ "object.values": "^1.1.7",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^6.3.1",
+ "string.prototype.matchall": "^4.0.10"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
+ }
+ },
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
+ "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
+ "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
+ "dev": true,
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "7.2.2",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
+ "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
+ "dev": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/espree": {
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
+ "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
+ "dev": true,
+ "dependencies": {
+ "acorn": "^8.9.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^3.4.1"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/esquery": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
+ "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/exenv": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz",
+ "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw=="
+ },
+ "node_modules/external-editor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+ "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+ "dependencies": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true
+ },
+ "node_modules/fastq": {
+ "version": "1.17.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
+ "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
+ "dev": true,
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/figures": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+ "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+ "dependencies": {
+ "escape-string-regexp": "^1.0.5"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/figures/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/file-entry-cache": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
+ "dev": true,
+ "dependencies": {
+ "flat-cache": "^3.0.4"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
+ "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
+ "dev": true,
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
+ "rimraf": "^3.0.2"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz",
+ "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==",
+ "dev": true
+ },
+ "node_modules/focus-trap": {
+ "version": "6.9.4",
+ "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-6.9.4.tgz",
+ "integrity": "sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==",
+ "dependencies": {
+ "tabbable": "^5.3.3"
+ }
+ },
+ "node_modules/follow-redirects": {
+ "version": "1.15.6",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
+ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/for-each": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
+ "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
+ "dev": true,
+ "dependencies": {
+ "is-callable": "^1.1.3"
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
+ "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
+ "dev": true,
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/fraction.js": {
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
+ "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "type": "patreon",
+ "url": "https://github.com/sponsors/rawify"
+ }
+ },
+ "node_modules/framer-motion": {
+ "version": "10.18.0",
+ "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.18.0.tgz",
+ "integrity": "sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w==",
+ "dependencies": {
+ "tslib": "^2.4.0"
+ },
+ "optionalDependencies": {
+ "@emotion/is-prop-valid": "^0.8.2"
+ },
+ "peerDependencies": {
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "dev": true
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function.prototype.name": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
+ "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "functions-have-names": "^1.2.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
+ "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-symbol-description": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz",
+ "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-tsconfig": {
+ "version": "4.7.3",
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.3.tgz",
+ "integrity": "sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==",
+ "dev": true,
+ "dependencies": {
+ "resolve-pkg-maps": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
+ }
+ },
+ "node_modules/glob": {
+ "version": "10.3.10",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
+ "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
+ "dev": true,
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.5",
+ "minimatch": "^9.0.1",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
+ "path-scurry": "^1.10.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/glob/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/glob/node_modules/minimatch": {
+ "version": "9.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/globals": {
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "dev": true,
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
+ "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "dev": true,
+ "dependencies": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
+ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "dev": true,
+ "dependencies": {
+ "get-intrinsic": "^1.1.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
+ },
+ "node_modules/graphemer": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
+ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
+ "dev": true
+ },
+ "node_modules/has-bigints": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
+ "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "dev": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-proto": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
+ "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dev": true,
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/ignore": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz",
+ "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+ "dev": true,
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "dev": true,
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "node_modules/inquirer": {
+ "version": "8.2.6",
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz",
+ "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==",
+ "dependencies": {
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.1",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.21",
+ "mute-stream": "0.0.8",
+ "ora": "^5.4.1",
+ "run-async": "^2.4.0",
+ "rxjs": "^7.5.5",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6",
+ "wrap-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/inquirer/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ },
+ "node_modules/inquirer/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/inquirer/node_modules/wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/internal-slot": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz",
+ "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.0",
+ "side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/is-array-buffer": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
+ "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-async-function": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
+ "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bigint": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
+ "dev": true,
+ "dependencies": {
+ "has-bigints": "^1.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-boolean-object": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-callable": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-core-module": {
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
+ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
+ "dev": true,
+ "dependencies": {
+ "hasown": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-view": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz",
+ "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==",
+ "dev": true,
+ "dependencies": {
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-date-object": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-finalizationregistry": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz",
+ "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-interactive": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
+ "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-map": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
+ "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-negative-zero": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
+ "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-number-object": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
+ "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-path-inside": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
+ "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-regex": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
+ "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz",
+ "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-string": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-symbol": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-typed-array": {
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz",
+ "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
+ "dev": true,
+ "dependencies": {
+ "which-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-unicode-supported": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
+ "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
+ "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakref": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
+ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakset": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz",
+ "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "get-intrinsic": "^1.2.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true
+ },
+ "node_modules/iterator.prototype": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz",
+ "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "get-intrinsic": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "reflect.getprototypeof": "^1.0.4",
+ "set-function-name": "^2.0.1"
+ }
+ },
+ "node_modules/jackspeak": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz",
+ "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
+ "dev": true,
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
+ "node_modules/jalali-moment": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/jalali-moment/-/jalali-moment-3.3.11.tgz",
+ "integrity": "sha512-tdSaRs9cjWjOIaWhcsGFZMhZQhfgok5J0TwqFpBIZPudZxxa6yjUPoLCOwuvbAtRpiZn7k/mvazAJh+vEN5suw==",
+ "dependencies": {
+ "commander": "^7.0.0",
+ "inquirer": "^8.0.0",
+ "moment": "^2.26.0"
+ },
+ "bin": {
+ "jalalim": "cli.js"
+ }
+ },
+ "node_modules/jiti": {
+ "version": "1.21.0",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz",
+ "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==",
+ "dev": true,
+ "bin": {
+ "jiti": "bin/jiti.js"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ },
+ "node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true
+ },
+ "node_modules/json5": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/jsx-ast-utils": {
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
+ "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
+ "dev": true,
+ "dependencies": {
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/language-subtag-registry": {
+ "version": "0.3.22",
+ "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
+ "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==",
+ "dev": true
+ },
+ "node_modules/language-tags": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
+ "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
+ "dev": true,
+ "dependencies": {
+ "language-subtag-registry": "^0.3.20"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/lilconfig": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
+ "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "dev": true
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
+ },
+ "node_modules/lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true
+ },
+ "node_modules/log-symbols": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
+ "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
+ "dependencies": {
+ "chalk": "^4.1.0",
+ "is-unicode-supported": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
+ "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
+ "dev": true,
+ "engines": {
+ "node": "14 || >=16.14"
+ }
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
+ "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+ "dev": true,
+ "dependencies": {
+ "braces": "^3.0.2",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
+ "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/moment": {
+ "version": "2.30.1",
+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
+ "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "node_modules/mute-stream": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
+ },
+ "node_modules/mz": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
+ "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
+ "dev": true,
+ "dependencies": {
+ "any-promise": "^1.0.0",
+ "object-assign": "^4.0.1",
+ "thenify-all": "^1.0.0"
+ }
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true
+ },
+ "node_modules/next": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/next/-/next-14.1.1.tgz",
+ "integrity": "sha512-McrGJqlGSHeaz2yTRPkEucxQKe5Zq7uPwyeHNmJaZNY4wx9E9QdxmTp310agFRoMuIYgQrCrT3petg13fSVOww==",
+ "dependencies": {
+ "@next/env": "14.1.1",
+ "@swc/helpers": "0.5.2",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001579",
+ "graceful-fs": "^4.2.11",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.1"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
+ "engines": {
+ "node": ">=18.17.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "14.1.1",
+ "@next/swc-darwin-x64": "14.1.1",
+ "@next/swc-linux-arm64-gnu": "14.1.1",
+ "@next/swc-linux-arm64-musl": "14.1.1",
+ "@next/swc-linux-x64-gnu": "14.1.1",
+ "@next/swc-linux-x64-musl": "14.1.1",
+ "@next/swc-win32-arm64-msvc": "14.1.1",
+ "@next/swc-win32-ia32-msvc": "14.1.1",
+ "@next/swc-win32-x64-msvc": "14.1.1"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/next/node_modules/postcss": {
+ "version": "8.4.31",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/nextjs-toploader": {
+ "version": "1.6.11",
+ "resolved": "https://registry.npmjs.org/nextjs-toploader/-/nextjs-toploader-1.6.11.tgz",
+ "integrity": "sha512-2mt+YDj3I7s8JGv136TRdJo9amd2BBeb2u1U4tyvZpR08eqeBgqp3xsw2Yu1AUT7C3NZQhbQN11EXwnlqsPEIA==",
+ "dependencies": {
+ "@types/nprogress": "^0.2.2",
+ "nprogress": "^0.2.0",
+ "prop-types": "^15.8.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/TheSGJ"
+ },
+ "peerDependencies": {
+ "next": ">= 6.0.0",
+ "react": ">= 16.0.0",
+ "react-dom": ">= 16.0.0"
+ }
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
+ "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
+ "dev": true
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/normalize-range": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+ "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/nprogress": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz",
+ "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA=="
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-hash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
+ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
+ "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz",
+ "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.entries": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz",
+ "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
+ "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
+ "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.hasown": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.4.tgz",
+ "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz",
+ "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dev": true,
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
+ "node_modules/onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "dependencies": {
+ "mimic-fn": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.9.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
+ "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
+ "dev": true,
+ "dependencies": {
+ "@aashutoshrathi/word-wrap": "^1.2.3",
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/ora": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
+ "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+ "dependencies": {
+ "bl": "^4.1.0",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-spinners": "^2.5.0",
+ "is-interactive": "^1.0.0",
+ "is-unicode-supported": "^0.1.0",
+ "log-symbols": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "wcwidth": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/os-tmpdir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+ "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "dev": true
+ },
+ "node_modules/path-scurry": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz",
+ "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/pirates": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
+ "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/possible-typed-array-names": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
+ "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.4.38",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz",
+ "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/postcss-import": {
+ "version": "15.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
+ "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
+ "dev": true,
+ "dependencies": {
+ "postcss-value-parser": "^4.0.0",
+ "read-cache": "^1.0.0",
+ "resolve": "^1.1.7"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.0"
+ }
+ },
+ "node_modules/postcss-js": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
+ "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
+ "dev": true,
+ "dependencies": {
+ "camelcase-css": "^2.0.1"
+ },
+ "engines": {
+ "node": "^12 || ^14 || >= 16"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.21"
+ }
+ },
+ "node_modules/postcss-load-config": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
+ "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "lilconfig": "^3.0.0",
+ "yaml": "^2.3.4"
+ },
+ "engines": {
+ "node": ">= 14"
+ },
+ "peerDependencies": {
+ "postcss": ">=8.0.9",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "postcss": {
+ "optional": true
+ },
+ "ts-node": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/postcss-load-config/node_modules/lilconfig": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz",
+ "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antonk52"
+ }
+ },
+ "node_modules/postcss-nested": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz",
+ "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
+ "dev": true,
+ "dependencies": {
+ "postcss-selector-parser": "^6.0.11"
+ },
+ "engines": {
+ "node": ">=12.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.14"
+ }
+ },
+ "node_modules/postcss-selector-parser": {
+ "version": "6.0.16",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz",
+ "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==",
+ "dev": true,
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+ "dev": true
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/rc-slider": {
+ "version": "10.6.1",
+ "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-10.6.1.tgz",
+ "integrity": "sha512-lIs/02EpZ5J8iolh80oh1r1Npe9tJSPx2I5+QyVYUCY1whtSB7xCTyFMrAf0howxkJzolhGYZGn0vlO7LNWLuQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.10.1",
+ "classnames": "^2.2.5",
+ "rc-util": "^5.27.0"
+ },
+ "engines": {
+ "node": ">=8.x"
+ },
+ "peerDependencies": {
+ "react": ">=16.9.0",
+ "react-dom": ">=16.9.0"
+ }
+ },
+ "node_modules/rc-util": {
+ "version": "5.39.1",
+ "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.39.1.tgz",
+ "integrity": "sha512-OW/ERynNDgNr4y0oiFmtes3rbEamXw7GHGbkbNd9iRr7kgT03T6fT0b9WpJ3mbxKhyOcAHnGcIoh5u/cjrC2OQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "react-is": "^18.2.0"
+ },
+ "peerDependencies": {
+ "react": ">=16.9.0",
+ "react-dom": ">=16.9.0"
+ }
+ },
+ "node_modules/rc-util/node_modules/react-is": {
+ "version": "18.2.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
+ "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
+ },
+ "node_modules/react": {
+ "version": "18.2.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
+ "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "18.2.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
+ "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "scheduler": "^0.23.0"
+ },
+ "peerDependencies": {
+ "react": "^18.2.0"
+ }
+ },
+ "node_modules/react-image-lightbox": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/react-image-lightbox/-/react-image-lightbox-5.1.4.tgz",
+ "integrity": "sha512-kTiAODz091bgT7SlWNHab0LSMZAPJtlNWDGKv7pLlLY1krmf7FuG1zxE0wyPpeA8gPdwfr3cu6sPwZRqWsc3Eg==",
+ "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
+ "dependencies": {
+ "prop-types": "^15.7.2",
+ "react-modal": "^3.11.1"
+ },
+ "peerDependencies": {
+ "react": "16.x || 17.x",
+ "react-dom": "16.x || 17.x"
+ }
+ },
+ "node_modules/react-infinite-scroll-component": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/react-infinite-scroll-component/-/react-infinite-scroll-component-6.1.0.tgz",
+ "integrity": "sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ==",
+ "dependencies": {
+ "throttle-debounce": "^2.1.0"
+ },
+ "peerDependencies": {
+ "react": ">=16.0.0"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ },
+ "node_modules/react-lifecycles-compat": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
+ "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
+ },
+ "node_modules/react-modal": {
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz",
+ "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==",
+ "dependencies": {
+ "exenv": "^1.2.0",
+ "prop-types": "^15.7.2",
+ "react-lifecycles-compat": "^3.0.0",
+ "warning": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "peerDependencies": {
+ "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18",
+ "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18"
+ }
+ },
+ "node_modules/react-spring": {
+ "version": "8.0.27",
+ "resolved": "https://registry.npmjs.org/react-spring/-/react-spring-8.0.27.tgz",
+ "integrity": "sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==",
+ "dependencies": {
+ "@babel/runtime": "^7.3.1",
+ "prop-types": "^15.5.8"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0",
+ "react-dom": ">= 16.8.0"
+ }
+ },
+ "node_modules/react-spring-bottom-sheet": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/react-spring-bottom-sheet/-/react-spring-bottom-sheet-3.4.1.tgz",
+ "integrity": "sha512-yDFqiPMm/fjefjnOe6Q9zxccbCl6HMUKsK5bWgfGHJIj4zmXVKio5d4icQvmOLuwpuCA2pwv4J6nGWS6fUZidQ==",
+ "dependencies": {
+ "@juggle/resize-observer": "^3.2.0",
+ "@reach/portal": "^0.13.0",
+ "@xstate/react": "^1.2.0",
+ "body-scroll-lock": "^3.1.5",
+ "focus-trap": "^6.2.2",
+ "react-spring": "^8.0.27",
+ "react-use-gesture": "^8.0.1",
+ "xstate": "^4.15.1"
+ },
+ "peerDependencies": {
+ "react": "^16.14.0 || 17 || 18"
+ }
+ },
+ "node_modules/react-toastify": {
+ "version": "9.1.3",
+ "resolved": "https://registry.npmjs.org/react-toastify/-/react-toastify-9.1.3.tgz",
+ "integrity": "sha512-fPfb8ghtn/XMxw3LkxQBk3IyagNpF/LIKjOBflbexr2AWxAH1MJgvnESwEwBn9liLFXgTKWgBSdZpw9m4OTHTg==",
+ "dependencies": {
+ "clsx": "^1.1.1"
+ },
+ "peerDependencies": {
+ "react": ">=16",
+ "react-dom": ">=16"
+ }
+ },
+ "node_modules/react-use-gesture": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/react-use-gesture/-/react-use-gesture-8.0.1.tgz",
+ "integrity": "sha512-CXzUNkulUdgouaAlvAsC5ZVo0fi9KGSBSk81WrE4kOIcJccpANe9zZkAYr5YZZhqpicIFxitsrGVS4wmoMun9A==",
+ "deprecated": "This package is no longer maintained. Please use @use-gesture/react instead",
+ "peerDependencies": {
+ "react": ">= 16.8.0"
+ }
+ },
+ "node_modules/read-cache": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
+ "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
+ "dev": true,
+ "dependencies": {
+ "pify": "^2.3.0"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz",
+ "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.1",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4",
+ "globalthis": "^1.0.3",
+ "which-builtin-type": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/regenerator-runtime": {
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
+ },
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz",
+ "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.6",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "set-function-name": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.8",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+ "dev": true,
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/resolve-pkg-maps": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
+ }
+ },
+ "node_modules/restore-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+ "dependencies": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/restore-cursor/node_modules/signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
+ },
+ "node_modules/reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true,
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/rimraf/node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dev": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/run-async": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
+ "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/rxjs": {
+ "version": "7.8.1",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
+ "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
+ "dependencies": {
+ "tslib": "^2.1.0"
+ }
+ },
+ "node_modules/safe-array-concat": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz",
+ "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "get-intrinsic": "^1.2.4",
+ "has-symbols": "^1.0.3",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">=0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/safe-regex-test": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz",
+ "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.6",
+ "es-errors": "^1.3.0",
+ "is-regex": "^1.1.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ },
+ "node_modules/scheduler": {
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
+ "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ }
+ },
+ "node_modules/semver": {
+ "version": "7.6.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
+ "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dev": true,
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/set-function-length": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
+ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
+ "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.4",
+ "object-inspect": "^1.13.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/simple-react-validator": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/simple-react-validator/-/simple-react-validator-1.6.2.tgz",
+ "integrity": "sha512-49KhaVh7wXTANXKuvLtRebK1RKTBi3Cu/7jf8ssBdL+9ShZOfW74nkPWK+AFj4NApSYpYozMQ27ZybE630SNVA=="
+ },
+ "node_modules/slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/streamsearch": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "node_modules/string-width/node_modules/ansi-regex": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/string-width/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/string.prototype.matchall": {
+ "version": "4.0.11",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz",
+ "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.7",
+ "regexp.prototype.flags": "^1.5.2",
+ "set-function-name": "^2.0.2",
+ "side-channel": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trim": {
+ "version": "1.2.9",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz",
+ "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.0",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz",
+ "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
+ "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/styled-jsx": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
+ "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
+ "dependencies": {
+ "client-only": "0.0.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "babel-plugin-macros": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/sucrase": {
+ "version": "3.35.0",
+ "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
+ "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.2",
+ "commander": "^4.0.0",
+ "glob": "^10.3.10",
+ "lines-and-columns": "^1.1.6",
+ "mz": "^2.7.0",
+ "pirates": "^4.0.1",
+ "ts-interface-checker": "^0.1.9"
+ },
+ "bin": {
+ "sucrase": "bin/sucrase",
+ "sucrase-node": "bin/sucrase-node"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/sucrase/node_modules/commander": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/swiper": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/swiper/-/swiper-11.1.1.tgz",
+ "integrity": "sha512-jGmEA/fNz1lACIcY4/40ggm1Gcyv+EUivmgV/Jd2WFPsEJhbWXnRAwzZR8OPjkBLtDxmzcoYG/iiAMWfRs0YKQ==",
+ "funding": [
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/swiperjs"
+ },
+ {
+ "type": "open_collective",
+ "url": "http://opencollective.com/swiper"
+ }
+ ],
+ "engines": {
+ "node": ">= 4.7.0"
+ }
+ },
+ "node_modules/tabbable": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz",
+ "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA=="
+ },
+ "node_modules/tailwindcss": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz",
+ "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==",
+ "dev": true,
+ "dependencies": {
+ "@alloc/quick-lru": "^5.2.0",
+ "arg": "^5.0.2",
+ "chokidar": "^3.5.3",
+ "didyoumean": "^1.2.2",
+ "dlv": "^1.1.3",
+ "fast-glob": "^3.3.0",
+ "glob-parent": "^6.0.2",
+ "is-glob": "^4.0.3",
+ "jiti": "^1.21.0",
+ "lilconfig": "^2.1.0",
+ "micromatch": "^4.0.5",
+ "normalize-path": "^3.0.0",
+ "object-hash": "^3.0.0",
+ "picocolors": "^1.0.0",
+ "postcss": "^8.4.23",
+ "postcss-import": "^15.1.0",
+ "postcss-js": "^4.0.1",
+ "postcss-load-config": "^4.0.1",
+ "postcss-nested": "^6.0.1",
+ "postcss-selector-parser": "^6.0.11",
+ "resolve": "^1.22.2",
+ "sucrase": "^3.32.0"
+ },
+ "bin": {
+ "tailwind": "lib/cli.js",
+ "tailwindcss": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/tapable": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
+ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
+ "dev": true
+ },
+ "node_modules/thenify": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
+ "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
+ "dev": true,
+ "dependencies": {
+ "any-promise": "^1.0.0"
+ }
+ },
+ "node_modules/thenify-all": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
+ "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
+ "dev": true,
+ "dependencies": {
+ "thenify": ">= 3.1.0 < 4"
+ },
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/throttle-debounce": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-2.3.0.tgz",
+ "integrity": "sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/through": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
+ },
+ "node_modules/tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "dependencies": {
+ "os-tmpdir": "~1.0.2"
+ },
+ "engines": {
+ "node": ">=0.6.0"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/ts-api-utils": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz",
+ "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=16"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.2.0"
+ }
+ },
+ "node_modules/ts-interface-checker": {
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
+ "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
+ "dev": true
+ },
+ "node_modules/tsconfig-paths": {
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
+ "dev": true,
+ "dependencies": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
+ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz",
+ "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz",
+ "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz",
+ "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==",
+ "dev": true,
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-length": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz",
+ "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-proto": "^1.0.3",
+ "is-typed-array": "^1.1.13",
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/unbox-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
+ "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.0.3",
+ "which-boxed-primitive": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
+ "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "escalade": "^3.1.1",
+ "picocolors": "^1.0.0"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/use-isomorphic-layout-effect": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz",
+ "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/use-subscription": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.8.0.tgz",
+ "integrity": "sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==",
+ "dependencies": {
+ "use-sync-external-store": "^1.2.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/use-sync-external-store": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
+ "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+ },
+ "node_modules/warning": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
+ "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
+ "dependencies": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "node_modules/wcwidth": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
+ "dependencies": {
+ "defaults": "^1.0.3"
+ }
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/which-boxed-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "dev": true,
+ "dependencies": {
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-builtin-type": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz",
+ "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==",
+ "dev": true,
+ "dependencies": {
+ "function.prototype.name": "^1.1.5",
+ "has-tostringtag": "^1.0.0",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.0.5",
+ "is-finalizationregistry": "^1.0.2",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.1.4",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-collection": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
+ "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
+ "dev": true,
+ "dependencies": {
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-typed-array": {
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz",
+ "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==",
+ "dev": true,
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/ansi-regex": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "dev": true
+ },
+ "node_modules/xstate": {
+ "version": "4.38.3",
+ "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.38.3.tgz",
+ "integrity": "sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/xstate"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ },
+ "node_modules/yaml": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz",
+ "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==",
+ "dev": true,
+ "bin": {
+ "yaml": "bin.mjs"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
index fa96882..e513367 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,19 @@
"dependencies": {
"react": "^18",
"react-dom": "^18",
- "next": "14.1.1"
+ "next": "14.1.1",
+ "axios": "^1.6.5",
+ "framer-motion": "^10.16.16",
+ "@headlessui/react": "^1.7.17",
+ "jalali-moment": "^3.3.11",
+ "react-image-lightbox": "^5.1.4",
+ "react-infinite-scroll-component": "^6.1.0",
+ "react-spring-bottom-sheet": "^3.4.1",
+ "react-toastify": "^9.1.3",
+ "simple-react-validator": "^1.6.2",
+ "swiper": "^11.0.5",
+ "nextjs-toploader": "^1.6.6",
+ "rc-slider": "^10.5.0"
},
"devDependencies": {
"autoprefixer": "^10.0.1",
diff --git a/plugins/Chapar/index.js b/plugins/Chapar/index.js
new file mode 100644
index 0000000..a5f4a13
--- /dev/null
+++ b/plugins/Chapar/index.js
@@ -0,0 +1,43 @@
+import axios from "axios";
+
+export const getToken = () => {
+ return localStorage.token;
+};
+
+const Chapar = axios.create({
+ baseURL: process.env.NEXT_PUBLIC_API_URL,
+ timeout: 10000,
+ headers: {
+ common: {
+ "Content-type": "application/json",
+ "Access-Control-Allow-Origin": "*",
+ ...(typeof window !== "undefined" &&
+ localStorage.token && {
+ Authorization: getToken(),
+ }),
+ },
+ },
+});
+
+Chapar.interceptors.response.use(
+ function (response) {
+ // Any status code that lie within the range of 2xx cause this function to trigger
+ // Do something with response data
+
+ return response.data;
+ },
+ function (error, status) {
+ // Any status codes that falls outside the range of 2xx cause this function to trigger
+ // Do something with response error
+ // ;
+
+ // if (error.response.status === 401) {
+ // localStorage.removeItem("token");
+ // window.location.href = "/login";
+ // }
+
+ return Promise.reject({ error, status: error?.response?.status });
+ }
+);
+
+export default Chapar;
diff --git a/plugins/Gallery/page.jsx b/plugins/Gallery/page.jsx
new file mode 100644
index 0000000..862ae8e
--- /dev/null
+++ b/plugins/Gallery/page.jsx
@@ -0,0 +1,80 @@
+"use client ";
+
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import { useContext } from "react";
+import Lightbox from "react-image-lightbox";
+import logo from "../../public/images/logo.png";
+
+const GalleryBox = ({ file }) => {
+ const CTX = useContext(AppContext);
+
+ const isOpenLightBox = CTX.state.isOpenLightBox;
+
+ return (
+
+
+
+ {file?.length > 0 ? (
+
CTX.setIsOpenLightBox(true)}
+ alt={file[0].fileName}
+ priority
+ loading="eager"
+ />
+ ) : (
+
+
+
+ )}
+
+
+
+
+
+
+ {isOpenLightBox && (
+ CTX.setIsOpenLightBox(false)}
+ // onImageLoadError={(e) =>
+ imageLoadErrorMessage={"باز نمیشه ؟!!!"}
+ />
+ )}
+
+
+ );
+};
+
+export default GalleryBox;
diff --git a/plugins/Goftino/page.jsx b/plugins/Goftino/page.jsx
new file mode 100644
index 0000000..317ea72
--- /dev/null
+++ b/plugins/Goftino/page.jsx
@@ -0,0 +1,19 @@
+import Script from "next/script";
+
+export default function Goftino() {
+ const getGoftiono = () => {
+ return {
+ __html: ` !function(){var i="Gk1Yld",a=window,d=document;function g(){var g=d.createElement("script"),s="https://www.goftino.com/widget/"+i,l=localStorage.getItem("goftino_"+i);g.async=!0,g.src=l?s+"?o="+l:s;d.getElementsByTagName("head")[0].appendChild(g);}"complete"===d.readyState?g():a.attachEvent?a.attachEvent("onload",g):a.addEventListener("load",g,!1);}();
+ `,
+ };
+ };
+
+ return (
+ <>
+
+ >
+ );
+}
diff --git a/plugins/HasPermission/page.jsx b/plugins/HasPermission/page.jsx
new file mode 100644
index 0000000..20feb45
--- /dev/null
+++ b/plugins/HasPermission/page.jsx
@@ -0,0 +1,5 @@
+const HasPermission = (per, permissions) => {
+ return permissions?.includes(per);
+};
+
+export default HasPermission;
diff --git a/plugins/HyphenateString/page.jsx b/plugins/HyphenateString/page.jsx
new file mode 100644
index 0000000..1f7a6fc
--- /dev/null
+++ b/plugins/HyphenateString/page.jsx
@@ -0,0 +1,4 @@
+const hyphenateString = (str) => {
+ return str.split(" ").join("-");
+};
+export default hyphenateString;
diff --git a/plugins/Input/page.jsx b/plugins/Input/page.jsx
new file mode 100644
index 0000000..ef63393
--- /dev/null
+++ b/plugins/Input/page.jsx
@@ -0,0 +1,102 @@
+const Input = ({
+ id,
+ lable,
+ name,
+ type,
+ textarea,
+ mt,
+ disabled,
+ theme,
+ inputEvent,
+ inputFocus,
+ style,
+ value,
+ readOnly,
+ validator,
+ validatorData,
+ select,
+ selectData,
+ defaultValue,
+}) => {
+ return (
+
+ {textarea ? (
+
+ ) : select ? (
+
+ {defaultValue && (
+
+ {defaultValue}
+
+ )}
+
+ {selectData &&
+ selectData.map((e, index) => (
+
+ {e.key}
+
+ ))}
+
+ ) : (
+
+ )}
+
+
+
+ {" "}
+ {validator ? <>{validatorData}> : ""}
+
+
+
+
+ {lable}
+
+
+ {/*
رمز اشتباه */}
+
+ );
+};
+
+export default Input;
diff --git a/plugins/IranPhoneRegex/index.js b/plugins/IranPhoneRegex/index.js
new file mode 100644
index 0000000..86b0bc5
--- /dev/null
+++ b/plugins/IranPhoneRegex/index.js
@@ -0,0 +1,7 @@
+const iranPhoneRegex = new RegExp("^(\\+98|0)?9\\d{9}$");
+
+const validateIranPhone = (phoneNumber) => {
+ return iranPhoneRegex.test(phoneNumber);
+};
+
+export default validateIranPhone;
diff --git a/plugins/Loading/page.jsx b/plugins/Loading/page.jsx
new file mode 100644
index 0000000..0ba02ee
--- /dev/null
+++ b/plugins/Loading/page.jsx
@@ -0,0 +1,23 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import { useContext } from "react";
+
+const Loading = ({ rateId }) => {
+ const CTX = useContext(AppContext);
+ const loading = CTX.state.loading;
+
+ return (
+ <>
+
+ >
+ );
+};
+export default Loading;
diff --git a/plugins/MovingLogos/page.jsx b/plugins/MovingLogos/page.jsx
new file mode 100644
index 0000000..056d004
--- /dev/null
+++ b/plugins/MovingLogos/page.jsx
@@ -0,0 +1,98 @@
+// MovingLogos.js
+"use client";
+import { useEffect } from "react";
+
+import Image from "next/image";
+import logobrand2 from "../../public/images/logobrand/2.png";
+import logobrand3 from "../../public/images/logobrand/3.png";
+import logobrand4 from "../../public/images/logobrand/4.png";
+import logobrand5 from "../../public/images/logobrand/5.png";
+import logobrand6 from "../../public/images/logobrand/6.png";
+import logobrand7 from "../../public/images/logobrand/7.png";
+
+// import styles from "./MovingLogos.module.css";
+
+const MovingLogos = () => {
+ const logos = [
+ { id: 1, logo: logobrand5 },
+ { id: 2, logo: logobrand4 },
+ { id: 3, logo: logobrand3 },
+ { id: 4, logo: logobrand6 },
+ { id: 5, logo: logobrand5 },
+ { id: 6, logo: logobrand4 },
+ { id: 7, logo: logobrand3 },
+ { id: 8, logo: logobrand2 },
+ { id: 9, logo: logobrand5 },
+ { id: 10, logo: logobrand4 },
+ { id: 11, logo: logobrand3 },
+ { id: 12, logo: logobrand6 },
+ { id: 13, logo: logobrand5 },
+ { id: 14, logo: logobrand4 },
+ { id: 15, logo: logobrand6 },
+ { id: 16, logo: logobrand2 },
+ { id: 17, logo: logobrand7 },
+ { id: 18, logo: logobrand4 },
+ { id: 19, logo: logobrand3 },
+ { id: 20, logo: logobrand2 },
+ { id: 21, logo: logobrand7 },
+ { id: 22, logo: logobrand4 },
+ { id: 23, logo: logobrand3 },
+ { id: 24, logo: logobrand5 },
+ { id: 25, logo: logobrand2 },
+ { id: 26, logo: logobrand7 },
+ ];
+
+ useEffect(() => {
+ const moveLogos = () => {
+ logos.forEach((logo) => {
+ const logoElement = document.getElementById(`logo-${logo.id}`);
+ if (logoElement) {
+ logoElement.style.transform = "translateX(-10px)"; // Adjust the value based on your preference
+ }
+ });
+ };
+
+ const intervalId = setInterval(moveLogos, 100); // Adjust the interval duration based on your preference
+
+ return () => clearInterval(intervalId);
+ }, [logos]);
+
+ return (
+
+ {/* {logos.map((e) => (
+
+
+
+ ))} */}
+
+
+
+
+ {logos.map((e, index) => (
+
+
+
+ ))}
+
+
+
+
+ );
+};
+
+export default MovingLogos;
diff --git a/plugins/PersianNumber/index.js b/plugins/PersianNumber/index.js
new file mode 100644
index 0000000..fe28994
--- /dev/null
+++ b/plugins/PersianNumber/index.js
@@ -0,0 +1,19 @@
+const PersianNumber = ({ number, isCost, size, bold, style }) => {
+ if (number || number === 0) {
+ const persianMap = "۰۱۲۳۴۵۶۷۸۹".split("");
+ const formatNumber = isCost
+ ? number.toLocaleString().replace(/\d/g, (m) => persianMap[parseInt(m)])
+ : number.toString().replace(/\d/g, (m) => persianMap[parseInt(m)]);
+ return (
+
+ {formatNumber}
+
+ );
+ } else return null;
+};
+
+export default PersianNumber;
diff --git a/plugins/RangeSlider/page.jsx b/plugins/RangeSlider/page.jsx
new file mode 100644
index 0000000..48182a8
--- /dev/null
+++ b/plugins/RangeSlider/page.jsx
@@ -0,0 +1,34 @@
+import Slider from "rc-slider";
+import "rc-slider/assets/index.css";
+
+const RangeSlider = ({ min, max, onChange, values }) => {
+ const handleStyleMin = {
+ borderColor: "#2189A8",
+ height: 25,
+ width: 25,
+ marginTop: -9,
+ backgroundColor: "white",
+ // left: 0,
+ };
+
+ const trackStyle = [{ backgroundColor: "#2189A8", height: 8 }];
+
+ const railStyle = { backgroundColor: "#e6e6e6", height: 8 };
+ return (
+
+ );
+};
+
+export default RangeSlider;
diff --git a/plugins/Yektanet/page.jsx b/plugins/Yektanet/page.jsx
new file mode 100644
index 0000000..8e780b7
--- /dev/null
+++ b/plugins/Yektanet/page.jsx
@@ -0,0 +1,28 @@
+import Script from "next/script";
+
+export default function Yektanet() {
+ const getYektanet = () => {
+ return {
+ __html: ` !function (t, e, n) {
+ t.yektanetAnalyticsObject = n, t[n] = t[n] || function () {
+ t[n].q.push(arguments)
+ }, t[n].q = t[n].q || [];
+ var a = new Date, r = a.getFullYear().toString() + "0" + a.getMonth() + "0" + a.getDate() + "0" + a.getHours(),
+ c = e.getElementsByTagName("script")[0], s = e.createElement("script");
+ s.id = "ua-script-rqSC1axy"; s.dataset.analyticsobject = n;
+ s.async = 1; s.type = "text/javascript";
+ s.src = "https://cdn.yektanet.com/rg_woebegone/scripts_v3/rqSC1axy/rg.complete.js?v=" + r, c.parentNode.insertBefore(s, c)
+ }(window, document, "yektanet");
+ `,
+ };
+ };
+
+ return (
+ <>
+
+ >
+ );
+}
diff --git a/plugins/bottomSheet/BottomSheetAddress.jsx b/plugins/bottomSheet/BottomSheetAddress.jsx
new file mode 100644
index 0000000..23dcdf0
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetAddress.jsx
@@ -0,0 +1,405 @@
+"use client";
+
+import AppContext from "@ctx/AppContext";
+import { iranCities } from "iranCities";
+import { iranProvince } from "iranProvince";
+import Chapar from "plugins/Chapar";
+import validateIranPhone from "plugins/IranPhoneRegex";
+import { useContext, useEffect, useRef, useState } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+import { toast } from "react-toastify";
+import SimpleReactValidator from "simple-react-validator";
+
+const BottomSheetAddress = () => {
+ const CTX = useContext(AppContext);
+ const provinceData = iranProvince();
+ const citiesData = iranCities();
+
+ const [province, setProvince] = useState(null);
+ const [city, setCity] = useState(null);
+ const [cityData, setCityData] = useState([]);
+ const [plaque, setPlaque] = useState("");
+ const [address, setAddress] = useState("");
+ const [buildingUnit, setBuildingUnit] = useState("");
+ const [postalCode, setPostalCode] = useState("");
+ const [receiverFullName, setReceiverFullName] = useState("");
+ const [receiverPhoneNumber, setReceiverPhoneNumber] = useState("");
+
+ const validator = useRef(
+ new SimpleReactValidator({
+ messages: {
+ required: "پر کردن این فیلد الزامی میباشد",
+ },
+ element: (message) => (
+ <>
+
+ {message}
+
+ >
+ ),
+ })
+ );
+
+ const body = {
+ address,
+ province: provinceData?.find((e) => e.id == province)?.title,
+ city: citiesData?.find((e) => e.id == city)?.title,
+ plaque,
+ buildingUnit,
+ receiverFullName,
+ receiverPhoneNumber,
+ postalCode,
+ };
+
+ const handleCreateAddress = async () => {
+ if (validateIranPhone(receiverPhoneNumber)) {
+ if (validator.current.allValid()) {
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/user/address`,
+ JSON.stringify(body),
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ toast.success(`آدرس اضافه شد`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+
+ CTX.setBottomSheetAddressOpen(false);
+ CTX.fetchAddressUser();
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ } else {
+ toast.error("پرکردن همه ی فیلد ها واجب است", {
+ position: "bottom-right",
+ autoClose: 2000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ }
+ } else {
+ toast.error("شماره تماس را درست وارد کنید", {
+ position: "bottom-right",
+ autoClose: 2000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ }
+ };
+
+ useEffect(() => {
+ setCityData(citiesData.filter((city) => city.province_id == province));
+ }, [province]);
+
+ return (
+ CTX.setBottomSheetAddressOpen(false)}
+ className={"z-50 relative "}
+ >
+
+
+
+
+
+ استان
+ *
+
+
+
{
+ setProvince(e.target.value);
+ validator.current.showMessageFor("province");
+ }}
+ defaultValue=""
+ >
+
+ انتخاب کنید
+
+ {provinceData?.map((c, index) => (
+
+ {c.title}
+
+ ))}
+
+
+
+
+ {" "}
+ {validator ? (
+ <>
+ {validator.current.message("province", province, "required")}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ شهر
+ *
+
+
+
{
+ setCity(e.target.value);
+ validator.current.showMessageFor("city");
+ }}
+ >
+ {cityData?.map((c, index) => (
+
+ {c.title}
+
+ ))}
+
+
+
+ {" "}
+ {validator ? (
+ <>{validator.current.message("city", city, "required")}>
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ آدرس
+ *
+
+
+
{
+ setAddress(e.target.value);
+ validator.current.showMessageFor("address");
+ }}
+ />
+
+
+ {" "}
+ {validator ? (
+ <>{validator.current.message("address", address, "required")}>
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ پلاک
+ *
+
+
+
{
+ setPlaque(e.target.value);
+ validator.current.showMessageFor("plaque");
+ }}
+ />
+
+
+
+ {" "}
+ {validator ? (
+ <>{validator.current.message("plaque", plaque, "required")}>
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ واحد
+ *
+
+
+
{
+ setBuildingUnit(e.target.value);
+ validator.current.showMessageFor("buildingUnit");
+ }}
+ />
+
+
+
+ {" "}
+ {validator ? (
+ <>
+ {validator.current.message(
+ "buildingUnit",
+ buildingUnit,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ کد پستی
+ *
+
+
+
{
+ setPostalCode(e.target.value);
+ validator.current.showMessageFor("postalCode");
+ }}
+ />
+
+
+
+ {" "}
+ {validator ? (
+ <>
+ {validator.current.message(
+ "postalCode",
+ postalCode,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ نام گرینده
+ *
+
+
+
{
+ setReceiverFullName(e.target.value);
+ validator.current.showMessageFor("receiverFullName");
+ }}
+ />
+
+
+
+ {" "}
+ {validator ? (
+ <>
+ {validator.current.message(
+ "receiverFullName",
+ receiverFullName,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+
+ شماره گرینده
+ *
+
+
+
{
+ setReceiverPhoneNumber(e.target.value);
+ validator.current.showMessageFor("receiverPhoneNumber");
+ }}
+ className="form-control bg-white !border-[1px] focus:!border-[1px] border-gray-400 focus:!border-gray-300 rounded-lg text-right !text-sm tr03 "
+ placeholder="0912......"
+ />
+
+
+
+ {" "}
+ {validator ? (
+ <>
+ {validator.current.message(
+ "receiverPhoneNumber",
+ receiverPhoneNumber,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+ handleCreateAddress()}
+ >
+ ساخت آدرس جدید{" "}
+
+
+
+
+ );
+};
+
+export default BottomSheetAddress;
diff --git a/plugins/bottomSheet/BottomSheetCart.jsx b/plugins/bottomSheet/BottomSheetCart.jsx
new file mode 100644
index 0000000..096496f
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetCart.jsx
@@ -0,0 +1,59 @@
+"use client";
+
+import CardCart from "@comp/Cards/CardCart/page";
+import AppContext from "@ctx/AppContext";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+
+const BottomSheetCart = (props) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+
+ return (
+ CTX.setBottomSheetCartOpen(false)}
+ className={"z-50 relative"}
+ >
+
+
+
+ محصول موجود در سبد
+
+
+ {/*
*/}
+
+ {cart.map((e, index) => (
+
+ ))}
+
+
+
+
+ {/*
+
+ جمع کل :
+
+ تومان
+
+
*/}
+
+
+ {" "}
+ ثبت خرید
+
+
+
+
+ );
+};
+
+export default BottomSheetCart;
diff --git a/plugins/bottomSheet/BottomSheetDeleteAddress.jsx b/plugins/bottomSheet/BottomSheetDeleteAddress.jsx
new file mode 100644
index 0000000..1f9371a
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetDeleteAddress.jsx
@@ -0,0 +1,47 @@
+"use client";
+
+import AppContext from "@ctx/AppContext";
+import { useContext } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+import { toast } from "react-toastify";
+
+const BottomSheetDeleteAddress = ({ id }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+
+ const handleDelete = async (id) => {
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/user/address/${id}`
+ );
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+
+ return (
+ CTX.setBottomSheetDeleteAddressOpen(false)}
+ className={"z-50 relative"}
+ >
+
+
آیا از حذف آدرس اطمینان دارید ؟
+
+
+
+ handleDelete()}
+ >
+ حذف آدرس
+
+
+
+ );
+};
+
+export default BottomSheetDeleteAddress;
diff --git a/plugins/bottomSheet/BottomSheetDiscount.jsx b/plugins/bottomSheet/BottomSheetDiscount.jsx
new file mode 100644
index 0000000..5f0419d
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetDiscount.jsx
@@ -0,0 +1,74 @@
+"use client";
+
+import AppContext from "@ctx/AppContext";
+import Chapar from "plugins/Chapar";
+import { useContext, useState } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+import { toast } from "react-toastify";
+
+const BottomSheetDiscount = ({ orderId }) => {
+ // const [item, setItem] = useState();
+ const CTX = useContext(AppContext);
+
+ const [discountCode, setDiscountCode] = useState(null);
+
+ const body = { orderId, discountCode };
+
+ // Function to handle discount operation asynchronously
+ const handleDiscount = async () => {
+ // Retrieve token from localStorage asynchronously
+ const token = localStorage.getItem("token");
+ try {
+ // Send a POST request to the API endpoint to apply discount
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/order/bag/discount/${orderId}?discountCode=${discountCode}`,
+ {
+ // Include the token in the Authorization header
+ headers: {
+ Authorization: token,
+ },
+ }
+ );
+ // Update the checkout data with the response
+ CTX.setCheckOutData(data);
+ // Close the bottom sheet for discount
+ CTX.setBottomSheetDiscountOpen(false);
+ } catch ({ error, status }) {
+ // If there's an error, display an error message using toast
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ };
+ return (
+ CTX.setBottomSheetDiscountOpen(false)}
+ className={"z-50 relative"}
+ >
+
+
+
+ setDiscountCode(e.target.value)}
+ />
+
+
+ handleDiscount()}
+ >
+ برسی کد تخفیف{" "}
+
+
+
+ );
+};
+
+export default BottomSheetDiscount;
diff --git a/plugins/bottomSheet/BottomSheetFilter.jsx b/plugins/bottomSheet/BottomSheetFilter.jsx
new file mode 100644
index 0000000..b2f29f1
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetFilter.jsx
@@ -0,0 +1,38 @@
+"use client";
+
+import FilterCategory from "@comp/Category/FilterCategory/page";
+import AppContext from "@ctx/AppContext";
+import { useContext } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+
+const BottomSheetFilter = ({ data }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+
+ return (
+ CTX.setBottomSheetFilterOpen(false)}
+ className={"z-50 relative"}
+ >
+
+
+
+
+ );
+};
+
+export default BottomSheetFilter;
diff --git a/plugins/bottomSheet/BottomSheetLogOut.jsx b/plugins/bottomSheet/BottomSheetLogOut.jsx
new file mode 100644
index 0000000..631e897
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetLogOut.jsx
@@ -0,0 +1,44 @@
+"use client";
+
+import AppContext from "@ctx/AppContext";
+import { useRouter } from "next/navigation";
+import { useContext } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+
+const BottomSheetLogOut = ({ id }) => {
+ const CTX = useContext(AppContext);
+ const cart = CTX.state.cart;
+ const router = useRouter();
+
+ const handleLogOut = async () => {
+ localStorage.removeItem("token");
+ CTX.setProfile([]);
+ CTX.setBottomSheetLogOutOpen(false);
+ router.push("/");
+ };
+
+ return (
+ CTX.setBottomSheetLogOutOpen(false)}
+ className={"z-50 relative"}
+ >
+
+
+ آیا از خروج حساب کاربری اطمینان دارید ؟{" "}
+
+
+
+
+ handleLogOut()}
+ >
+ خروج{" "}
+
+
+
+ );
+};
+
+export default BottomSheetLogOut;
diff --git a/plugins/bottomSheet/BottomSheetSeeOrder.jsx b/plugins/bottomSheet/BottomSheetSeeOrder.jsx
new file mode 100644
index 0000000..6bde0a3
--- /dev/null
+++ b/plugins/bottomSheet/BottomSheetSeeOrder.jsx
@@ -0,0 +1,151 @@
+"use client";
+
+import CardCart from "@comp/Cards/CardCart/page";
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import Link from "next/link";
+import Chapar from "plugins/Chapar";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext, useState } from "react";
+import { BottomSheet } from "react-spring-bottom-sheet";
+import { toast } from "react-toastify";
+import logo from "@img/logo.png";
+
+const BottomSheetSeeOrder = ({ id }) => {
+ const CTX = useContext(AppContext);
+
+ const [bag, setBag] = useState([]);
+
+ const handleOpen = async (e) => {
+ if (e.type == "OPEN") {
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/order/${id}`,
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+ setBag(data);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ }
+ }
+ };
+
+ return (
+ handleOpen(e)}
+ open={CTX.state.bottomSheetSeeOrderOpen}
+ onDismiss={() => CTX.setBottomSheetSeeOrderOpen(false)}
+ className={"z-50 relative"}
+ >
+ {/* {bag && bag.length > 0 && ( */}
+
+ {bag.orderProducts?.map((e) => (
+
+
+
+ محصول موجود در سبد
+
+
+ {/*
*/}
+
+ {bag.orderProducts.map((e, index) => (
+
+
+
+ {!!e.mainImage ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+
+
+ {e?.productName}
+
+
+
+
+
+
+ {e?.hasDiscount ? (
+
+ ) : (
+
+ )}
+
+
+
+
+ ))}
+
+
+ ))}
+
+ {/* )} */}
+
+ );
+};
+
+export default BottomSheetSeeOrder;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6b159e4..26c429b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -5,15 +5,51 @@ settings:
excludeLinksFromLockfile: false
dependencies:
+ '@headlessui/react':
+ specifier: ^1.7.17
+ version: 1.7.17(react-dom@18.0.0)(react@18.0.0)
+ axios:
+ specifier: ^1.6.5
+ version: 1.6.5
+ framer-motion:
+ specifier: ^10.16.16
+ version: 10.16.16(react-dom@18.0.0)(react@18.0.0)
+ jalali-moment:
+ specifier: ^3.3.11
+ version: 3.3.11
next:
specifier: 14.1.1
version: 14.1.1(react-dom@18.0.0)(react@18.0.0)
+ nextjs-toploader:
+ specifier: ^1.6.6
+ version: 1.6.6(next@14.1.1)(react-dom@18.0.0)(react@18.0.0)
+ rc-slider:
+ specifier: ^10.5.0
+ version: 10.5.0(react-dom@18.0.0)(react@18.0.0)
react:
specifier: ^18
version: 18.0.0
react-dom:
specifier: ^18
version: 18.0.0(react@18.0.0)
+ react-image-lightbox:
+ specifier: ^5.1.4
+ version: 5.1.4(react-dom@18.0.0)(react@18.0.0)
+ react-infinite-scroll-component:
+ specifier: ^6.1.0
+ version: 6.1.0(react@18.0.0)
+ react-spring-bottom-sheet:
+ specifier: ^3.4.1
+ version: 3.4.1(react-dom@18.0.0)(react@18.0.0)
+ react-toastify:
+ specifier: ^9.1.3
+ version: 9.1.3(react-dom@18.0.0)(react@18.0.0)
+ simple-react-validator:
+ specifier: ^1.6.2
+ version: 1.6.2
+ swiper:
+ specifier: ^11.0.5
+ version: 11.0.5
devDependencies:
autoprefixer:
@@ -44,7 +80,20 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
- dev: true
+
+ /@emotion/is-prop-valid@0.8.8:
+ resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
+ requiresBuild: true
+ dependencies:
+ '@emotion/memoize': 0.7.4
+ dev: false
+ optional: true
+
+ /@emotion/memoize@0.7.4:
+ resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
+ requiresBuild: true
+ dev: false
+ optional: true
/@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
@@ -63,6 +112,18 @@ packages:
- supports-color
dev: true
+ /@headlessui/react@1.7.17(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: ^16 || ^17 || ^18
+ react-dom: ^16 || ^17 || ^18
+ dependencies:
+ client-only: 0.0.1
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ dev: false
+
/@humanwhocodes/config-array@0.6.0:
resolution: {integrity: sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==}
engines: {node: '>=10.10.0'}
@@ -120,6 +181,10 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
+ /@juggle/resize-observer@3.4.0:
+ resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
+ dev: false
+
/@next/env@14.1.1:
resolution: {integrity: sha512-7CnQyD5G8shHxQIIg3c7/pSeYFeMhsNbpU/bmvH7ZnDql7mNRgg8O2JZrhrc/soFnfBnKP4/xXNiiSIPn2w8gA==}
dev: false
@@ -239,6 +304,31 @@ packages:
dev: true
optional: true
+ /@reach/portal@0.13.2(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-g74BnCdtuTGthzzHn2cWW+bcyIYb0iIE/yRsm89i8oNzNgpopbkh9UY8TPbhNlys52h7U60s4kpRTmcq+JqsTA==}
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ dependencies:
+ '@reach/utils': 0.13.2(react-dom@18.0.0)(react@18.0.0)
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ tslib: 2.6.2
+ dev: false
+
+ /@reach/utils@0.13.2(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==}
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ dependencies:
+ '@types/warning': 3.0.3
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ tslib: 2.6.2
+ warning: 4.0.3
+ dev: false
+
/@rushstack/eslint-patch@1.7.2:
resolution: {integrity: sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==}
dev: true
@@ -253,6 +343,14 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
+ /@types/nprogress@0.2.3:
+ resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==}
+ dev: false
+
+ /@types/warning@3.0.3:
+ resolution: {integrity: sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==}
+ dev: false
+
/@typescript-eslint/parser@6.21.0(eslint@8.0.0)(typescript@5.3.3):
resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
engines: {node: ^16.0.0 || >=18.0.0}
@@ -317,6 +415,26 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
+ /@xstate/react@1.6.3(react@18.0.0)(xstate@4.38.3):
+ resolution: {integrity: sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==}
+ peerDependencies:
+ '@xstate/fsm': ^1.0.0
+ react: ^16.8.0 || ^17.0.0
+ xstate: ^4.11.0
+ peerDependenciesMeta:
+ '@xstate/fsm':
+ optional: true
+ xstate:
+ optional: true
+ dependencies:
+ react: 18.0.0
+ use-isomorphic-layout-effect: 1.1.2(react@18.0.0)
+ use-subscription: 1.8.0(react@18.0.0)
+ xstate: 4.38.3
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: false
+
/acorn-jsx@5.3.2(acorn@8.11.3):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -345,10 +463,16 @@ packages:
engines: {node: '>=6'}
dev: true
+ /ansi-escapes@4.3.2:
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.21.3
+ dev: false
+
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- dev: true
/ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
@@ -360,7 +484,6 @@ packages:
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- dev: true
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
@@ -493,6 +616,10 @@ packages:
has-symbols: 1.0.3
dev: true
+ /asynckit@0.4.0:
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+ dev: false
+
/autoprefixer@10.0.1(postcss@8.0.0):
resolution: {integrity: sha512-aQo2BDIsoOdemXUAOBpFv4ZQa2DrOtEufarYhtFsK1088Ca0TUwu/aQWf0M3mrILXZ3mTIVn1lR3hPW8acacsw==}
engines: {node: ^10 || ^12 || >=14}
@@ -521,6 +648,16 @@ packages:
engines: {node: '>=4'}
dev: true
+ /axios@1.6.5:
+ resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==}
+ dependencies:
+ follow-redirects: 1.15.5
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+ dev: false
+
/axobject-query@3.2.1:
resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
dependencies:
@@ -531,11 +668,27 @@ packages:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: true
+ /base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ dev: false
+
/binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
dev: true
+ /bl@4.1.0:
+ resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ dependencies:
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: false
+
+ /body-scroll-lock@3.1.5:
+ resolution: {integrity: sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==}
+ dev: false
+
/brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
@@ -567,6 +720,13 @@ packages:
update-browserslist-db: 1.0.13(browserslist@4.23.0)
dev: true
+ /buffer@5.7.1:
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ dev: false
+
/busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
@@ -604,7 +764,10 @@ packages:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- dev: true
+
+ /chardet@0.7.0:
+ resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ dev: false
/chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
@@ -621,30 +784,71 @@ packages:
fsevents: 2.3.3
dev: true
+ /classnames@2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+ dev: false
+
+ /cli-cursor@3.1.0:
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: false
+
+ /cli-spinners@2.9.2:
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /cli-width@3.0.0:
+ resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+ engines: {node: '>= 10'}
+ dev: false
+
/client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
dev: false
+ /clone@1.0.4:
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
+ dev: false
+
+ /clsx@1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
+ engines: {node: '>=6'}
+ dev: false
+
/color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- dev: true
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- dev: true
/colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
dev: true
+ /combined-stream@1.0.8:
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ delayed-stream: 1.0.0
+ dev: false
+
/commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
dev: true
+ /commander@7.2.0:
+ resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
+ engines: {node: '>= 10'}
+ dev: false
+
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
dev: true
@@ -695,6 +899,12 @@ packages:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
+ /defaults@1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+ dependencies:
+ clone: 1.0.4
+ dev: false
+
/define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -713,6 +923,11 @@ packages:
object-keys: 1.1.1
dev: true
+ /delayed-stream@1.0.0:
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
/dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -757,7 +972,6 @@ packages:
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- dev: true
/emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
@@ -892,6 +1106,11 @@ packages:
engines: {node: '>=6'}
dev: true
+ /escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
+ dev: false
+
/escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
@@ -1187,6 +1406,19 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /exenv@1.2.2:
+ resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==}
+ dev: false
+
+ /external-editor@3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: false
+
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
@@ -1216,6 +1448,13 @@ packages:
reusify: 1.0.4
dev: true
+ /figures@3.2.0:
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: false
+
/file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -1243,6 +1482,22 @@ packages:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
dev: true
+ /focus-trap@6.9.4:
+ resolution: {integrity: sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==}
+ dependencies:
+ tabbable: 5.3.3
+ dev: false
+
+ /follow-redirects@1.15.5:
+ resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dev: false
+
/for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
@@ -1257,6 +1512,33 @@ packages:
signal-exit: 4.1.0
dev: true
+ /form-data@4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: false
+
+ /framer-motion@10.16.16(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-je6j91rd7NmUX7L1XHouwJ4v3R+SO4umso2LUcgOct3rHZ0PajZ80ETYZTajzEXEl9DlKyzjyt4AvGQ+lrebOw==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ dependencies:
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ tslib: 2.6.2
+ optionalDependencies:
+ '@emotion/is-prop-valid': 0.8.8
+ dev: false
+
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: true
@@ -1396,7 +1678,6 @@ packages:
/has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- dev: true
/has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
@@ -1428,6 +1709,17 @@ packages:
function-bind: 1.1.2
dev: true
+ /iconv-lite@0.4.24:
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: false
+
+ /ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ dev: false
+
/ignore@4.0.6:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
@@ -1460,7 +1752,27 @@ packages:
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- dev: true
+
+ /inquirer@8.2.6:
+ resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-width: 3.0.0
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ ora: 5.4.1
+ run-async: 2.4.1
+ rxjs: 7.8.1
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ through: 2.3.8
+ wrap-ansi: 6.2.0
+ dev: false
/internal-slot@1.0.7:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
@@ -1539,7 +1851,6 @@ packages:
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- dev: true
/is-generator-function@1.0.10:
resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
@@ -1555,6 +1866,11 @@ packages:
is-extglob: 2.1.1
dev: true
+ /is-interactive@1.0.0:
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
+ dev: false
+
/is-map@2.0.2:
resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
dev: true
@@ -1616,6 +1932,11 @@ packages:
which-typed-array: 1.1.14
dev: true
+ /is-unicode-supported@0.1.0:
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
+ dev: false
+
/is-weakmap@2.0.1:
resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
dev: true
@@ -1671,6 +1992,15 @@ packages:
'@pkgjs/parseargs': 0.11.0
dev: true
+ /jalali-moment@3.3.11:
+ resolution: {integrity: sha512-tdSaRs9cjWjOIaWhcsGFZMhZQhfgok5J0TwqFpBIZPudZxxa6yjUPoLCOwuvbAtRpiZn7k/mvazAJh+vEN5suw==}
+ hasBin: true
+ dependencies:
+ commander: 7.2.0
+ inquirer: 8.2.6
+ moment: 2.30.1
+ dev: false
+
/jiti@1.21.0:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
@@ -1760,6 +2090,18 @@ packages:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
dev: true
+ /lodash@4.17.21:
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+ dev: false
+
+ /log-symbols@4.1.0:
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+ dev: false
+
/loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
@@ -1791,6 +2133,23 @@ packages:
picomatch: 2.3.1
dev: true
+ /mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
+ dev: false
+
+ /mimic-fn@2.1.0:
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
+ dev: false
+
/minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
@@ -1813,6 +2172,10 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
dev: true
+ /moment@2.30.1:
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
+ dev: false
+
/ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
dev: true
@@ -1821,6 +2184,10 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
+ /mute-stream@0.0.8:
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+ dev: false
+
/mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
dependencies:
@@ -1877,6 +2244,21 @@ packages:
- babel-plugin-macros
dev: false
+ /nextjs-toploader@1.6.6(next@14.1.1)(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-LKow/aV28/DLhj4yH1E8ydF/I5QDNsb5NqlbsXBaIVFrmZ9/OGHyxPLdumvPE2IOYoQdvJ4XWoaCA1v7aivYBg==}
+ peerDependencies:
+ next: '>= 6.0.0'
+ react: '>= 16.0.0'
+ react-dom: '>= 16.0.0'
+ dependencies:
+ '@types/nprogress': 0.2.3
+ next: 14.1.1(react-dom@18.0.0)(react@18.0.0)
+ nprogress: 0.2.0
+ prop-types: 15.8.1
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ dev: false
+
/node-releases@2.0.14:
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
dev: true
@@ -1891,6 +2273,10 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /nprogress@0.2.0:
+ resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
+ dev: false
+
/num2fraction@1.2.2:
resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
dev: true
@@ -1898,7 +2284,6 @@ packages:
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- dev: true
/object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
@@ -1974,6 +2359,13 @@ packages:
wrappy: 1.0.2
dev: true
+ /onetime@5.1.2:
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
+ dependencies:
+ mimic-fn: 2.1.0
+ dev: false
+
/optionator@0.9.3:
resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
@@ -1986,6 +2378,26 @@ packages:
type-check: 0.4.0
dev: true
+ /ora@5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.9.2
+ is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: false
+
+ /os-tmpdir@1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -2139,7 +2551,10 @@ packages:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- dev: true
+
+ /proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ dev: false
/punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
@@ -2155,6 +2570,32 @@ packages:
engines: {node: '>=10'}
dev: true
+ /rc-slider@10.5.0(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-xiYght50cvoODZYI43v3Ylsqiw14+D7ELsgzR40boDZaya1HFa1Etnv9MDkQE8X/UrXAffwv2AcNAhslgYuDTw==}
+ engines: {node: '>=8.x'}
+ peerDependencies:
+ react: '>=16.9.0'
+ react-dom: '>=16.9.0'
+ dependencies:
+ '@babel/runtime': 7.24.0
+ classnames: 2.5.1
+ rc-util: 5.38.2(react-dom@18.0.0)(react@18.0.0)
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ dev: false
+
+ /rc-util@5.38.2(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-yRGRPKyi84H7NkRSP6FzEIYBdUt4ufdsmXUZ7qM2H5qoByPax70NnGPkfo36N+UKUnUBj2f2Q2eUbwYMuAsIOQ==}
+ peerDependencies:
+ react: '>=16.9.0'
+ react-dom: '>=16.9.0'
+ dependencies:
+ '@babel/runtime': 7.24.0
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ react-is: 18.2.0
+ dev: false
+
/react-dom@18.0.0(react@18.0.0):
resolution: {integrity: sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw==}
peerDependencies:
@@ -2165,9 +2606,105 @@ packages:
scheduler: 0.21.0
dev: false
+ /react-image-lightbox@5.1.4(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-kTiAODz091bgT7SlWNHab0LSMZAPJtlNWDGKv7pLlLY1krmf7FuG1zxE0wyPpeA8gPdwfr3cu6sPwZRqWsc3Eg==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+ peerDependencies:
+ react: 16.x || 17.x
+ react-dom: 16.x || 17.x
+ dependencies:
+ prop-types: 15.8.1
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ react-modal: 3.16.1(react-dom@18.0.0)(react@18.0.0)
+ dev: false
+
+ /react-infinite-scroll-component@6.1.0(react@18.0.0):
+ resolution: {integrity: sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ==}
+ peerDependencies:
+ react: '>=16.0.0'
+ dependencies:
+ react: 18.0.0
+ throttle-debounce: 2.3.0
+ dev: false
+
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- dev: true
+
+ /react-is@18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ dev: false
+
+ /react-lifecycles-compat@3.0.4:
+ resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
+ dev: false
+
+ /react-modal@3.16.1(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ react: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18
+ react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18
+ dependencies:
+ exenv: 1.2.2
+ prop-types: 15.8.1
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ react-lifecycles-compat: 3.0.4
+ warning: 4.0.3
+ dev: false
+
+ /react-spring-bottom-sheet@3.4.1(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-yDFqiPMm/fjefjnOe6Q9zxccbCl6HMUKsK5bWgfGHJIj4zmXVKio5d4icQvmOLuwpuCA2pwv4J6nGWS6fUZidQ==}
+ peerDependencies:
+ react: ^16.14.0 || 17 || 18
+ dependencies:
+ '@juggle/resize-observer': 3.4.0
+ '@reach/portal': 0.13.2(react-dom@18.0.0)(react@18.0.0)
+ '@xstate/react': 1.6.3(react@18.0.0)(xstate@4.38.3)
+ body-scroll-lock: 3.1.5
+ focus-trap: 6.9.4
+ react: 18.0.0
+ react-spring: 8.0.27(react-dom@18.0.0)(react@18.0.0)
+ react-use-gesture: 8.0.1(react@18.0.0)
+ xstate: 4.38.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@xstate/fsm'
+ - react-dom
+ dev: false
+
+ /react-spring@8.0.27(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==}
+ peerDependencies:
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
+ dependencies:
+ '@babel/runtime': 7.24.0
+ prop-types: 15.8.1
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ dev: false
+
+ /react-toastify@9.1.3(react-dom@18.0.0)(react@18.0.0):
+ resolution: {integrity: sha512-fPfb8ghtn/XMxw3LkxQBk3IyagNpF/LIKjOBflbexr2AWxAH1MJgvnESwEwBn9liLFXgTKWgBSdZpw9m4OTHTg==}
+ peerDependencies:
+ react: '>=16'
+ react-dom: '>=16'
+ dependencies:
+ clsx: 1.2.1
+ react: 18.0.0
+ react-dom: 18.0.0(react@18.0.0)
+ dev: false
+
+ /react-use-gesture@8.0.1(react@18.0.0):
+ resolution: {integrity: sha512-CXzUNkulUdgouaAlvAsC5ZVo0fi9KGSBSk81WrE4kOIcJccpANe9zZkAYr5YZZhqpicIFxitsrGVS4wmoMun9A==}
+ deprecated: This package is no longer maintained. Please use @use-gesture/react instead
+ peerDependencies:
+ react: '>= 16.8.0'
+ dependencies:
+ react: 18.0.0
+ dev: false
/react@18.0.0:
resolution: {integrity: sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==}
@@ -2182,6 +2719,15 @@ packages:
pify: 2.3.0
dev: true
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+ dev: false
+
/readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
@@ -2204,7 +2750,6 @@ packages:
/regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- dev: true
/regexp.prototype.flags@1.5.2:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
@@ -2248,6 +2793,14 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
+ /restore-cursor@3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: false
+
/reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -2260,12 +2813,23 @@ packages:
glob: 7.2.3
dev: true
+ /run-async@2.4.1:
+ resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+ engines: {node: '>=0.12.0'}
+ dev: false
+
/run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
dev: true
+ /rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ dependencies:
+ tslib: 2.6.2
+ dev: false
+
/safe-array-concat@1.1.0:
resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==}
engines: {node: '>=0.4'}
@@ -2276,6 +2840,10 @@ packages:
isarray: 2.0.5
dev: true
+ /safe-buffer@5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ dev: false
+
/safe-regex-test@1.0.3:
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
@@ -2285,6 +2853,10 @@ packages:
is-regex: 1.1.4
dev: true
+ /safer-buffer@2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ dev: false
+
/scheduler@0.21.0:
resolution: {integrity: sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==}
dependencies:
@@ -2348,11 +2920,19 @@ packages:
object-inspect: 1.13.1
dev: true
+ /signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ dev: false
+
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
dev: true
+ /simple-react-validator@1.6.2:
+ resolution: {integrity: sha512-49KhaVh7wXTANXKuvLtRebK1RKTBi3Cu/7jf8ssBdL+9ShZOfW74nkPWK+AFj4NApSYpYozMQ27ZybE630SNVA==}
+ dev: false
+
/slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -2380,7 +2960,6 @@ packages:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- dev: true
/string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
@@ -2430,12 +3009,17 @@ packages:
es-abstract: 1.22.5
dev: true
+ /string_decoder@1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- dev: true
/strip-ansi@7.1.0:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
@@ -2490,13 +3074,21 @@ packages:
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- dev: true
/supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
dev: true
+ /swiper@11.0.5:
+ resolution: {integrity: sha512-rhCwupqSyRnWrtNzWzemnBLMoyYuoDgGgspAm/8iBD3jCvAWycPLH4Z3TB0O5520DHLzMx94yUMH/B9Efpa48w==}
+ engines: {node: '>= 4.7.0'}
+ dev: false
+
+ /tabbable@5.3.3:
+ resolution: {integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==}
+ dev: false
+
/tailwindcss@3.3.0(postcss@8.0.0):
resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==}
engines: {node: '>=12.13.0'}
@@ -2554,6 +3146,22 @@ packages:
any-promise: 1.3.0
dev: true
+ /throttle-debounce@2.3.0:
+ resolution: {integrity: sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: false
+
+ /tmp@0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ os-tmpdir: 1.0.2
+ dev: false
+
/to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -2599,6 +3207,11 @@ packages:
engines: {node: '>=10'}
dev: true
+ /type-fest@0.21.3:
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
+ dev: false
+
/typed-array-buffer@1.0.2:
resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
@@ -2675,14 +3288,54 @@ packages:
punycode: 2.3.1
dev: true
+ /use-isomorphic-layout-effect@1.1.2(react@18.0.0):
+ resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ react: 18.0.0
+ dev: false
+
+ /use-subscription@1.8.0(react@18.0.0):
+ resolution: {integrity: sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.0.0
+ use-sync-external-store: 1.2.0(react@18.0.0)
+ dev: false
+
+ /use-sync-external-store@1.2.0(react@18.0.0):
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.0.0
+ dev: false
+
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- dev: true
/v8-compile-cache@2.4.0:
resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
dev: true
+ /warning@4.0.3:
+ resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
+ dependencies:
+ loose-envify: 1.4.0
+ dev: false
+
+ /wcwidth@1.0.1:
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ dependencies:
+ defaults: 1.0.4
+ dev: false
+
/which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
@@ -2739,6 +3392,15 @@ packages:
isexe: 2.0.0
dev: true
+ /wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: false
+
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -2761,6 +3423,10 @@ packages:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: true
+ /xstate@4.38.3:
+ resolution: {integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==}
+ dev: false
+
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
dev: true
diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png
new file mode 100644
index 0000000..49d9a61
Binary files /dev/null and b/public/android-chrome-192x192.png differ
diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png
new file mode 100644
index 0000000..98cf08a
Binary files /dev/null and b/public/android-chrome-512x512.png differ
diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png
new file mode 100644
index 0000000..a8186f2
Binary files /dev/null and b/public/apple-touch-icon.png differ
diff --git a/public/browserconfig.xml b/public/browserconfig.xml
new file mode 100644
index 0000000..98d065e
--- /dev/null
+++ b/public/browserconfig.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ #2ab0da
+
+
+
diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png
new file mode 100644
index 0000000..18a5dec
Binary files /dev/null and b/public/favicon-16x16.png differ
diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png
new file mode 100644
index 0000000..ce2379b
Binary files /dev/null and b/public/favicon-32x32.png differ
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 0000000..b9adff4
Binary files /dev/null and b/public/favicon.ico differ
diff --git a/public/fonts/woff/KalamehWeb-Black.woff b/public/fonts/woff/KalamehWeb-Black.woff
new file mode 100644
index 0000000..e71e181
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-Black.woff differ
diff --git a/public/fonts/woff/KalamehWeb-Bold.woff b/public/fonts/woff/KalamehWeb-Bold.woff
new file mode 100644
index 0000000..0498376
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-Bold.woff differ
diff --git a/public/fonts/woff/KalamehWeb-ExtraBold.woff b/public/fonts/woff/KalamehWeb-ExtraBold.woff
new file mode 100644
index 0000000..7e94a86
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-ExtraBold.woff differ
diff --git a/public/fonts/woff/KalamehWeb-ExtraLight.woff b/public/fonts/woff/KalamehWeb-ExtraLight.woff
new file mode 100644
index 0000000..d383567
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-ExtraLight.woff differ
diff --git a/public/fonts/woff/KalamehWeb-Light.woff b/public/fonts/woff/KalamehWeb-Light.woff
new file mode 100644
index 0000000..9af5b42
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-Light.woff differ
diff --git a/public/fonts/woff/KalamehWeb-Medium.woff b/public/fonts/woff/KalamehWeb-Medium.woff
new file mode 100644
index 0000000..583f1f3
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-Medium.woff differ
diff --git a/public/fonts/woff/KalamehWeb-Regular.woff b/public/fonts/woff/KalamehWeb-Regular.woff
new file mode 100644
index 0000000..b258ec9
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-Regular.woff differ
diff --git a/public/fonts/woff/KalamehWeb-SemiBold.woff b/public/fonts/woff/KalamehWeb-SemiBold.woff
new file mode 100644
index 0000000..d1f1e84
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-SemiBold.woff differ
diff --git a/public/fonts/woff/KalamehWeb-Thin.woff b/public/fonts/woff/KalamehWeb-Thin.woff
new file mode 100644
index 0000000..e033fdc
Binary files /dev/null and b/public/fonts/woff/KalamehWeb-Thin.woff differ
diff --git a/public/fonts/woff2/KalamehWeb-Black.woff2 b/public/fonts/woff2/KalamehWeb-Black.woff2
new file mode 100644
index 0000000..f9acee8
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-Black.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-Bold.woff2 b/public/fonts/woff2/KalamehWeb-Bold.woff2
new file mode 100644
index 0000000..4ac27fe
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-Bold.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-ExtraBold.woff2 b/public/fonts/woff2/KalamehWeb-ExtraBold.woff2
new file mode 100644
index 0000000..92b791e
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-ExtraBold.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-ExtraLight.woff2 b/public/fonts/woff2/KalamehWeb-ExtraLight.woff2
new file mode 100644
index 0000000..b169e13
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-ExtraLight.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-Light.woff2 b/public/fonts/woff2/KalamehWeb-Light.woff2
new file mode 100644
index 0000000..510affc
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-Light.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-Medium.woff2 b/public/fonts/woff2/KalamehWeb-Medium.woff2
new file mode 100644
index 0000000..591a3fb
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-Medium.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-Regular.woff2 b/public/fonts/woff2/KalamehWeb-Regular.woff2
new file mode 100644
index 0000000..35e952b
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-Regular.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-SemiBold.woff2 b/public/fonts/woff2/KalamehWeb-SemiBold.woff2
new file mode 100644
index 0000000..64851ae
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-SemiBold.woff2 differ
diff --git a/public/fonts/woff2/KalamehWeb-Thin.woff2 b/public/fonts/woff2/KalamehWeb-Thin.woff2
new file mode 100644
index 0000000..a73402e
Binary files /dev/null and b/public/fonts/woff2/KalamehWeb-Thin.woff2 differ
diff --git a/public/images/1.gif b/public/images/1.gif
new file mode 100644
index 0000000..3a25444
Binary files /dev/null and b/public/images/1.gif differ
diff --git a/public/images/2.jpg b/public/images/2.jpg
new file mode 100644
index 0000000..78d68d5
Binary files /dev/null and b/public/images/2.jpg differ
diff --git a/public/images/3.jpg b/public/images/3.jpg
new file mode 100644
index 0000000..f82aa72
Binary files /dev/null and b/public/images/3.jpg differ
diff --git a/public/images/ap.png b/public/images/ap.png
new file mode 100644
index 0000000..625ceb7
Binary files /dev/null and b/public/images/ap.png differ
diff --git a/public/images/bale.png b/public/images/bale.png
new file mode 100644
index 0000000..15907cd
Binary files /dev/null and b/public/images/bale.png differ
diff --git a/public/images/between.jpg b/public/images/between.jpg
new file mode 100644
index 0000000..6a7e7ea
Binary files /dev/null and b/public/images/between.jpg differ
diff --git a/public/images/between1.png b/public/images/between1.png
new file mode 100644
index 0000000..a56a048
Binary files /dev/null and b/public/images/between1.png differ
diff --git a/public/images/between2.png b/public/images/between2.png
new file mode 100644
index 0000000..b4842ba
Binary files /dev/null and b/public/images/between2.png differ
diff --git a/public/images/bg-header.jpg b/public/images/bg-header.jpg
new file mode 100644
index 0000000..9630831
Binary files /dev/null and b/public/images/bg-header.jpg differ
diff --git a/public/images/cat1.jpg b/public/images/cat1.jpg
new file mode 100644
index 0000000..e8253ff
Binary files /dev/null and b/public/images/cat1.jpg differ
diff --git a/public/images/cat11.png b/public/images/cat11.png
new file mode 100644
index 0000000..8e09758
Binary files /dev/null and b/public/images/cat11.png differ
diff --git a/public/images/cat12.png b/public/images/cat12.png
new file mode 100644
index 0000000..506234a
Binary files /dev/null and b/public/images/cat12.png differ
diff --git a/public/images/cat13.png b/public/images/cat13.png
new file mode 100644
index 0000000..e3a536b
Binary files /dev/null and b/public/images/cat13.png differ
diff --git a/public/images/cat14.png b/public/images/cat14.png
new file mode 100644
index 0000000..75fd994
Binary files /dev/null and b/public/images/cat14.png differ
diff --git a/public/images/cat15.png b/public/images/cat15.png
new file mode 100644
index 0000000..08630d7
Binary files /dev/null and b/public/images/cat15.png differ
diff --git a/public/images/cat2.jpg b/public/images/cat2.jpg
new file mode 100644
index 0000000..e843882
Binary files /dev/null and b/public/images/cat2.jpg differ
diff --git a/public/images/cat3.jpg b/public/images/cat3.jpg
new file mode 100644
index 0000000..8f9363a
Binary files /dev/null and b/public/images/cat3.jpg differ
diff --git a/public/images/cheshm.png b/public/images/cheshm.png
new file mode 100644
index 0000000..b00a575
Binary files /dev/null and b/public/images/cheshm.png differ
diff --git a/public/images/cover.png b/public/images/cover.png
new file mode 100644
index 0000000..4d1d7cd
Binary files /dev/null and b/public/images/cover.png differ
diff --git a/public/images/divider.png b/public/images/divider.png
new file mode 100644
index 0000000..068f7d6
Binary files /dev/null and b/public/images/divider.png differ
diff --git a/public/images/khane.jpg b/public/images/khane.jpg
new file mode 100644
index 0000000..99566b8
Binary files /dev/null and b/public/images/khane.jpg differ
diff --git a/public/images/logo-white.png b/public/images/logo-white.png
new file mode 100644
index 0000000..8ca9d5e
Binary files /dev/null and b/public/images/logo-white.png differ
diff --git a/public/images/logo.png b/public/images/logo.png
new file mode 100644
index 0000000..882ee8d
Binary files /dev/null and b/public/images/logo.png differ
diff --git a/public/images/logobrand/2.png b/public/images/logobrand/2.png
new file mode 100644
index 0000000..b845fb2
Binary files /dev/null and b/public/images/logobrand/2.png differ
diff --git a/public/images/logobrand/3.png b/public/images/logobrand/3.png
new file mode 100644
index 0000000..53d4269
Binary files /dev/null and b/public/images/logobrand/3.png differ
diff --git a/public/images/logobrand/4.png b/public/images/logobrand/4.png
new file mode 100644
index 0000000..cb6a0ba
Binary files /dev/null and b/public/images/logobrand/4.png differ
diff --git a/public/images/logobrand/5.png b/public/images/logobrand/5.png
new file mode 100644
index 0000000..9792e68
Binary files /dev/null and b/public/images/logobrand/5.png differ
diff --git a/public/images/logobrand/6.png b/public/images/logobrand/6.png
new file mode 100644
index 0000000..8253416
Binary files /dev/null and b/public/images/logobrand/6.png differ
diff --git a/public/images/logobrand/7.png b/public/images/logobrand/7.png
new file mode 100644
index 0000000..573146c
Binary files /dev/null and b/public/images/logobrand/7.png differ
diff --git a/public/images/navbar/n1.jpg b/public/images/navbar/n1.jpg
new file mode 100644
index 0000000..0a8f797
Binary files /dev/null and b/public/images/navbar/n1.jpg differ
diff --git a/public/images/navbar/n2.jpg b/public/images/navbar/n2.jpg
new file mode 100644
index 0000000..ef7c520
Binary files /dev/null and b/public/images/navbar/n2.jpg differ
diff --git a/public/images/navbar/n3.jpg b/public/images/navbar/n3.jpg
new file mode 100644
index 0000000..d3c3968
Binary files /dev/null and b/public/images/navbar/n3.jpg differ
diff --git a/public/images/navbar/n4.jpg b/public/images/navbar/n4.jpg
new file mode 100644
index 0000000..f62e8cf
Binary files /dev/null and b/public/images/navbar/n4.jpg differ
diff --git a/public/images/navbar/n5.jpg b/public/images/navbar/n5.jpg
new file mode 100644
index 0000000..a0634f8
Binary files /dev/null and b/public/images/navbar/n5.jpg differ
diff --git a/public/images/navbar/n6.jpg b/public/images/navbar/n6.jpg
new file mode 100644
index 0000000..416514e
Binary files /dev/null and b/public/images/navbar/n6.jpg differ
diff --git a/public/images/navbar/n7.jpg b/public/images/navbar/n7.jpg
new file mode 100644
index 0000000..4643e66
Binary files /dev/null and b/public/images/navbar/n7.jpg differ
diff --git a/public/images/patern.png b/public/images/patern.png
new file mode 100644
index 0000000..8196a15
Binary files /dev/null and b/public/images/patern.png differ
diff --git a/public/images/product/1.png b/public/images/product/1.png
new file mode 100644
index 0000000..7724c40
Binary files /dev/null and b/public/images/product/1.png differ
diff --git a/public/images/product/2.png b/public/images/product/2.png
new file mode 100644
index 0000000..68c0099
Binary files /dev/null and b/public/images/product/2.png differ
diff --git a/public/images/product/3.png b/public/images/product/3.png
new file mode 100644
index 0000000..bae2834
Binary files /dev/null and b/public/images/product/3.png differ
diff --git a/public/images/product/4.png b/public/images/product/4.png
new file mode 100644
index 0000000..a4df897
Binary files /dev/null and b/public/images/product/4.png differ
diff --git a/public/images/why/11.png b/public/images/why/11.png
new file mode 100644
index 0000000..9dd1222
Binary files /dev/null and b/public/images/why/11.png differ
diff --git a/public/images/why/22.png b/public/images/why/22.png
new file mode 100644
index 0000000..654620e
Binary files /dev/null and b/public/images/why/22.png differ
diff --git a/public/images/why/33.png b/public/images/why/33.png
new file mode 100644
index 0000000..a2d0028
Binary files /dev/null and b/public/images/why/33.png differ
diff --git a/public/images/why/44.png b/public/images/why/44.png
new file mode 100644
index 0000000..de80f23
Binary files /dev/null and b/public/images/why/44.png differ
diff --git a/public/images/why/55.png b/public/images/why/55.png
new file mode 100644
index 0000000..b999d46
Binary files /dev/null and b/public/images/why/55.png differ
diff --git a/public/images/zarin.png b/public/images/zarin.png
new file mode 100644
index 0000000..ba96d65
Binary files /dev/null and b/public/images/zarin.png differ
diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png
new file mode 100644
index 0000000..753e0c8
Binary files /dev/null and b/public/mstile-150x150.png differ
diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg
new file mode 100644
index 0000000..47d9376
--- /dev/null
+++ b/public/safari-pinned-tab.svg
@@ -0,0 +1,2153 @@
+
+
+
+
+Created by potrace 1.14, written by Peter Selinger 2001-2017
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/site.webmanifest b/public/site.webmanifest
new file mode 100644
index 0000000..5e286c9
--- /dev/null
+++ b/public/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "vesmeh",
+ "short_name": "vesmeh",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#2ab0da",
+ "background_color": "#2ab0da",
+ "display": "standalone"
+}
diff --git a/src/app/603413.txt b/src/app/603413.txt
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/about-us/page.jsx b/src/app/about-us/page.jsx
new file mode 100644
index 0000000..d9c0b95
--- /dev/null
+++ b/src/app/about-us/page.jsx
@@ -0,0 +1,174 @@
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+
+export const metadata = {
+ title: "درباره ما ",
+};
+
+const Page = () => {
+ const number = "02188195164";
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ وسمه ، بن ماضی زیبایی
+
+
+
+ وسمه تهعد داره تجربه خرید لوازم آرایشی و بهداشتی رو متحول کنه.
+ این تحول میتونه برای مشتری احساس قسمتی از خانواده وسمه بودن رو
+ داشته باشه. وسمه با برطرف کردن دغدغههای خرید لوازم آرایشی و
+ بهداشتی به ساختن لایف استایل شخصی خانمهای ایرانی کمک میکنه و
+ زندگی راحتتری پیش روی مشتریانش قرار میده. از سال 1400 ما تمام
+ انرژیمون رو به کار گرفتیم تا با تمرکز برکیفیت کالا، سرعت ارسال و
+ قیمت کالا ، نیاز افراد رو برطرف کنیم و تجربه جدیدی از لذت خرید
+ به وجود بیاریم.
+
+
+
+ {/*
+
+
+
+
+ جوایز و تقدیر
+
+
+
+ ما مفتخریم که به خاطر کاری که هر روز از طرف مشتریان،
+ کارمندان و جوامع خود انجام می دهیم، مورد تقدیر قرار می
+ گیریم.
+
+
+
+
+ {" "}
+ مشاهده بیشتر
+
+
+
+
+
+
+
+ موقعیت های ما
+
+
+
+ در حالی که مواضع ما به دقت مورد بررسی قرار می گیرد و
+ عمیقاً حفظ می شود، فضای زیادی برای بحث سالم و نظرات متفاوت
+ وجود دارد. ما امیدواریم که شفاف بودن در مورد مواضع ما مفید
+ باشد.
+
+
+
+
+ {" "}
+ مشاهده بیشتر
+
+
+
+
+
+
+
+ سیاست عمومی{" "}
+
+
+
+ ما با سیاستگذاران در مورد طیف وسیعی از موضوعاتی که برای
+ مشتریان و کارمندان ما مهم است، تعامل داریم. درباره نظرات
+ ما در مورد مسائل جاری سیاست بیشتر بیاموزید.
+
+
+
+
+ {" "}
+ مشاهده بیشتر
+
+
+
+
+
+
+
+ اصول رهبری
+
+
+
+ اصول رهبری ما چیزی فراتر از دیوارکوب های الهام بخش است.
+ این 16 اصل، هر روز بحث ها و تصمیمات ما را هدایت می کن
+
+
+
+
+ {" "}
+ مشاهده بیشتر
+
+
+
+
+
+
*/}
+
+
+
+
+
+
+
+ موقعیت های ما در وسمه
+
+
+ فروشگاه ما به عنوان یک منبع قابل اعتماد برای خرید لوازم آرایشی و
+ زیبایی، به شفافیت و صداقت ارزشمندی میدهد. ما به دقت مواضع و
+ ارزشهایمان را تعیین کردهایم و همواره به دنبال بهبود و توسعه آنها
+ هستیم. همچنین، در فضای ما، به نظرات و دیدگاههای مختلف احترام
+ میگذاریم و فضایی را برای بحث سالم و تبادل نظر فراهم میکنیم. با
+ ایجاد این امکان، ما امیدواریم که از تنوع نظرات و دیدگاهها بهرهمند
+ شویم و از این طریق، به تصمیمات بهتری برای رشد و پیشرفت فروشگاهمان
+ برسیم. با شفافیت، احترام به نظرات متفاوت و توجه به مواضع ما، ما به
+ ایجاد یک جامعه پویا و پایدار از مشتریان و مشتریان آیندهی خود تلاش
+ میکنیم
+
+
+
+ جوایز و تقدیر در وسمه
+
+
+ ما در وسمه مفتخریم که به خاطر کاری که هر روز از طرف مشتریان،
+ کارمندان و جوامع خود انجام میدهیم، مورد تقدیر قرار میگیریم. این
+ تقدیر و اعترافها، نشان از ارزشی است که ما برای ارتباط مستمر و
+ صادقانه با همهی اعضای جامعهی ما قائل هستیم. همهی تلاش ما در وسمه
+ به منظور ارائهی بهترین تجربهی ممکن برای مشتریان عزیزمان است. از
+ انتخاب محصولات با کیفیت تا ارائهی خدمات استثنایی، ما به دقت به
+ نیازها و خواستههای شما توجه میکنیم تا اطمینان حاصل شود که هرگز از
+ وسمه ناراضی نخواهید شد. با تمام وجود و انگیزهی بیپایان، ما به
+ ارتقاء محصولات و خدماتمان ادامه میدهیم تا همیشه بهترین را برای شما
+ فراهم کنیم. وعدهی ما این است که در وسمه همیشه یک محیط پذیرایی،
+ احترام و نوآوری برای شما وجود داشته باشد
+
+
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/blogs/[...id]/page.jsx b/src/app/blogs/[...id]/page.jsx
new file mode 100644
index 0000000..2d76191
--- /dev/null
+++ b/src/app/blogs/[...id]/page.jsx
@@ -0,0 +1,38 @@
+import BlogData from "@comp/Blog/BlogData/page";
+import React from "react";
+
+async function getData(id) {
+ const res = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/blog/${id}`);
+ const post = await res.json();
+ return post;
+}
+
+const page = async ({ params }) => {
+ const data = await getData(params.id[0]);
+
+ console.log(data);
+
+ // const structuredData = {
+ // "@context": "https://schema.org",
+ // "@type": "BlogPosting",
+ // headline: "This is a cool blog post",
+ // image: ["small.webp", "large.webp"],
+ // datePublished: "2024-02-15T00:00:00",
+ // dateModified: "2025-02-15T00:00:00",
+ // author: [
+ // {
+ // "@type": "Person",
+ // name: "Firstname LastName",
+ // jobTitle: "Blog post writer",
+ // worksFor: "Blog post company",
+ // url: `${process.env.NEXT_PUBLIC_SITE_URL}/people/firstname-lastname`,
+ // image: `${process.env.NEXT_PUBLIC_SITE_URL}/people/f_lastname.webp`,
+ // },
+ // ],
+ // description: "There are things in this post. Don't be vague like me",
+ // };
+
+ return ;
+};
+
+export default page;
diff --git a/src/app/blogs/page.jsx b/src/app/blogs/page.jsx
new file mode 100644
index 0000000..5179a43
--- /dev/null
+++ b/src/app/blogs/page.jsx
@@ -0,0 +1,41 @@
+import BlogsData from "@comp/Blog/BlogsData/page";
+import React from "react";
+
+async function getData(sParams) {
+ //
+
+ const query = {
+ page: 0,
+ ...sParams,
+ };
+
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/blog?` +
+ new URLSearchParams({ ...query })
+ // ?page=${params.page ?? 0}
+ // { cache: "no-cache" }
+ );
+ const post = await res.json();
+ //
+
+ return post;
+}
+
+async function getCaetgories() {
+ const res = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/blog/category`);
+
+ const post = await res.json();
+
+ //
+ return post;
+}
+
+const page = async ({ searchParams }) => {
+ const data = await getData(searchParams);
+ const dataCaetgories = await getCaetgories();
+ //
+
+ return ;
+};
+
+export default page;
diff --git a/src/app/cart/checkout/page.jsx b/src/app/cart/checkout/page.jsx
new file mode 100644
index 0000000..964cd33
--- /dev/null
+++ b/src/app/cart/checkout/page.jsx
@@ -0,0 +1,16 @@
+import CheckoutData from "@comp/AppsComponent/CheckoutData/page";
+import React from "react";
+
+export const metadata = {
+ title: "اعتبار سنجی خرید",
+};
+
+const Page = () => {
+ return (
+ <>
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/cart/page.jsx b/src/app/cart/page.jsx
new file mode 100644
index 0000000..72bae1b
--- /dev/null
+++ b/src/app/cart/page.jsx
@@ -0,0 +1,15 @@
+import CartData from "@comp/AppsComponent/CartData/page";
+import React from "react";
+
+export const metadata = {
+ title: "سبد خرید",
+};
+const page = () => {
+ return (
+ <>
+
+ >
+ );
+};
+
+export default page;
diff --git a/src/app/categories/[...id]/page.jsx b/src/app/categories/[...id]/page.jsx
new file mode 100644
index 0000000..cb78cf4
--- /dev/null
+++ b/src/app/categories/[...id]/page.jsx
@@ -0,0 +1,88 @@
+import CategoriesData from "@comp/AppsComponent/CategoriesData/page";
+import React from "react";
+
+export async function generateMetadata({ params }) {
+ const decodedName = decodeURIComponent(params.id[1]);
+
+ return {
+ title: decodedName,
+ description: ` خرید ${decodedName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ metadataBase: new URL(
+ `https://www.vesmeh.com/categories/${params.id[0]}/${decodedName}`
+ ),
+ keywords: [
+ "آرایشی",
+ "بهداشت خانگی",
+ "محصولات زیبایی",
+ "لوازم تمیزی",
+ "مراقبت شخصی",
+ ],
+ openGraph: {
+ title: decodedName,
+ description: ` خرید ${decodedName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ url: `https://www.vesmeh.com/categories/${params.id[0]}/${decodedName}`,
+ type: "website",
+ },
+ twitter: {
+ site: "@vesmehstore",
+ description: ` خرید ${decodedName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ title: decodedName,
+ creator: "@vesmehstore",
+ },
+ };
+}
+
+// page
+// categoryId
+// brandIds
+// isActive
+// minPrice
+// maxPrice
+// sortBy
+const fetchProducts = async (categoryId, searchParams) => {
+ const {
+ brandIds: brandIdsString,
+ isActive,
+ specialOffer,
+ ...params
+ } = searchParams;
+
+ const query = {
+ ...(categoryId != 0 ? { categoryId } : {}),
+ page: 0,
+ ...(!!isActive ? { isActive: !!isActive } : {}),
+ ...(!!specialOffer ? { specialOffer: !!specialOffer } : {}),
+ ...params,
+ };
+
+ const brandIds = brandIdsString?.split(",") ?? [];
+ const brandIdsQuery =
+ brandIds?.length > 0 ? `&brandIds=${brandIds?.join("&brandIds=")}` : "";
+
+ try {
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/product?` +
+ new URLSearchParams({ ...query }) +
+ brandIdsQuery
+ );
+ if (!res.ok) return [];
+ const products = await res.json();
+
+ console.log("products++++++++++++++++++++++++++++++++", products);
+ return products;
+ } catch (error) {
+ return [];
+ }
+};
+
+const page = async ({ params, searchParams }) => {
+ const products = await fetchProducts(params?.["id"]?.[0], searchParams);
+
+ return (
+
+
+
+ );
+};
+
+export default page;
diff --git a/src/app/categories/page.jsx b/src/app/categories/page.jsx
new file mode 100644
index 0000000..9fc1224
--- /dev/null
+++ b/src/app/categories/page.jsx
@@ -0,0 +1,18 @@
+"use client";
+import { useRouter } from "next/navigation";
+import React, { useEffect } from "react";
+
+const Page = (props) => {
+ const router = useRouter();
+ useEffect(() => {
+ // Redirect to the category page with any query parameters
+ router.push(
+ "/categories/0/همه محصولات"
+ // Add your query parameters here
+ );
+ }, []);
+
+ return;
+};
+
+export default Page;
diff --git a/src/app/contact-us/page.jsx b/src/app/contact-us/page.jsx
new file mode 100644
index 0000000..44bf1a2
--- /dev/null
+++ b/src/app/contact-us/page.jsx
@@ -0,0 +1,248 @@
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+import PersianNumber from "plugins/PersianNumber";
+
+export const metadata = {
+ title: "ارتباط با ما ",
+};
+const Page = () => {
+ const number = "02188195164";
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ به خدمات مشتری وسمه خوش آمدید
+
+
+
+ امروز در مورد چه کمکی می خواهید؟ شما میتوانید به سرعت از بسیاری
+ از موارد در اینجا مراقبت کنید، یا در صورت نیاز با ما ارتباط
+ برقرار کنید.
+
+
+
+
+
+
+
+
+
+
+ تحویل، سفارش یا بازگشت
+
+
+
+
+
+
+
+
+ امنیت و حریم خصوصی{" "}
+
+
+
+
+
+
+
+
+ رمز عبور ورود{" "}
+
+
+
+
+
+
+
+
+ پرداخت، شارژ یا کارت هدیه{" "}
+
+
+
+
+
+
+
+
+ پرداخت، شارژ یا کارت هدیه{" "}
+
+
+
{" "}
+
+
+
+
+
+
+
+
+
+ فروشگاه وسمه
+
+
+ اینجا جایی است که زیبایی شما به روشنی معنا پیدا میکند و هر آنچه که
+ برای بهترین نسخه خود نیاز دارید، در دسترس شماست. ما به افتخار اینکه
+ انتخابی برای زیبایی و اعتماد به نفس شما هستیم، بسیار خوشحالیم. در
+ فروشگاه وسمه، ما به دنبال ارائه محصولات با کیفیت و خدماتی استثنایی
+ هستیم تا به شما کمک کنیم تا به بهترین شکل ممکن زندگی کنید. اگر سوالی
+ دارید یا نیاز به راهنمایی دارید، تیم ما همیشه در دسترس است تا به شما
+ کمک کند. با افتخار ما را در فروشگاه وسمه به عنوان همراهی شما در مسیر
+ زیبایی و اعتماد به نفس خوش آمدید. با احترام و دوستی، تیم فروشگاه
+ وسمه
+
+
+
+
+
+
+
+
+
+
+
+
+ تهران، خیابان گاندی جنوبی, خیابان خالد اسلامبولی, پلاک128{" "}
+
{" "}
+
+
+
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/faq/page.jsx b/src/app/faq/page.jsx
new file mode 100644
index 0000000..58d1098
--- /dev/null
+++ b/src/app/faq/page.jsx
@@ -0,0 +1,13 @@
+import FaqData from "@comp/AppsComponent/FaqData/page";
+export const metadata = {
+ title: "سوالات متدادول",
+};
+const Page = () => {
+ return (
+ <>
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/favicon.ico b/src/app/favicon.ico
deleted file mode 100644
index 718d6fe..0000000
Binary files a/src/app/favicon.ico and /dev/null differ
diff --git a/src/app/globals.css b/src/app/globals.css
deleted file mode 100644
index 875c01e..0000000
--- a/src/app/globals.css
+++ /dev/null
@@ -1,33 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
-
-:root {
- --foreground-rgb: 0, 0, 0;
- --background-start-rgb: 214, 219, 220;
- --background-end-rgb: 255, 255, 255;
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- --foreground-rgb: 255, 255, 255;
- --background-start-rgb: 0, 0, 0;
- --background-end-rgb: 0, 0, 0;
- }
-}
-
-body {
- color: rgb(var(--foreground-rgb));
- background: linear-gradient(
- to bottom,
- transparent,
- rgb(var(--background-end-rgb))
- )
- rgb(var(--background-start-rgb));
-}
-
-@layer utilities {
- .text-balance {
- text-wrap: balance;
- }
-}
diff --git a/src/app/layout.js b/src/app/layout.js
deleted file mode 100644
index 9aef1df..0000000
--- a/src/app/layout.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import { Inter } from "next/font/google";
-import "./globals.css";
-
-const inter = Inter({ subsets: ["latin"] });
-
-export const metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
-};
-
-export default function RootLayout({ children }) {
- return (
-
- {children}
-
- );
-}
diff --git a/src/app/layout.jsx b/src/app/layout.jsx
new file mode 100644
index 0000000..29f7fd8
--- /dev/null
+++ b/src/app/layout.jsx
@@ -0,0 +1,93 @@
+import RootData from "@comp/AppsComponent/RootData/page";
+
+export const metadata = {
+ icons: {
+ icon: [
+ {
+ url: "/favicon-16x16.png",
+ media: "(prefers-color-scheme: light)",
+ },
+ {
+ url: "/favicon-16x16.png",
+ media: "(prefers-color-scheme: dark)",
+ },
+ ],
+ },
+ title: {
+ template:
+ "%s | خرید لوازم آرایشی و بهداشتی قیمت مناسب و اصل | فروشگاه اینترنتی وسمه",
+ default:
+ "فروشگاه اینترنتی وسمه - خرید لوازم آرایشی و بهداشتی قیمت مناسب و اصل",
+ },
+ description:
+ "مقایسه و خرید آنلاین انواع لوازم آرایشی، بهداشتی، خانه ، بهداشت جنسی | برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه vesmeh.com",
+ metadataBase: new URL("https://www.vesmeh.com"),
+ authors: [
+ {
+ name: "وسمه",
+ url: "https://www.vesmeh.com",
+ },
+ ],
+ keywords: [
+ "آرایشی",
+ "بهداشت خانگی",
+ "محصولات زیبایی",
+ "لوازم تمیزی",
+ "مراقبت شخصی",
+ ],
+ openGraph: {
+ title:
+ "خرید لوازم آرایشی و بهداشتی قیمت مناسب و اصل | فروشگاه اینترنتی وسمه",
+ description:
+ "مقایسه و خرید آنلاین انواع لوازم آرایشی، بهداشتی، خانه ، بهداشت جنسی | برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه vesmeh.com",
+ url: "https://www.vesmeh.com",
+ type: "website",
+ },
+ twitter: {
+ site: "@vesmehstore",
+ description:
+ "مقایسه و خرید آنلاین انواع لوازم آرایشی، بهداشتی، خانه ، بهداشت جنسی | برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه vesmeh.com",
+ title:
+ "خرید لوازم آرایشی و بهداشتی قیمت مناسب و اصل | فروشگاه اینترنتی وسمه",
+ creator: "@vesmehstore",
+ },
+ // enamad: {
+ // name: "enamad",
+ // content: "735422",
+ // },
+ other: { enamad: "735422" },
+};
+
+const structuredData = {
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ url: process.env.NEXT_PUBLIC_APP_URL,
+ logo: "https://storage.vesmeh.com/Logo/Med/Main.png",
+ name: "فروشگاه اینترنتی وسمه",
+ legalName: "وسمه",
+ telephone: "+982188196154",
+ sameAs: [
+ "https://t.me/vesmehhcom",
+ "https://twitter.com/vesmehcom",
+ "https://www.instagram.com/vesmehcom",
+ ],
+};
+
+export default function RootLayout({ children }) {
+ return (
+
+
+
+
+
+ {children}
+
+
+ );
+}
diff --git a/src/app/login/page.jsx b/src/app/login/page.jsx
new file mode 100644
index 0000000..0679a24
--- /dev/null
+++ b/src/app/login/page.jsx
@@ -0,0 +1,154 @@
+"use client";
+import LoginStep from "@comp/Login/LoginStep";
+import SignUp from "@comp/Login/SignUp";
+import VerifyCodeStep from "@comp/Login/VerifyCodeStep";
+import AppContext from "@ctx/AppContext";
+import Image from "next/image";
+import { useRouter } from "next/navigation";
+import Chapar from "plugins/Chapar";
+import { useContext, useState } from "react";
+import { toast } from "react-toastify";
+import logo from "../../../public/images/logo.png";
+import Head from "next/head";
+
+const Login = () => {
+ const CTX = useContext(AppContext);
+
+ const [phoneNumber, setPhoneNumber] = useState("");
+ const [verifyCode, setVerifyCode] = useState("");
+ const [firstName, setFirstName] = useState("");
+ const [lastName, setLastName] = useState("");
+ const [stepLogin, setStepLogin] = useState(0);
+
+ const router = useRouter();
+
+ const ConfirmPhoneNumber = async () => {
+ CTX.setLoading(true);
+ try {
+ const data = await Chapar.get(
+ `${process.env.NEXT_PUBLIC_API_URL}/auth/verifycode?phoneNumber=${phoneNumber}`
+ );
+ setStepLogin(1);
+ localStorage.removeItem("token");
+ CTX.setLoading(false);
+ } catch ({ error, status }) {
+ toast.error(" اطلاعات را صحیح وارد کنید ", {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ CTX.setLoading(false);
+ }
+ };
+
+ const LoginWhitVerifyCode = async () => {
+ CTX.setLoading(true);
+
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/auth/login/code`,
+ {
+ userName: phoneNumber,
+ password: null,
+ verifyCode,
+ }
+ );
+
+ localStorage.setItem("token", "Bearer " + data.access_token);
+
+ if (data.user.signUpStatus == 1) {
+ setStepLogin(2);
+ } else if (data.user.signUpStatus == 10) {
+ CTX.setProfile(data.user);
+ toast.success(` ${data.user.firstName} جان خوش اومدی `, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+
+ router.push("/profile");
+ }
+
+ CTX.setLoading(false);
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ CTX.setLoading(false);
+ }
+ };
+
+ const SignUpLogin = async () => {
+ CTX.setLoading(true);
+
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/auth/signup`,
+ { lastName, firstName },
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ localStorage.removeItem("token");
+ CTX.setLoading(false);
+ CTX.setProfile(data.user);
+ if (data.user.signUpStatus == 10) {
+ // setProfile(data);
+
+ toast.success(` ${data.user.firstName} جان خوش اومدی `, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ localStorage.setItem("token", "Bearer " + data.access_token);
+
+ router.push("/profile");
+ }
+ } catch ({ error, status }) {
+ toast.error(`${error?.response?.data?.message}`, {
+ position: "bottom-right",
+ closeOnClick: true,
+ });
+ CTX.setLoading(false);
+ }
+ };
+
+ return (
+
+
+
+
+ {stepLogin == 0 ? (
+
+ ) : stepLogin == 1 ? (
+
+ ) : stepLogin == 2 ? (
+
+ ) : (
+ ""
+ )}
+
+
+
+ );
+};
+
+export default Login;
diff --git a/src/app/page.js b/src/app/page.js
deleted file mode 100644
index c9b26e0..0000000
--- a/src/app/page.js
+++ /dev/null
@@ -1,113 +0,0 @@
-import Image from "next/image";
-
-export default function Home() {
- return (
-
-
-
- Get started by editing
- src/app/page.js
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/src/app/page.jsx b/src/app/page.jsx
new file mode 100644
index 0000000..ca5ac03
--- /dev/null
+++ b/src/app/page.jsx
@@ -0,0 +1,61 @@
+"use client";
+import Footer from "@comp/Footer/page";
+import BeautySection from "@comp/LandingPage/BeautySection/page";
+import BetweenSexualSection from "@comp/LandingPage/BetweenSexualSection/page";
+import BrandsLogoSection from "@comp/LandingPage/BrandsLogoSection/page";
+import HeroSection from "@comp/LandingPage/HeroSection/page";
+import HomeSection from "@comp/LandingPage/HomeSection/page";
+import SurpriseSection from "@comp/LandingPage/SurpriseSection/page";
+import Navbar from "@comp/Navbar/page";
+import Head from "next/head";
+import { useEffect, useState } from "react";
+
+export default function Page() {
+ const [specialOfferData, setSpecialOfferData] = useState([]);
+ const [cosmeticData, setCosmeticData] = useState([]);
+ const [HomeCosmeticData, setHomeCosmeticData] = useState([]);
+ const fetchSpecialOffer = async () => {
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&specialOffer=true`
+ );
+ const specialOffer = await res.json();
+ setSpecialOfferData(specialOffer);
+ };
+
+ const fetchCosmetic = async () => {
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&categoryId=553af942-7a14-4757-9a03-a3ebec6c865a`
+ );
+ const Cosmetic = await res.json();
+ setCosmeticData(Cosmetic);
+ };
+
+ const fetchHomeCosmetic = async () => {
+ const res = await fetch(
+ `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&categoryId=effe5d98-d4b7-47e1-9bfb-4d3c77ab3347`
+ );
+ const HomeCosmetic = await res.json();
+ setHomeCosmeticData(HomeCosmetic);
+ };
+
+ useEffect(() => {
+ fetchSpecialOffer();
+ fetchCosmetic();
+ fetchHomeCosmetic();
+ }, []);
+ return (
+ <>
+ {/* */}
+
+
+ {/* */}
+
+ {/* */}
+ {/* */}
+
+ {/* */}
+ {/* */}
+ {/* */}
+ >
+ );
+}
diff --git a/src/app/product/[slug]/page.jsx b/src/app/product/[slug]/page.jsx
new file mode 100644
index 0000000..382baa5
--- /dev/null
+++ b/src/app/product/[slug]/page.jsx
@@ -0,0 +1,6 @@
+import { permanentRedirect } from "next/navigation";
+
+export default async function Page({ params: { slug } }) {
+ // slug -> id
+ permanentRedirect(`/products/${slug}`, "replace");
+}
diff --git a/src/app/products/[...id]/page.jsx b/src/app/products/[...id]/page.jsx
new file mode 100644
index 0000000..1f35c20
--- /dev/null
+++ b/src/app/products/[...id]/page.jsx
@@ -0,0 +1,90 @@
+import ProductData from "@comp/AppsComponent/ProductData/page";
+
+async function getData(id) {
+ const res = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/product/${id}`);
+ const post = await res.json();
+ return post;
+}
+
+export async function generateMetadata({ params }) {
+ const data = await getData(params.id[0]);
+
+ const decodedName = decodeURIComponent(params.id[1]);
+ const imageUrl = new URL(
+ data?.product?.files && data?.product?.files[0]?.fileLocation,
+ process.env.STORAGE_URL
+ );
+
+ const metadataUrl = new URL(
+ `products/${params.id[0]}/${data?.product?.persianName}`,
+ process.env.NEXT_PUBLIC_APP_URL
+ );
+ return {
+ title: data?.product?.persianName,
+ description: `خرید ${data?.product?.persianName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ metadataBase: metadataUrl,
+ product_id_meta: data?.product?.id,
+ keywords: [
+ "آرایشی",
+ "بهداشت خانگی",
+ "محصولات زیبایی",
+ "لوازم تمیزی",
+ "مراقبت شخصی",
+ ],
+
+ openGraph: {
+ title: data?.product?.persianName,
+ description: ` خرید ${data?.product?.persianName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ images: [imageUrl],
+ url: metadataUrl,
+ type: "website",
+ locale: "fa-IR",
+ type: "website",
+ },
+ twitter: {
+ site: "@vesmehstore",
+ description: ` خرید ${data?.product?.persianName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ title: data?.product?.persianName,
+ creator: "@vesmehstore",
+ },
+ other: {
+ product_id: data?.product?.id,
+ product_name: data?.product?.persianName,
+ product_price: data?.product?.costWithDiscount / 10,
+ product_old_price: data?.product?.cost / 10,
+ availability: data?.product?.stock > 0 ? "instock" : "outofstock",
+ guarantee: "guarantee_sample",
+ },
+ };
+}
+
+const Page = async ({ params }) => {
+ const data = await getData(params.id[0]);
+ const imageUrl = new URL(
+ data?.product?.files && data?.product?.files[0]?.fileLocation,
+ process.env.STORAGE_URL
+ );
+
+ const structuredData = {
+ "@context": "https://schema.org",
+ "@type": "Product",
+ name: data?.product?.persianName,
+ image: imageUrl,
+ description: ` خرید ${data?.product?.persianName}| برندهای متنوع با پایین ترین قیمت | فروشگاه اینترنتی وسمه`,
+ };
+
+ return (
+ <>
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/profile/address/page.jsx b/src/app/profile/address/page.jsx
new file mode 100644
index 0000000..3c4ec4e
--- /dev/null
+++ b/src/app/profile/address/page.jsx
@@ -0,0 +1,93 @@
+"use client";
+
+import Navbar from "@comp/Navbar/page";
+import AppContext from "@ctx/AppContext";
+import BottomSheetDeleteAddress from "plugins/bottomSheet/BottomSheetDeleteAddress";
+import { useContext, useEffect } from "react";
+import SideBarProfile from "../component/SideBarProfile/page";
+
+const Page = () => {
+ const CTX = useContext(AppContext);
+ const addressData = CTX.state.addressData;
+
+ useEffect(() => {
+ if (addressData.length <= 0) {
+ CTX.fetchAddressUser();
+ }
+ }, []);
+
+ return (
+ <>
+
+
+
+
+
+
+
+
آدرس های شما
+
CTX.setBottomSheetAddressOpen(true)}
+ >
+ {" "}
+ افزودن آدرس
+
+
+
+ {addressData.length > 0 ? (
+
+
+
+
+
+ آدرس
+
+
+
+ عملیات
+
+
+
+ {addressData.map((e, index) => (
+
+
+
+ {e.province} ، {e.city} ، {e.address} ،{e.plaque} ،
+ {e.buildingUnit}{" "}
+
+
+
+
+ CTX.setBottomSheetDeleteAddressOpen(true)
+ }
+ >
+ حذف{" "}
+ {" "}
+
+
+
+ ))}
+
+
+ ) : (
+
+ )}
+
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/profile/component/SideBarProfile/page.jsx b/src/app/profile/component/SideBarProfile/page.jsx
new file mode 100644
index 0000000..d858f38
--- /dev/null
+++ b/src/app/profile/component/SideBarProfile/page.jsx
@@ -0,0 +1,86 @@
+"use client";
+import AppContext from "@ctx/AppContext";
+import Link from "next/link";
+import PersianNumber from "plugins/PersianNumber";
+import { useContext } from "react";
+
+const SideBarProfile = () => {
+ const CTX = useContext(AppContext);
+ const profile = CTX.state.profile;
+
+ return (
+
+
+
+
+
+
+
+ {profile?.firstName} {profile?.lastName}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ همکاری در فروش{" "}
+
+
+
+
+
+
+ CTX.setBottomSheetLogOutOpen(true)}
+ >
+ خروج
+
+
+
+
+
+ );
+};
+
+export default SideBarProfile;
diff --git a/src/app/profile/orders/page.jsx b/src/app/profile/orders/page.jsx
new file mode 100644
index 0000000..98f0ed8
--- /dev/null
+++ b/src/app/profile/orders/page.jsx
@@ -0,0 +1,161 @@
+"use client";
+
+import Navbar from "@comp/Navbar/page";
+import PersianNumber from "plugins/PersianNumber";
+import SideBarProfile from "../component/SideBarProfile/page";
+import { useContext, useEffect, useState } from "react";
+import AppContext from "@ctx/AppContext";
+import moment from "jalali-moment";
+import BottomSheetSeeOrder from "plugins/bottomSheet/BottomSheetSeeOrder";
+
+const Page = () => {
+ const CTX = useContext(AppContext);
+ const orderUser = CTX.state.orderUser;
+
+ const [idOrder, setIdOrder] = useState(null);
+
+ const [bag, setBag] = useState([]);
+
+ const getStatusDescription = (status) => {
+ switch (status) {
+ case 0:
+ return "سبد خرید";
+ case 1:
+ return "ثبت شده";
+ case 2:
+ return "پرداخت شده";
+ case 10:
+ return "درحال پردازش";
+ case 20:
+ return "ارسال شده";
+ case 200:
+ return "انجام شده";
+ case 500:
+ return "کنسل شده";
+ default:
+ return "نامعلوم";
+ }
+ };
+
+ const handleSubmit = (status, id) => {
+ if (status == 0) {
+ CTX.GoCheckOut();
+ } else {
+ setIdOrder(id);
+ setTimeout(() => {
+ CTX.setBottomSheetSeeOrderOpen(true);
+ }, 100);
+ }
+ };
+
+ useEffect(() => {
+ CTX.fetchOrderUser();
+ }, []);
+ return (
+ <>
+
+
+
+
+
+
+
سابقه سفارشات
+ {/*
+
*/}
+
+
+
+
+
+
+ قیمت{" "}
+
+
+ تاریخ سفارش
+
+
+ تاریخ تحویل
+
+
+ مرحله سفارش
+
+
+ عملیات
+
+
+
+
+
+ {orderUser?.map((e) => (
+ <>
+ {orderUser.length > 0 ? (
+
+
+ {" "}
+ {" "}
+
+
+
+
+ -
+
+ {getStatusDescription(e.orderStatus)}
+
+
+
+ handleSubmit(e.orderStatus, e.id)}
+ >
+ {e.orderStatus == 0
+ ? "ثبت سفارش"
+ : " مشاهده سفارش"}
+ {" "}
+
+
+ ) : (
+
+
+ شما سفارشی ندارید
+
+
+ )}
+ >
+ ))}
+
+ {/* Add more rows as needed */}
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/profile/page.jsx b/src/app/profile/page.jsx
new file mode 100644
index 0000000..5b0e4cd
--- /dev/null
+++ b/src/app/profile/page.jsx
@@ -0,0 +1,59 @@
+import Navbar from "@comp/Navbar/page";
+import SideBarProfile from "./component/SideBarProfile/page";
+
+const Page = () => {
+ return (
+ <>
+
+
+
+
+
+ {/*
+
+
+
+
+ لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ، و با
+ استفاده از طراحان گرافیک است، چاپگرها و متون بلکه روزنامه و مجله
+ در ستون و سطرآنچنان که لازم است، و برای شرایط فعلی تکنولوژی مورد
+ نیاز، و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی می باشد،
+ کتابهای زیادی در شصت و سه درصد گذشته حال و آینده{" "}
+
+
+
+
+ خرید ادامـــــه دارد
+
+
+
*/}
+
+
+
سفارش جاری
+
+
+
+ شما سفارشی ندارید
+
+
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/profile/saleCooperationSystem/page.jsx b/src/app/profile/saleCooperationSystem/page.jsx
new file mode 100644
index 0000000..375b08d
--- /dev/null
+++ b/src/app/profile/saleCooperationSystem/page.jsx
@@ -0,0 +1,463 @@
+"use client";
+import Navbar from "@comp/Navbar/page";
+import React, { useContext, useEffect, useRef, useState } from "react";
+import SideBarProfile from "../component/SideBarProfile/page";
+import SimpleReactValidator from "simple-react-validator";
+import { toast } from "react-toastify";
+import PersianNumber from "plugins/PersianNumber";
+import AppContext from "@ctx/AppContext";
+import moment from "jalali-moment";
+import Chapar from "plugins/Chapar";
+
+const Page = () => {
+ const CTX = useContext(AppContext);
+ const cooperationSystemProfileContractData =
+ CTX.state.cooperationSystemProfileContractData;
+
+ const cooperationSystemProfileData = CTX.state.cooperationSystemProfileData;
+ const profile = CTX.state.profile;
+ const [stepsaleCooperationSystem, setStepsaleCooperationSystem] = useState(0);
+ const [rulesAccept, setRulesAccept] = useState(false);
+ const [nationalCode, setNationalCode] = useState("");
+ const [fatherName, setFatherName] = useState("");
+ const [shabaNumber, setShabaNumber] = useState("");
+ const [year, setYear] = useState("");
+ const [month, setMonth] = useState("");
+ const [day, setDay] = useState("");
+ const [birthDate, setBirthDate] = useState("");
+
+ const [, forceUpdate] = useState();
+ const [submited, setSubmited] = useState(false);
+
+ const validator = useRef(
+ new SimpleReactValidator({
+ messages: {
+ required: "پر کردن این فیلد الزامی میباشد",
+ },
+ element: (message) => (
+ <>
+
+ {message}
+
+ >
+ ),
+ })
+ );
+
+ // Generate options for days and months
+ const daysOptions = Array.from({ length: 31 }, (_, i) => i + 1);
+ const monthsOptions = Array.from({ length: 12 }, (_, i) => i + 1);
+ // Generate options for years between 1340 and 1388
+ const yearsOptions = Array.from({ length: 49 }, (_, i) => 1388 - i);
+
+ const body = {
+ fatherName,
+ nationalId: nationalCode,
+ shaba: shabaNumber,
+ birthDate,
+ };
+
+ const handleBirthDate = (year, month, day) => {
+ setDay(day);
+ setMonth(month);
+ setYear(year);
+ const persianDate = `${year}/${month}/${day}`;
+ // Convert Persian date to timestamp
+ const timestamp = moment(persianDate, "jYYYY/jM/jD").unix();
+ setBirthDate(timestamp);
+ };
+
+ const sendInfoUserCooperationSystem = async () => {
+ if (validator.current.allValid()) {
+ try {
+ const data = await Chapar.post(
+ `${process.env.NEXT_PUBLIC_API_URL}/marketer/signup`,
+ JSON.stringify(body),
+ {
+ headers: {
+ Authorization: localStorage.getItem("token"),
+ },
+ }
+ );
+
+ CTX.setCooperationSystemProfileData(data);
+ setStepsaleCooperationSystem(2);
+ } catch ({ error, status }) {
+ toast.error("مشکلی در ارسال اطلاعات رخ داده است", {
+ position: "bottom-right",
+ autoClose: 2000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ }
+ } else {
+ toast.error("پرکردن همه ی فیلد ها واجب است", {
+ position: "bottom-right",
+ autoClose: 2000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ validator.current.showMessages();
+ forceUpdate(1);
+ }
+ };
+
+ useEffect(() => {
+ if (profile.isMarketer) {
+ CTX.fetchCooperationSystemProfile();
+ setStepsaleCooperationSystem(2);
+ } else {
+ CTX.fetchCooperationSystemProfileContract();
+ setStepsaleCooperationSystem(0);
+ }
+ }, [profile]);
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+ {stepsaleCooperationSystem == 0 ? (
+
+
+
+
+ {
+ setRulesAccept(e.target.checked);
+ }}
+ />
+
+ {" "}
+ قوانین را مطالعه کرده و آن را میپذیرم{" "}
+
+
+
+ {!rulesAccept ? (
+
+
+ مرحله بعد
+
+
+ ) : (
+
setStepsaleCooperationSystem(1)}
+ >
+
+ مرحله بعد
+
+
+ )}
+
+ ) : stepsaleCooperationSystem == 1 ? (
+
+
+
+
+
+ کد ملی
+ *
+
+
+
{
+ setNationalCode(e.target.value);
+ validator.current.showMessageFor("nationalCode");
+ }}
+ />
+ {!submited ? (
+ <>
+ {validator.current.message(
+ "nationalCode",
+ nationalCode,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+ نام پدر *
+
+
+
{
+ setFatherName(e.target.value);
+ validator.current.showMessageFor("fatherName");
+ }}
+ />
+ {!submited ? (
+ <>
+ {validator.current.message(
+ "fatherName",
+ fatherName,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+ شماره شبا*
+
+
+
+
{
+ setShabaNumber(e.target.value);
+ validator.current.showMessageFor("shabaNumber");
+ }}
+ />
+
+
+ {!submited ? (
+ <>
+ {validator.current.message(
+ "shabaNumber",
+ shabaNumber,
+ "required"
+ )}
+ >
+ ) : (
+ ""
+ )}
+
+
+
+
+
+ تاریخ تولد*
+
+
+
+ {
+ handleBirthDate(e.target.value, month, day);
+ validator.current.showMessageFor("year");
+ }}
+ placeholder="سال"
+ maxLength={4}
+ >
+ {yearsOptions.map((y) => (
+
+ {y}
+
+ ))}
+
+
+ {
+ handleBirthDate(year, e.target.value, day);
+ validator.current.showMessageFor("month");
+ }}
+ placeholder="ماه"
+ maxLength={2}
+ >
+ {monthsOptions.map((m) => (
+
+ {m}
+
+ ))}
+
+
+ {
+ handleBirthDate(year, month, e.target.value);
+ validator.current.showMessageFor("day");
+ }}
+ placeholder="روز"
+ maxLength={4}
+ >
+ {daysOptions.map((d) => (
+
+ {d}
+
+ ))}
+
+
+ {!submited ? (
+
+ <>{validator.current.message("day", day, "required")}>
+ <>
+ {validator.current.message("year", year, "required")}
+ >
+ <>
+ {validator.current.message(
+ "month",
+ month,
+ "required"
+ )}
+ >
+
+ ) : (
+ ""
+ )}
+
+
+
+
sendInfoUserCooperationSystem()}
+ >
+
+ مرحله بعد
+
+
+
+ ) : stepsaleCooperationSystem == 2 ? (
+
+
+
+
+ کد معرف شما{" "}
+
+
+
+
+ {cooperationSystemProfileData?.discountCode}
+
+
+
+
+
+
+
+
+
+
+
+ سود شما از خرید{" "}
+
+
+
+
+ ) : (
+ ""
+ )}
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/purchase-callback/page.jsx b/src/app/purchase-callback/page.jsx
new file mode 100644
index 0000000..2060277
--- /dev/null
+++ b/src/app/purchase-callback/page.jsx
@@ -0,0 +1,96 @@
+"use client";
+import Link from "next/link";
+import { useSearchParams } from "next/navigation";
+
+const Page = () => {
+ const params = useSearchParams();
+ const refid = params.get("refid");
+ const paymentStatus = params.get("paymentStatus");
+ const factorNumber = params.get("factorNumber");
+
+ return (
+ <>
+ {paymentStatus === "true" ? (
+
+
+
+
+
+
+ خرید شما با شماره فاکتور{" "}
+
+ {" "}
+ {factorNumber}
+
+ با موفقیت کامل شد
+
+
+ میتونید با مراجعه به پنل کابری قسمت سفارش ها جزئیات سفارش رو
+ ببینید
+
+
+
+
+ مشاهده سفارش
+
+
+
+
+
+
+ ) : (
+
+
+
+
+ !
+
+
+
+ خرید شما انجام نشد
+
+
+ میتونید با مراجعه به پنل گفتینو یا در صفحه تماس با ما با تیم
+ پشتیبانی ما در تماس باشید
+
+
+
+
+ صفحه اصلی{" "}
+
+
+
+
+
+
+ )}
+ >
+ );
+};
+
+export default Page;
diff --git a/src/app/sitemap.xml/page.jsx b/src/app/sitemap.xml/page.jsx
new file mode 100644
index 0000000..ccf6997
--- /dev/null
+++ b/src/app/sitemap.xml/page.jsx
@@ -0,0 +1,29 @@
+async function getData(id) {
+ const res = await fetch(`https://storage.vesmeh.com/site-maps/site-map.xml`);
+ const xml = await res.text();
+ return xml;
+}
+
+export default async function Sitemap() {
+ const localUrl = [
+ {
+ url: "https://acme.com",
+ lastModified: new Date(),
+ changeFrequency: "yearly",
+ priority: 1,
+ },
+ {
+ url: "https://acme.com/about",
+ lastModified: new Date(),
+ changeFrequency: "monthly",
+ priority: 0.8,
+ },
+ {
+ url: "https://acme.com/blog",
+ lastModified: new Date(),
+ changeFrequency: "weekly",
+ priority: 0.5,
+ },
+ ];
+ return (await getData()).concat(localUrl);
+}
diff --git a/src/app/terms-and-conditions/page.jsx b/src/app/terms-and-conditions/page.jsx
new file mode 100644
index 0000000..363ce1a
--- /dev/null
+++ b/src/app/terms-and-conditions/page.jsx
@@ -0,0 +1,91 @@
+import Footer from "@comp/Footer/page";
+import Navbar from "@comp/Navbar/page";
+export const metadata = {
+ title: "قوانین و مقررات فروشگاه وسمه ",
+};
+const Page = () => {
+ const number = "02188195164";
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ قوانین و مقررات{" "}
+
+
+
+ کلیه عناصر موجود در این وب سایت، شامل اطلاعات، اسناد، تولیدات، لوگوها، گرافیک، تصاویر و خدمات، کلاً متعلق به فروشگاه اینترنتی وسمه(شرکت وسمه رسام ویستا) است. هیچ شخص حقیقی و حقوقی ای اجازه ی بدون اجازه کتبی صاحب سایت وسمه، اجازه کپی کردن، توزیع، نشر مجدد، واگذاری,نمایش و ارسال و انتقال عناصر مذکور را ندارد.
+
+
+
+
+
+
+
+
+
+ قوانین و مقررات فروشگاه وسمه{" "}
+
+
+ ز نظر حقوقی، در معاملات سایت فروشگاه اینترنتی وسمه، شرکت (X) به
+ عنوان فروشنده و کاربر اینترنتی سفارش دهنده به عنوان خریدار تلقی می
+ شوند. فروش کالا بر مبنای نوع و مقداری صورت می گیرد که کاربر سفارش
+ دهنده آن را در سایت فروشگاه وسمه درج نموده است. کاربر گرامی عکس
+ محصول قرار داده شده داخل سایت صرفا جهت آشنایی شما با نوع محصول است و
+ با کالای ارسال شده برای شما قطعا متفاوت خواهد بود. لذا به توضیحات
+ محصول توجه فرمایید. ارزش کالا یا کالاهای سفارش داده شده طبق فهرست
+ قیمت سایت محاسبه شده و شامل کلیه مالیاتها و عوارض فروش خواهد بود.
+ تنها مبلغی که در موارد معین به قیمت کالا اضافه می شود، هزینه ارسال و
+ بیمه کالا است. مکان تحویل کالا توسط مشتری سفارش دهنده در سایت درج
+ شده و فروشگاه وسمه به عنوان فروشنده متعهد است با رعایت سیاستهای
+ معین ارسال کالا، سفارش را در آن محل تحویل دهد. در صورت عدم حضور
+ سفارش دهنده در مکان تعیین شده، این فروشگاه هزینههای مربوطه را از
+ خریدار طلب خواهد نمود. در صورتی که فروشگاه اینترنتی وسمه به دلایلی
+ که خارج از اراده فروشگاه باشد، توان تحویل کالا را در موعد مقرر
+ نداشته باشد سفارش رد میشود و اگر پرداخت توسط خریدار انجام شده باشد
+ ، به خریدار وجه آن را برگشت خواهد داد. اگر پرداخت در محل باشد که
+ تنها سفارش توسط سایت رد میشود.
+
+
+
+ 1 - خریدار موظف است مبلغ سفارش را هنگام تحویل کالا (در صورت انتخاب
+ پرداخت نقدی) بپردازد. در صورت عدم پرداخت وجه فروشگاه وسمه حق دارد
+ از تحویل کالا خودداری و سفارش را فسخ نماید.
+
+
+ 2- هر گونه نقص و یا عیب فنی بایستی در لحظه تحویل سفارش به متصدی
+ تحویل کالا اعلام و کالا مرجوع گردد.
+
+
+
+
+ مالکیت معنوی
+
+
+ به محض پذیرش عضویت شما در سایت فروشگاه اینترنتی وسمه، عضویت شما
+ بیانگر پذیرش کلیه ضوابط و مقررات سایت بوده و متعهد هستید به این
+ ضوابط احترام گذاشته و آنها را رعایت کنید{" "}
+
+
+
+
+
+ >
+ );
+};
+
+export default Page;
diff --git a/style/fontiran.css b/style/fontiran.css
new file mode 100644
index 0000000..0e07f14
--- /dev/null
+++ b/style/fontiran.css
@@ -0,0 +1,92 @@
+/**
+*
+* Name: Kalameh ././fonts
+* Version: 4.1
+* Author: Naser Khadem
+* Created on: March 11, 2019
+* Updated on: July 17, 2021
+* Website: http://fontiran.com
+* Copyright: Commercial/Proprietary Software
+--------------------------------------------------------------------------------------
+فونت کلمه یک نرم افزار مالکیتی محسوب می شود. جهت آگاهی از قوانین استفاده از این فونت ها لطفا به وب سایت (فونت ایران دات کام) مراجعه نمایید
+--------------------------------------------------------------------------------------
+Kalameh ././fonts are considered a proprietary software. To gain information about the laws regarding the use of these ././fonts, please visit www.fontiran.com
+--------------------------------------------------------------------------------------
+This set of ././fonts are used in this project under the license: (.....)
+------------------------------------------------------------------------------------- .//fonts/-
+*
+**/
+
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 100;
+ src: url("/fonts/woff2/KalamehWeb-Thin.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Thin.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 200;
+ src: url("/fonts/woff2/KalamehWeb-ExtraLight.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/
+ url("/fonts/woff/KalamehWeb-ExtraLight.woff") format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 300;
+ src: url("/fonts/woff2/KalamehWeb-Light.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Light.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 500;
+ src: url("/fonts/woff2/KalamehWeb-Medium.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Medium.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 600;
+ src: url("/fonts/woff2/KalamehWeb-Semibold.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Semibold.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 800;
+ src: url("/fonts/woff2/KalamehWeb-ExtraBold.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-ExtraBold.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: 900;
+ src: url("/fonts/woff2/KalamehWeb-Black.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Black.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: bold;
+ src: url("/fonts/woff2/KalamehWeb-Bold.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Bold.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
+@font-face {
+ font-family: KalamehWeb;
+ font-style: normal;
+ font-weight: normal;
+ src: url("/fonts/woff2/KalamehWeb-Regular.woff2") format("woff2"),
+ /* FF39+,Chrome36+, Opera24+*/ url("/fonts/woff/KalamehWeb-Regular.woff")
+ format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
+}
diff --git a/style/globals.css b/style/globals.css
new file mode 100644
index 0000000..160c113
--- /dev/null
+++ b/style/globals.css
@@ -0,0 +1,278 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+@layer components {
+ .btn {
+ @apply py-2 px-4 rounded transition-all;
+ }
+
+ .btn-primary {
+ @apply bg-primary-500 text-white;
+ }
+ .btn-primary:hover {
+ @apply bg-primary-600;
+ }
+
+ .btn-outline-primary {
+ @apply border border-primary-500 text-primary-500;
+ }
+ .btn-outline-primary:hover {
+ @apply bg-primary-600 text-white;
+ }
+
+ .btn-secondary {
+ @apply bg-secondary-100 text-white;
+ }
+
+ .btn-light {
+ @apply bg-gray-100 text-black;
+ }
+ .btn-light:hover {
+ @apply bg-gray-300 text-black;
+ }
+
+ .btn-outline-light {
+ @apply border border-gray-100 text-white;
+ }
+ .btn-outline-light:hover {
+ @apply bg-gray-100 text-black;
+ }
+
+ .btn-secondary:hover {
+ @apply bg-secondary-200;
+ }
+
+ .btn-info {
+ @apply bg-info-100 text-white;
+ }
+ .btn-info:hover {
+ @apply bg-info-200;
+ }
+
+ .form-control {
+ @apply !appearance-none !border-[2px] bg-navbar !border-gray-300 !rounded-2xl !w-full !py-4 !px-3 !text-gray-700 !leading-tight focus:!border-[2px] focus:!border-gray-300 focus:!outline-none;
+ }
+
+ .form-control-white {
+ @apply !appearance-none !border-[2px] !bg-white !border-gray-300 !rounded-2xl !w-full !py-4 px-3 !text-gray-700 !leading-tight focus:!border-[2px] focus:!border-red-600 focus:!outline-none;
+ }
+}
+
+body {
+ font-family: KalamehWeb !important;
+ background: white;
+ --toastify-font-family: KalamehWeb !important;
+ --Chart-defaults-font-family: KalamehWeb !important;
+}
+
+.rtl {
+ direction: rtl;
+}
+
+.ltr {
+ direction: ltr;
+}
+
+.tr2 {
+ transition: 2s;
+}
+
+.tr03 {
+ transition: 0.3s all;
+}
+
+.fuck-cick {
+ pointer-events: none;
+}
+
+.bg-header {
+ background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
+ url(../public/images/bg-header.jpg);
+ height: 100vh;
+ background-position: center;
+ background-size: cover;
+}
+
+.bg-contact-us {
+ background: hsla(142, 71%, 45%, 1);
+
+ background: radial-gradient(
+ circle,
+ hsla(142, 71%, 45%, 1) 0%,
+ hsla(142, 71%, 29%, 1) 54%,
+ hsla(144, 61%, 20%, 1) 100%
+ );
+
+ background: -moz-radial-gradient(
+ circle,
+ hsla(142, 71%, 45%, 1) 0%,
+ hsla(142, 71%, 29%, 1) 54%,
+ hsla(144, 61%, 20%, 1) 100%
+ );
+
+ background: -webkit-radial-gradient(
+ circle,
+ hsla(142, 71%, 45%, 1) 0%,
+ hsla(142, 71%, 29%, 1) 54%,
+ hsla(144, 61%, 20%, 1) 100%
+ );
+
+ filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#22C55E", endColorstr="#16803D", GradientType=1 );
+ background-position: center;
+ background-size: cover;
+}
+
+.bg-error {
+ background: hsla(0, 71%, 45%, 1);
+
+ background: radial-gradient(
+ circle,
+ hsla(0, 71%, 45%, 1) 0%,
+ hsla(0, 100%, 21%, 1) 100%
+ );
+
+ background: -moz-radial-gradient(
+ circle,
+ hsla(0, 71%, 45%, 1) 0%,
+ hsla(0, 100%, 21%, 1) 100%
+ );
+
+ background: -webkit-radial-gradient(
+ circle,
+ hsla(0, 71%, 45%, 1) 0%,
+ hsla(0, 100%, 21%, 1) 100%
+ );
+
+ filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#C62121", endColorstr="#6C0000", GradientType=1 );
+ background-position: center;
+ background-size: cover;
+}
+
+.bg-navbar {
+ background: rgba(240, 240, 240, 0.4);
+}
+
+.bg-navbar2 {
+ background: rgba(240, 240, 240, 0.2);
+}
+
+.bg-glass {
+ background: rgba(255, 255, 255, 0.06);
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
+ backdrop-filter: blur(4.4px);
+ -webkit-backdrop-filter: blur(4.4px);
+}
+
+#swich-scrollbar::-webkit-scrollbar {
+ display: none;
+}
+
+/* Hide scrollbar for IE, Edge and Firefox */
+#swich-scrollbar {
+ -ms-overflow-style: none; /* IE and Edge */
+ scrollbar-width: none; /* Firefox */
+}
+.bg-login {
+ height: 100vh;
+
+ --s: 200px; /* control the size */
+ --c: #2189a836; /* first color */
+
+ --_g: #b3222200 8%, var(--c) 0 17%, #b3222200 0 58%;
+ background: linear-gradient(
+ 135deg,
+ #b3222200 20.5%,
+ var(--c) 0 29.5%,
+ #b3222200 0
+ )
+ 0 calc(var(--s) / 4),
+ linear-gradient(45deg, var(--_g)) calc(var(--s) / 2) 0,
+ linear-gradient(135deg, var(--_g), var(--c) 0 67%, #d6afaf00 0),
+ linear-gradient(
+ 45deg,
+ var(--_g),
+ var(--c) 0 67%,
+ #b3222200 0 83%,
+ var(--c) 0 92%,
+ #b3222200 0
+ ),
+ #1095c1; /* second color */
+ background-size: var(--s) var(--s);
+}
+
+/* Styles for WebKit browsers (Chrome, Safari) */
+.scroll-1::-webkit-scrollbar {
+ width: 6px;
+}
+
+body::-webkit-scrollbar-track {
+ background: #f1f1f1;
+}
+
+.scroll-1::-webkit-scrollbar-thumb {
+ background: #88888842;
+ border-radius: 10px;
+}
+
+.scroll-1::-webkit-scrollbar-thumb:hover {
+ background: #555;
+}
+
+.dots {
+ display: inline-block;
+ width: 180px;
+ white-space: nowrap;
+ overflow: hidden !important;
+ text-overflow: ellipsis;
+}
+
+/* Hide scrollbar for Chrome, Safari and Opera */
+.hide-scrollBar::-webkit-scrollbar {
+ display: none;
+}
+
+/* Hide scrollbar for IE, Edge and Firefox */
+.hide-scrollBar {
+ -ms-overflow-style: none; /* IE and Edge */
+ scrollbar-width: none; /* Firefox */
+}
+
+.bg-header-1 {
+ background-image: url("../public/images/1.gif");
+ background-size: cover;
+ background-position: center;
+}
+
+.bet-text {
+ background: -webkit-linear-gradient(
+ 90deg,
+ #ffffff,
+ #ffffff,
+ #007c4273,
+ #016e3298
+ );
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ opacity: 0.4;
+}
+
+.bet-text-green {
+ background: -webkit-linear-gradient(
+ 90deg,
+ #007c4273,
+ #016e3298,
+ #85918a98,
+ #ffffff,
+ #ffffff
+ );
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ opacity: 0.3;
+}
+
+.bg-hero-pattern {
+ background-position: center;
+ background-size: contain;
+ background-image: url(../public/images/patern.png);
+}
diff --git a/style/style.css b/style/style.css
new file mode 100644
index 0000000..9c191a2
--- /dev/null
+++ b/style/style.css
@@ -0,0 +1,9 @@
+@import url(./fontiran.css);
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-family: KalamehWeb !important;
+}
diff --git a/tailwind.config.js b/tailwind.config.js
index 7980350..eb72e53 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -2,17 +2,99 @@
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
+ "./plugins/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
- backgroundImage: {
- "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
- "gradient-conic":
- "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
+ colors: {
+ backgroundPrimary: {
+ 100: "#FFFBE6",
+ },
+ primary: {
+ 50: "#f0fdf5",
+ 100: "#dcfce9",
+ 200: "#bbf7d3",
+ 300: "#86efb0",
+ 400: "#4ade85",
+ 500: "#22c563",
+ 600: "#16a34e",
+ 700: "#15803f",
+ 800: "#166535",
+ 900: "#14532d",
+ 950: "#052e15",
+ },
+
+ secondary: {
+ 50: "#f8f8ed",
+ 100: "#edefd8",
+ 200: "#dbe0b6",
+ 300: "#c8cf94",
+ 400: "#abb566",
+ 500: "#8e9a48",
+ 600: "#6f7a36",
+ 700: "#555e2d",
+ 800: "#454c28",
+ 900: "#3c4225",
+ 950: "#1f2310",
+ },
+
+ textMain: {
+ 100: "#444444",
+ },
+ mainDisable: {
+ 100: "#888888",
+ },
+ info: {
+ 100: "#2B91EF",
+ 200: "#0061bd",
+ },
+ danger: {
+ 100: "#FF2C2C",
+ },
+ body: {
+ 100: "#EEEEEE",
+ },
+ },
+ },
+
+ screens: {
+ xs: "290px",
+ sm: "640px",
+ // => @media (min-width: 640px) { ... }
+
+ md: "768px",
+ // => @media (min-width: 768px) { ... }
+
+ lg: "1024px",
+ // => @media (min-width: 1024px) { ... }
+
+ xl: "1440px",
+ // => @media (min-width: 1280px) { ... }
+
+ "2xl": "1536px",
+ // => @media (min-width: 1536px) { ... }
+ },
+
+ animation: {
+ "infinite-scroll": "infinite-scroll 200s linear infinite",
+ },
+
+ keyframes: {
+ "infinite-scroll": {
+ from: { transform: "translateX(0)" },
+ to: { transform: "translateX(-100%)" },
},
},
},
plugins: [],
+ corePlugins: {
+ backdropOpacity: false,
+ backgroundOpacity: false,
+ borderOpacity: false,
+ divideOpacity: false,
+ ringOpacity: false,
+ textOpacity: false,
+ },
};