product details imges updated
@ -49,7 +49,7 @@ export default function Page({ params }) {
|
|||||||
<li>
|
<li>
|
||||||
<i className="fa-sharp fa-solid fa-slash-forward" />
|
<i className="fa-sharp fa-solid fa-slash-forward" />
|
||||||
</li>
|
</li>
|
||||||
<li>Blog Details</li>
|
<li>{newsItem.title}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div className="breadcrumb-image" />
|
<div className="breadcrumb-image" />
|
||||||
|
|||||||
@ -70,13 +70,14 @@ export default function Footer1() {
|
|||||||
>
|
>
|
||||||
<div className="single-footer-widget">
|
<div className="single-footer-widget">
|
||||||
<div className="widget-head">
|
<div className="widget-head">
|
||||||
<h5>About Company</h5>
|
<h5>About Cibus Industries</h5>
|
||||||
</div>
|
</div>
|
||||||
<div className="footer-content">
|
<div className="footer-content">
|
||||||
<p>
|
<p>
|
||||||
Nullam interdum libero vitae pretium aliquam <br />
|
Engineering high-performance coconut <br />
|
||||||
donec nibh purus laoreet in ullamcorper vel <br />
|
processing machinery that drives efficiency, <br />
|
||||||
malesuada sit amet enim.
|
scalability, and sustainability for businesses <br />
|
||||||
|
across the globe.
|
||||||
</p>
|
</p>
|
||||||
<div className="social-icon d-flex align-items-center">
|
<div className="social-icon d-flex align-items-center">
|
||||||
{socialLinks.map((elm, i) => (
|
{socialLinks.map((elm, i) => (
|
||||||
|
|||||||
@ -4,10 +4,12 @@ import { menuData } from "@/data/menu";
|
|||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { usePathname } from "next/navigation";
|
import { usePathname } from "next/navigation";
|
||||||
|
|
||||||
export default function Nav() {
|
export default function Nav() {
|
||||||
const [parentActive, setParentActive] = useState(-1);
|
const [parentActive, setParentActive] = useState(-1);
|
||||||
const [subparentActive, setsubParentActive] = useState(-1);
|
const [subparentActive, setsubParentActive] = useState(-1);
|
||||||
const pathname = usePathname();
|
const pathname = usePathname();
|
||||||
|
|
||||||
const isMenuActive = (menuItem = menuData[0]) => {
|
const isMenuActive = (menuItem = menuData[0]) => {
|
||||||
let active = false;
|
let active = false;
|
||||||
if (menuItem.href?.includes("/")) {
|
if (menuItem.href?.includes("/")) {
|
||||||
@ -22,11 +24,21 @@ export default function Nav() {
|
|||||||
active = true;
|
active = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (elm2.slug) {
|
||||||
|
if (`/product-details/${elm2.slug}`.split("/")[2] === pathname.split("/")[2]) {
|
||||||
|
active = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (elm2.submenu) {
|
if (elm2.submenu) {
|
||||||
elm2.submenu.forEach((elm3) => {
|
elm2.submenu.forEach((elm3) => {
|
||||||
if (elm3.href.split("/")[1] == pathname.split("/")[1]) {
|
if (elm3.href?.split("/")[1] == pathname.split("/")[1]) {
|
||||||
active = true;
|
active = true;
|
||||||
}
|
}
|
||||||
|
if (elm3.slug) {
|
||||||
|
if (`/product-details/${elm3.slug}`.split("/")[2] === pathname.split("/")[2]) {
|
||||||
|
active = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (elm2.homeMenuItems) {
|
if (elm2.homeMenuItems) {
|
||||||
@ -57,8 +69,10 @@ export default function Nav() {
|
|||||||
setParentActive((pre) => (pre == index ? -1 : index))
|
setParentActive((pre) => (pre == index ? -1 : index))
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{item.label} {item.iconClass && <i className={item.iconClass}></i>}{" "}
|
{item.label}{" "}
|
||||||
|
{item.iconClass && <i className={item.iconClass}></i>}{" "}
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{item.submenu && (
|
{item.submenu && (
|
||||||
<ul
|
<ul
|
||||||
className={`submenu ${
|
className={`submenu ${
|
||||||
@ -91,7 +105,9 @@ export default function Nav() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="homemenu-content text-center">
|
<div className="homemenu-content text-center">
|
||||||
<h4 className="homemenu-title">{homeItem.title}</h4>
|
<h4 className="homemenu-title">
|
||||||
|
{homeItem.title}
|
||||||
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
@ -100,7 +116,11 @@ export default function Nav() {
|
|||||||
) : (
|
) : (
|
||||||
<li key={subIndex} className={subItem.className || ""}>
|
<li key={subIndex} className={subItem.className || ""}>
|
||||||
<Link
|
<Link
|
||||||
href={subItem.href}
|
href={
|
||||||
|
subItem.slug
|
||||||
|
? `/product-details/${subItem.slug}`
|
||||||
|
: subItem.href
|
||||||
|
}
|
||||||
className={isMenuActive(subItem) ? "menuActive" : ""}
|
className={isMenuActive(subItem) ? "menuActive" : ""}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
setsubParentActive((pre) =>
|
setsubParentActive((pre) =>
|
||||||
@ -113,6 +133,7 @@ export default function Nav() {
|
|||||||
<i className={subItem.iconClass}></i>
|
<i className={subItem.iconClass}></i>
|
||||||
)}
|
)}
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{subItem.submenu && (
|
{subItem.submenu && (
|
||||||
<ul
|
<ul
|
||||||
className={`submenu ${
|
className={`submenu ${
|
||||||
@ -125,7 +146,11 @@ export default function Nav() {
|
|||||||
className={
|
className={
|
||||||
isMenuActive(nestedItem) ? "menuActive" : ""
|
isMenuActive(nestedItem) ? "menuActive" : ""
|
||||||
}
|
}
|
||||||
href={nestedItem.href}
|
href={
|
||||||
|
nestedItem.slug
|
||||||
|
? `/product-details/${nestedItem.slug}`
|
||||||
|
: nestedItem.href
|
||||||
|
}
|
||||||
>
|
>
|
||||||
{nestedItem.label}
|
{nestedItem.label}
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@ -57,10 +57,10 @@ export default function Blogs() {
|
|||||||
>
|
>
|
||||||
<div className="news-content">
|
<div className="news-content">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
{/* <li>
|
||||||
<i className="fa-regular fa-user" />
|
<i className="fa-regular fa-user" />
|
||||||
{leftBlog.author.name}
|
{leftBlog.author.name}
|
||||||
</li>
|
</li> */}
|
||||||
<li>
|
<li>
|
||||||
<i className="fa-solid fa-tag" />
|
<i className="fa-solid fa-tag" />
|
||||||
{leftBlog.category}
|
{leftBlog.category}
|
||||||
@ -96,10 +96,10 @@ export default function Blogs() {
|
|||||||
>
|
>
|
||||||
<div className="news-content">
|
<div className="news-content">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
{/* <li>
|
||||||
<i className="fa-regular fa-user" />
|
<i className="fa-regular fa-user" />
|
||||||
{item.author.name}
|
{item.author.name}
|
||||||
</li>
|
</li> */}
|
||||||
<li>
|
<li>
|
||||||
<i className="fa-solid fa-tag" />
|
<i className="fa-solid fa-tag" />
|
||||||
{item.category}
|
{item.category}
|
||||||
|
|||||||
@ -29,7 +29,7 @@ export default function Hero() {
|
|||||||
title: "Smart Coconut",
|
title: "Smart Coconut",
|
||||||
subtitle: "Solutions",
|
subtitle: "Solutions",
|
||||||
text: "Efficient machines for deshelling to drying coconut.",
|
text: "Efficient machines for deshelling to drying coconut.",
|
||||||
buttonText: "Get A Quote",
|
buttonText: "Start Exploring",
|
||||||
buttonLink: "/about",
|
buttonLink: "/about",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -39,7 +39,7 @@ export default function Hero() {
|
|||||||
subtitle: "Engineering",
|
subtitle: "Engineering",
|
||||||
text: "Automation and precision for coconut processing plants.",
|
text: "Automation and precision for coconut processing plants.",
|
||||||
buttonText: "Discover Our Innovations",
|
buttonText: "Discover Our Innovations",
|
||||||
buttonLink: "/about",
|
buttonLink: "/product",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
@ -48,7 +48,7 @@ export default function Hero() {
|
|||||||
subtitle: "Impact",
|
subtitle: "Impact",
|
||||||
text: "Trusted coconut machinery in 20+ countries worldwide.",
|
text: "Trusted coconut machinery in 20+ countries worldwide.",
|
||||||
buttonText: "Explore Global Projects",
|
buttonText: "Explore Global Projects",
|
||||||
buttonLink: "/about",
|
buttonLink: "/project",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@ -27,7 +27,7 @@ export default function ProductDetails({ productItem }) {
|
|||||||
<div
|
<div
|
||||||
className="post-featured-thumb bg-cover rounded"
|
className="post-featured-thumb bg-cover rounded"
|
||||||
style={{
|
style={{
|
||||||
backgroundImage: `url(${productItem.image})`,
|
backgroundImage: `url(${productItem.bigImage})`,
|
||||||
height: "400px",
|
height: "400px",
|
||||||
backgroundSize: "cover",
|
backgroundSize: "cover",
|
||||||
backgroundPosition: "center",
|
backgroundPosition: "center",
|
||||||
|
|||||||
@ -74,7 +74,10 @@ export default function Services() {
|
|||||||
<div className="container-fluid">
|
<div className="container-fluid">
|
||||||
<Swiper {...swiperOptions} className="swiper service-slider">
|
<Swiper {...swiperOptions} className="swiper service-slider">
|
||||||
{serviceItems.map((item, index) => (
|
{serviceItems.map((item, index) => (
|
||||||
<SwiperSlide className="swiper-slide" key={index}>
|
<SwiperSlide
|
||||||
|
className={`swiper-slide ${index === 2 ? "custom-padding-card" : ""}`}
|
||||||
|
key={index}
|
||||||
|
>
|
||||||
<div className="service-box-items">
|
<div className="service-box-items">
|
||||||
<div className="service-thumb">
|
<div className="service-thumb">
|
||||||
<Image src={item.imgSrc} width={346} height={236} alt="img" />
|
<Image src={item.imgSrc} width={346} height={236} alt="img" />
|
||||||
|
|||||||
13
data/menu.js
@ -67,11 +67,20 @@ export const menuData = [
|
|||||||
// { label: "Service Details", href: "/service-details/1" },
|
// { label: "Service Details", href: "/service-details/1" },
|
||||||
// ],
|
// ],
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
label: "Products",
|
label: "Products",
|
||||||
href: "/product",
|
href: "/product",
|
||||||
|
iconClass: "fa-regular fa-plus",
|
||||||
|
submenu: [
|
||||||
|
{ label: "Coconut Deshelling Machine", slug: "coconut-deshelling-machine" },
|
||||||
|
{ label: "Coconut Dryer (Hot Air / Tray Type)", slug: "coconut-dryer-hot-air-tray-type" },
|
||||||
|
{ label: "Coconut Pulverizer & Grinder", slug: "coconut-pulverizer-grinder" },
|
||||||
|
{ label: "Coconut Milk Extractor", slug: "coconut-milk-extractor" },
|
||||||
|
{ label: "Virgin Coconut Oil (VCO) Processing Equipment", slug: "virgin-coconut-oil-vco-processing-equipment" },
|
||||||
|
{ label: "Coconut Water Processing Unit", slug: "coconut-water-processing-unit" },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Turnkey Solutions",
|
label: "Turnkey Solutions",
|
||||||
href: "/turnkey-solutions",
|
href: "/turnkey-solutions",
|
||||||
},
|
},
|
||||||
|
|||||||
@ -6,7 +6,7 @@ export const serviceItems = [
|
|||||||
iconSrc: "/assets/img/products/icon-1.webp",
|
iconSrc: "/assets/img/products/icon-1.webp",
|
||||||
number: "01",
|
number: "01",
|
||||||
title: "Coconut Deshelling Machine",
|
title: "Coconut Deshelling Machine",
|
||||||
description: "Effortlessly remove coconut shells with high-speed, durable, low-maintenance, energy-efficient deshellers built for continuous production.",
|
description: "Remove coconut shells with high-speed, durable, low-maintenance, energy-efficient, robust deshellers built for continuous production.",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
@ -24,7 +24,7 @@ export const serviceItems = [
|
|||||||
iconSrc: "/assets/img/products/icon-3.webp",
|
iconSrc: "/assets/img/products/icon-3.webp",
|
||||||
number: "03",
|
number: "03",
|
||||||
title: "Coconut Pulverizer & Grinder",
|
title: "Coconut Pulverizer & Grinder",
|
||||||
description: "Grind dried coconut into fine powder with consistent output, low power consumption, minimal maintenance, high efficiency, and smooth operation.",
|
description: "Grind dried coconut into fine powder with consistent, reliable output, low power, high efficiency, and smooth automated operation.",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
@ -42,7 +42,7 @@ export const serviceItems = [
|
|||||||
iconSrc: "/assets/img/products/icon-5.webp",
|
iconSrc: "/assets/img/products/icon-5.webp",
|
||||||
number: "05",
|
number: "05",
|
||||||
title: "Virgin Coconut Oil (VCO) Processing Equipment",
|
title: "Virgin Coconut Oil (VCO) Processing Equipment",
|
||||||
description: "From cold press systems to filtration and bottling, complete VCO machinery for value-added production.",
|
description: "From cold press systems to filtration and bottling, complete VCO machinery for production.",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 6,
|
id: 6,
|
||||||
@ -51,7 +51,7 @@ export const serviceItems = [
|
|||||||
iconSrc: "/assets/img/products/icon-6.webp",
|
iconSrc: "/assets/img/products/icon-6.webp",
|
||||||
number: "06",
|
number: "06",
|
||||||
title: "Coconut Water Processing Unit",
|
title: "Coconut Water Processing Unit",
|
||||||
description: "Sterilize, filter, and bottle coconut water with our modular, maintainable setups. Designed for scalability, these systems ensure purity and shelf stability.",
|
description: "Sterilize, filter, and bottle coconut water with modular setups. Designed for scalability, Ensure purity and stability.",
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 29 KiB |
BIN
public/assets/img/product-details/grinder/1.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/assets/img/product-details/grinder/2.webp
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/assets/img/product-details/grinder/3.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/img/product-details/grinder/4.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/img/product-details/grinder/big-img.webp
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/assets/img/product-details/grinder/grinder-banner.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/assets/img/product-details/milk/1.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/img/product-details/milk/2.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/img/product-details/milk/3.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/img/product-details/milk/4.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/assets/img/product-details/milk/big-img.webp
Normal file
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/img/product-details/oil/1.webp
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
public/assets/img/product-details/oil/2.webp
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
public/assets/img/product-details/oil/3.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/assets/img/product-details/oil/4.webp
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
public/assets/img/product-details/oil/big-img.webp
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
public/assets/img/product-details/oil/oil-processing-banner.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/assets/img/product-details/water/1.webp
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/assets/img/product-details/water/2.webp
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/assets/img/product-details/water/3.webp
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
public/assets/img/product-details/water/4.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/assets/img/product-details/water/big-img.webp
Normal file
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 27 KiB |
@ -416,3 +416,8 @@
|
|||||||
.product-title{
|
.product-title{
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
|
@media (min-width: 1440px) and (max-width: 1920px) {
|
||||||
|
.custom-padding-card .service-box-items .service-content {
|
||||||
|
padding: 0 28px 30px 28px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -610,7 +610,8 @@ export const allProducts = [
|
|||||||
{
|
{
|
||||||
id: 30,
|
id: 30,
|
||||||
slug: "coconut-pulverizer-grinder",
|
slug: "coconut-pulverizer-grinder",
|
||||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
bannerImage: "/assets/img/product-details/grinder/grinder-banner.webp",
|
||||||
|
bigImage: "/assets/img/product-details/grinder/big-img.webp",
|
||||||
image: "/assets/img/products/coconut-grinder.webp",
|
image: "/assets/img/products/coconut-grinder.webp",
|
||||||
icon: "/assets/img/products/icon-3.webp",
|
icon: "/assets/img/products/icon-3.webp",
|
||||||
number: "03",
|
number: "03",
|
||||||
@ -668,17 +669,18 @@ export const allProducts = [
|
|||||||
</p>
|
</p>
|
||||||
`,
|
`,
|
||||||
images: [
|
images: [
|
||||||
"/assets/img/about-page/about/1.webp",
|
"/assets/img/product-details/grinder/1.webp",
|
||||||
"/assets/img/about-page/about/2.webp",
|
"/assets/img/product-details/grinder/2.webp",
|
||||||
"/assets/img/about-page/about/3.webp",
|
"/assets/img/product-details/grinder/3.webp",
|
||||||
"/assets/img/about-page/about/4.webp"
|
"/assets/img/product-details/grinder/4.webp"
|
||||||
],
|
],
|
||||||
delay: ".6s",
|
delay: ".6s",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 31,
|
id: 31,
|
||||||
slug: "coconut-milk-extractor",
|
slug: "coconut-milk-extractor",
|
||||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
bannerImage: "/assets/img/product-details/milk/milk-extractor-banner.webp",
|
||||||
|
bigImage: "/assets/img/product-details/milk/big-img.webp",
|
||||||
image: "/assets/img/products/coconut-milk-extractor.webp",
|
image: "/assets/img/products/coconut-milk-extractor.webp",
|
||||||
icon: "/assets/img/products/icon-4.webp",
|
icon: "/assets/img/products/icon-4.webp",
|
||||||
number: "04",
|
number: "04",
|
||||||
@ -736,17 +738,18 @@ export const allProducts = [
|
|||||||
</p>
|
</p>
|
||||||
`,
|
`,
|
||||||
images: [
|
images: [
|
||||||
"/assets/img/about-page/about/1.webp",
|
"/assets/img/product-details/milk/1.webp",
|
||||||
"/assets/img/about-page/about/2.webp",
|
"/assets/img/product-details/milk/2.webp",
|
||||||
"/assets/img/about-page/about/3.webp",
|
"/assets/img/product-details/milk/3.webp",
|
||||||
"/assets/img/about-page/about/4.webp"
|
"/assets/img/product-details/milk/4.webp"
|
||||||
],
|
],
|
||||||
delay: ".2s",
|
delay: ".2s",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 32,
|
id: 32,
|
||||||
slug: "virgin-coconut-oil-vco-processing-equipment",
|
slug: "virgin-coconut-oil-vco-processing-equipment",
|
||||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
bannerImage: "/assets/img/product-details/oil/oil-processing-banner.webp",
|
||||||
|
bigImage:"/assets/img/product-details/oil/big-img.webp",
|
||||||
image: "/assets/img/products/coconut-oil.webp",
|
image: "/assets/img/products/coconut-oil.webp",
|
||||||
icon: "/assets/img/products/icon-5.webp",
|
icon: "/assets/img/products/icon-5.webp",
|
||||||
number: "05",
|
number: "05",
|
||||||
@ -804,17 +807,18 @@ export const allProducts = [
|
|||||||
</p>
|
</p>
|
||||||
`,
|
`,
|
||||||
images: [
|
images: [
|
||||||
"/assets/img/about-page/about/1.webp",
|
"/assets/img/product-details/oil/1.webp",
|
||||||
"/assets/img/about-page/about/2.webp",
|
"/assets/img/product-details/oil/2.webp",
|
||||||
"/assets/img/about-page/about/3.webp",
|
"/assets/img/product-details/oil/3.webp",
|
||||||
"/assets/img/about-page/about/4.webp"
|
"/assets/img/product-details/oil/4.webp"
|
||||||
],
|
],
|
||||||
delay: ".4s",
|
delay: ".4s",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 33,
|
id: 33,
|
||||||
slug: "coconut-water-processing-unit",
|
slug: "coconut-water-processing-unit",
|
||||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
bannerImage: "/assets/img/product-details/water/water-processing-banner.webp",
|
||||||
|
bigImage:"/assets/img/product-details/water/big-img.webp",
|
||||||
image: "/assets/img/products/coconut-water.webp",
|
image: "/assets/img/products/coconut-water.webp",
|
||||||
icon: "/assets/img/products/icon-6.webp",
|
icon: "/assets/img/products/icon-6.webp",
|
||||||
number: "06",
|
number: "06",
|
||||||
@ -872,10 +876,10 @@ export const allProducts = [
|
|||||||
</p>
|
</p>
|
||||||
`,
|
`,
|
||||||
images: [
|
images: [
|
||||||
"/assets/img/about-page/about/1.webp",
|
"/assets/img/product-details/water/1.webp",
|
||||||
"/assets/img/about-page/about/2.webp",
|
"/assets/img/product-details/water/2.webp",
|
||||||
"/assets/img/about-page/about/3.webp",
|
"/assets/img/product-details/water/3.webp",
|
||||||
"/assets/img/about-page/about/4.webp"
|
"/assets/img/product-details/water/4.webp"
|
||||||
],
|
],
|
||||||
delay: ".6s",
|
delay: ".6s",
|
||||||
},
|
},
|
||||||
|
|||||||