product details page created
55
app/(products)/product-details/[slug]/page.jsx
Normal file
@ -0,0 +1,55 @@
|
||||
import Footer1 from "@/components/footers/Footer1";
|
||||
import Header1 from "@/components/headers/Header1";
|
||||
import ProductDetails from "@/components/homes/home-1/Products/product-details";
|
||||
import { allProducts } from "@/utlis/constant.utils";
|
||||
import Link from "next/link";
|
||||
import { notFound } from "next/navigation";
|
||||
|
||||
export const metadata = {
|
||||
title: "Product Details || Xbuild - Construction Next.js Template",
|
||||
description: "Xbuild - Construction Next.js Template",
|
||||
};
|
||||
|
||||
export async function generateStaticParams() {
|
||||
return allProducts.map((item) => ({ slug: item.slug }));
|
||||
}
|
||||
|
||||
export default function Page({ params }) {
|
||||
const productItem = allProducts.find((item) => item.slug === params.slug);
|
||||
|
||||
if (!productItem) {
|
||||
notFound();
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Header1 />
|
||||
<div
|
||||
className="breadcrumb-wrapper bg-cover"
|
||||
style={{ backgroundImage: `url(${productItem.bannerImage})` }}
|
||||
>
|
||||
<div className="container">
|
||||
<div className="breadcrumb-wrapper-items">
|
||||
<div className="page-heading">
|
||||
<div className="breadcrumb-sub-title">
|
||||
<h1 className="wow fadeInUp" data-wow-delay=".3s">
|
||||
{productItem.title}
|
||||
</h1>
|
||||
</div>
|
||||
<ul className="breadcrumb-items wow fadeInUp" data-wow-delay=".5s">
|
||||
<li><Link href="/">Home</Link></li>
|
||||
<li><i className="fa-sharp fa-solid fa-slash-forward" /></li>
|
||||
<li>{productItem.title}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div className="breadcrumb-image" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ProductDetails productItem={productItem} />
|
||||
|
||||
<Footer1 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@ -17,12 +17,12 @@ export default function BlogDetails({ newsItem }) {
|
||||
/>
|
||||
<div className="post-content">
|
||||
<ul className="post-list d-flex align-items-center">
|
||||
<li>
|
||||
{/* <li>
|
||||
<i className="fa-regular fa-user" /> {newsItem.author?.name || "Admin"}
|
||||
</li>
|
||||
<li>
|
||||
<i className="fa-solid fa-calendar-days" /> {newsItem.date}
|
||||
</li>
|
||||
</li> */}
|
||||
<li>
|
||||
<i className="fa-solid fa-tag" /> {newsItem.category}
|
||||
</li>
|
||||
|
||||
@ -32,7 +32,7 @@ export default function Blogs() {
|
||||
<div className="news-content">
|
||||
<ul className="post-list">
|
||||
<li>{news.category}</li>
|
||||
<li>{news.date}</li>
|
||||
{/* <li>{news.date}</li> */}
|
||||
</ul>
|
||||
<h4>
|
||||
<Link href={`/news-details/${news.slug}`}>
|
||||
@ -40,7 +40,7 @@ export default function Blogs() {
|
||||
</Link>
|
||||
</h4>
|
||||
<div className="author-items">
|
||||
<div className="author-info">
|
||||
{/* <div className="author-info">
|
||||
<Image
|
||||
src={news.author.image}
|
||||
width={40}
|
||||
@ -51,7 +51,7 @@ export default function Blogs() {
|
||||
<h6>Admin</h6>
|
||||
<p>{news.author.name}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> */}
|
||||
<Link
|
||||
href={`/news-details/${news.slug}`}
|
||||
className="link-btn"
|
||||
|
||||
73
components/homes/home-1/Products/product-details.jsx
Normal file
@ -0,0 +1,73 @@
|
||||
"use client";
|
||||
|
||||
import Image from "next/image";
|
||||
|
||||
export default function ProductDetails({ productItem }) {
|
||||
if (!productItem) {
|
||||
return (
|
||||
<section className="product-details-simple fix section-padding">
|
||||
<div className="container">
|
||||
<p className="text-center text-danger">Product not found.</p>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
||||
const groupedImages = [];
|
||||
for (let i = 0; i < productItem.images.length; i += 2) {
|
||||
groupedImages.push(productItem.images.slice(i, i + 2));
|
||||
}
|
||||
|
||||
return (
|
||||
<section className="product-details-simple fix section-padding">
|
||||
<div className="container">
|
||||
<div className="row g-4">
|
||||
<div className="col-12">
|
||||
<div className="single-product-post">
|
||||
<div
|
||||
className="post-featured-thumb bg-cover rounded"
|
||||
style={{
|
||||
backgroundImage: `url(${productItem.image})`,
|
||||
height: "400px",
|
||||
backgroundSize: "cover",
|
||||
backgroundPosition: "center",
|
||||
borderRadius: "12px",
|
||||
marginBottom: "30px",
|
||||
}}
|
||||
/>
|
||||
|
||||
<h2 className="product-title mb-3">{productItem.title}</h2>
|
||||
|
||||
<div
|
||||
className="post-description product-description"
|
||||
dangerouslySetInnerHTML={{ __html: productItem.description }}
|
||||
/>
|
||||
|
||||
{groupedImages.map((imagePair, index) => (
|
||||
<div className="row mt-5 mb-5" key={index}>
|
||||
{imagePair.map((imgSrc, subIndex) => (
|
||||
<div
|
||||
className={`${
|
||||
subIndex === 0 ? "col-lg-6" : "col-lg-6 col-md-12"
|
||||
} mt-2`}
|
||||
key={subIndex}
|
||||
>
|
||||
<div className="details-image">
|
||||
<Image
|
||||
src={imgSrc}
|
||||
width={633}
|
||||
height={460}
|
||||
alt={`Product Image ${index * 2 + subIndex + 1}`}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
@ -1,7 +1,7 @@
|
||||
import React from "react";
|
||||
import Pagination from "@/components/common/Pagination";
|
||||
import { services } from "@/data/services";
|
||||
import { products } from "@/data/services";
|
||||
import { allProducts } from "@/utlis/constant.utils";
|
||||
import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
import AnimatedText from "@/components/common/AnimatedText";
|
||||
@ -20,7 +20,7 @@ export default function Products() {
|
||||
</h2>
|
||||
</div>
|
||||
<div className="row">
|
||||
{products.map((product) => (
|
||||
{allProducts.map((product) => (
|
||||
<div
|
||||
key={product.id}
|
||||
className={`col-xl-4 col-lg-6 col-md-6 wow fadeInUp ${product.id === 33 ? "highlight-product" : ""}`}
|
||||
@ -46,18 +46,19 @@ export default function Products() {
|
||||
<div className="service-content">
|
||||
{/* <h2 className="number">{product.number}</h2> */}
|
||||
<h3>
|
||||
<Link href={`/service-details/${product.id}`}>
|
||||
<Link href={`/product-details/${product.slug}`}>
|
||||
{product.title}
|
||||
</Link>
|
||||
</h3>
|
||||
<p>{product.description}</p>
|
||||
<p>{product.para}</p>
|
||||
<Link
|
||||
href={`/service-details/${product.id}`}
|
||||
href={`/product-details/${product.slug}`}
|
||||
className="link-btn"
|
||||
>
|
||||
Explore More <i className="fa-solid fa-arrow-right" />
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
|
||||
@ -90,15 +90,12 @@ export default function Services() {
|
||||
<div className="service-content">
|
||||
<h2 className="number">{item.number}</h2>
|
||||
<h3>
|
||||
<Link href={`/service-details/${item.id}`}>
|
||||
<Link href={`/product-details/${item.slug}`}>
|
||||
{item.title}
|
||||
</Link>
|
||||
</h3>
|
||||
<p>{item.description}</p>
|
||||
<Link
|
||||
href={`/service-details/${item.id}`}
|
||||
className="link-btn"
|
||||
>
|
||||
<Link href={`/product-details/${item.slug}`} className="link-btn">
|
||||
Explore More <i className="fa-solid fa-arrow-right"></i>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
@ -1,26 +1,26 @@
|
||||
export const galleryImages = [
|
||||
{
|
||||
href: "/assets/img/footer/gallery-1.jpg",
|
||||
src: "/assets/img/footer/gallery-1.jpg",
|
||||
href: "/assets/img/project/chaff-cutter.webp",
|
||||
src: "/assets/img/project/chaff-cutter.webp",
|
||||
},
|
||||
{
|
||||
href: "/assets/img/footer/gallery-2.jpg",
|
||||
src: "/assets/img/footer/gallery-2.jpg",
|
||||
href: "/assets/img/project/coconut-buffer-tank.webp",
|
||||
src: "/assets/img/project/coconut-buffer-tank.webp",
|
||||
},
|
||||
{
|
||||
href: "/assets/img/footer/gallery-3.jpg",
|
||||
src: "/assets/img/footer/gallery-3.jpg",
|
||||
href: "/assets/img/project/conveyor.webp",
|
||||
src: "/assets/img/project/conveyor.webp",
|
||||
},
|
||||
{
|
||||
href: "/assets/img/footer/gallery-4.jpg",
|
||||
src: "/assets/img/footer/gallery-4.jpg",
|
||||
href: "/assets/img/project/deshelling-machine.webp",
|
||||
src: "/assets/img/project/deshelling-machine.webp",
|
||||
},
|
||||
{
|
||||
href: "/assets/img/footer/gallery-5.jpg",
|
||||
src: "/assets/img/footer/gallery-5.jpg",
|
||||
href: "/assets/img/project/leaf-dryer.webp",
|
||||
src: "/assets/img/project/leaf-dryer.webp",
|
||||
},
|
||||
{
|
||||
href: "/assets/img/footer/gallery-6.jpg",
|
||||
src: "/assets/img/footer/gallery-6.jpg",
|
||||
href: "/assets/img/project/winnowing.webp",
|
||||
src: "/assets/img/project/winnowing.webp",
|
||||
},
|
||||
];
|
||||
|
||||
@ -111,7 +111,7 @@ export const onepageLinks = [
|
||||
|
||||
export const footerLinks = [
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "About Us", href: "/about" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Turnkey Solutions", href: "/turnkey-solutions" },
|
||||
{ name: "Blog", href: "/blog" },
|
||||
{ name: "Contact", href: "/contact" },
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
export const serviceItems = [
|
||||
{
|
||||
id: 1,
|
||||
slug: "coconut-deshelling-machine",
|
||||
imgSrc: "/assets/img/products/coconut-deshelling.webp",
|
||||
iconSrc: "/assets/img/products/icon-1.webp",
|
||||
number: "01",
|
||||
@ -9,6 +10,7 @@ export const serviceItems = [
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
slug: "coconut-dryer-hot-air-tray-type",
|
||||
imgSrc: "/assets/img/products/coconut-dryer.webp",
|
||||
iconSrc: "/assets/img/products/icon-2.webp",
|
||||
number: "02",
|
||||
@ -17,6 +19,7 @@ export const serviceItems = [
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
slug: "coconut-pulverizer-grinder",
|
||||
imgSrc: "/assets/img/products/coconut-grinder.webp",
|
||||
iconSrc: "/assets/img/products/icon-3.webp",
|
||||
number: "03",
|
||||
@ -25,6 +28,7 @@ export const serviceItems = [
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
slug: "coconut-milk-extractor",
|
||||
imgSrc: "/assets/img/products/coconut-milk-extractor.webp",
|
||||
iconSrc: "/assets/img/products/icon-4.webp",
|
||||
number: "04",
|
||||
@ -33,6 +37,7 @@ export const serviceItems = [
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
slug: "virgin-coconut-oil-vco-processing-equipment",
|
||||
imgSrc: "/assets/img/products/coconut-oil.webp",
|
||||
iconSrc: "/assets/img/products/icon-5.webp",
|
||||
number: "05",
|
||||
@ -41,62 +46,16 @@ export const serviceItems = [
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
slug: "coconut-water-processing-unit",
|
||||
imgSrc: "/assets/img/products/coconut-water.webp",
|
||||
iconSrc: "/assets/img/products/icon-6.webp",
|
||||
number: "06",
|
||||
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.",
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
imgSrc: "/assets/img/products/coconut-deshelling.webp",
|
||||
iconSrc: "/assets/img/products/icon-1.webp",
|
||||
number: "01",
|
||||
title: "Coconut Deshelling Machine",
|
||||
description: "Effortlessly remove coconut shells with high-speed, durable, low-maintenance, energy-efficient deshellers built for continuous production.",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
imgSrc: "/assets/img/products/coconut-dryer.webp",
|
||||
iconSrc: "/assets/img/products/icon-2.webp",
|
||||
number: "02",
|
||||
title: "Coconut Dryer (Hot Air / Tray Type)",
|
||||
description: "Achieve uniform drying with our energy-efficient, high-capacity dryers designed to preserve quality and extend shelf life.",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
imgSrc: "/assets/img/products/coconut-grinder.webp",
|
||||
iconSrc: "/assets/img/products/icon-3.webp",
|
||||
number: "03",
|
||||
title: "Coconut Pulverizer & Grinder",
|
||||
description: "Grind dried coconut into fine powder with consistent output, low power consumption, minimal maintenance, high efficiency, and smooth operation.",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
imgSrc: "/assets/img/products/coconut-milk-extractor.webp",
|
||||
iconSrc: "/assets/img/products/icon-4.webp",
|
||||
number: "04",
|
||||
title: "Coconut Milk Extractor",
|
||||
description: "Extract rich, pure coconut milk with hygienic, food-grade, corrosion-resistant machinery suitable for small and industrial-scale operations.",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
imgSrc: "/assets/img/products/coconut-oil.webp",
|
||||
iconSrc: "/assets/img/products/icon-5.webp",
|
||||
number: "05",
|
||||
title: "Virgin Coconut Oil (VCO) Processing Equipment",
|
||||
description: "From cold press systems to filtration and bottling, complete VCO machinery for value-added production.",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
imgSrc: "/assets/img/products/coconut-water.webp",
|
||||
iconSrc: "/assets/img/products/icon-6.webp",
|
||||
number: "06",
|
||||
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.",
|
||||
},
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
export const serviceItems2 = [
|
||||
{
|
||||
id: 9,
|
||||
|
||||
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 25 KiB |
BIN
public/assets/img/product-details/deshelling/1.webp
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/assets/img/product-details/deshelling/2.webp
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
public/assets/img/product-details/deshelling/3.webp
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
public/assets/img/product-details/deshelling/4.webp
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
public/assets/img/product-details/deshelling/big-img.webp
Normal file
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 32 KiB |
BIN
public/assets/img/product-details/dryer/1.webp
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
public/assets/img/product-details/dryer/2.webp
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
public/assets/img/product-details/dryer/3.webp
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
public/assets/img/product-details/dryer/4.webp
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/assets/img/product-details/dryer/big-img.webp
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/assets/img/product-details/dryer/dryer-banner.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/assets/img/project/chaff-cutter.webp
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
public/assets/img/project/coconut-buffer-tank.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
public/assets/img/project/conveyor.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/assets/img/project/deshelling-machine.webp
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
public/assets/img/project/leaf-dryer.webp
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
public/assets/img/project/winnowing.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
@ -398,3 +398,21 @@
|
||||
}
|
||||
}
|
||||
|
||||
.custom-highlight-box {
|
||||
background-color: #F2F5FA;
|
||||
border-left: 4px solid #f55b1f;
|
||||
padding: 20px 24px;
|
||||
position: relative;
|
||||
font-style: italic;
|
||||
color: #000;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.custom-highlight-box .quote-icon {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.product-title{
|
||||
font-size: 30px;
|
||||
}
|
||||
@ -2,7 +2,7 @@ export const allBlogs = [
|
||||
{
|
||||
id: 1,
|
||||
slug: "rise-of-turnkey-coconut-processing-plants",
|
||||
image: "/assets/img/home/blog/blog-1.webp",
|
||||
image: "/assets/img/blog/blog-1.webp",
|
||||
bannerImage: "/assets/img/blog/blog-details-1.webp",
|
||||
images: ["/assets/img/blog/blog-card1.webp", "/assets/img/blog/blog-card1.webp"],
|
||||
category: "Coconut Tech",
|
||||
@ -81,7 +81,7 @@ export const allBlogs = [
|
||||
{
|
||||
id: 2,
|
||||
slug: "coconut-deshelling-machine-upgrades",
|
||||
image: "/assets/img/home/blog/blog-2.webp",
|
||||
image: "/assets/img/blog/blog-2.webp",
|
||||
bannerImage: "/assets/img/blog/blog-details-2.webp",
|
||||
images: ["/assets/img/blog/blog-card2.webp", "/assets/img/blog/blog-card2.webp"],
|
||||
category: "Machine Insights",
|
||||
@ -153,7 +153,7 @@ export const allBlogs = [
|
||||
{
|
||||
id: 3,
|
||||
slug: "choosing-the-right-coconut-dryer",
|
||||
image: "/assets/img/home/blog/blog-3.webp",
|
||||
image: "/assets/img/blog/blog-3.webp",
|
||||
bannerImage: "/assets/img/blog/blog-details-3.webp",
|
||||
images: ["/assets/img/blog/blog-card3.webp", "/assets/img/blog/blog-card3.webp"],
|
||||
category: "Operational Tips",
|
||||
@ -468,3 +468,415 @@ export const allBlogs = [
|
||||
`
|
||||
},
|
||||
];
|
||||
export const allProducts = [
|
||||
{
|
||||
id: 28,
|
||||
slug: "coconut-deshelling-machine",
|
||||
bannerImage: "/assets/img/product-details/deshelling/deshelling-banner.webp",
|
||||
bigImage: "/assets/img/product-details/deshelling/big-img.webp",
|
||||
image: "/assets/img/products/coconut-deshelling.webp",
|
||||
icon: "/assets/img/products/icon-1.webp",
|
||||
number: "01",
|
||||
title: "Coconut Deshelling Machine",
|
||||
para: "Effortlessly remove coconut shells with high-speed, durable, low-maintenance, energy-efficient deshellers built for continuous production.",
|
||||
description: `
|
||||
<p>
|
||||
At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale. At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale.
|
||||
</p>
|
||||
<div class="custom-highlight-box mt-4 mb-4">
|
||||
<p>
|
||||
<em>
|
||||
Our success is built on a strong foundation of engineering excellence, client–first partnerships, and a deep understanding of the entire coconut value chain – from raw fruit handling to high-value finished goods like virgin coconut oil, coconut flour, milk, and water.
|
||||
</em>
|
||||
</p>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 36 36"
|
||||
fill="none"
|
||||
class="quote-icon"
|
||||
>
|
||||
<path
|
||||
d="M7.71428 20.0711H0.5V5.64258H14.9286V20.4531L9.97665 30.3568H3.38041L8.16149 20.7947L8.5233 20.0711H7.71428Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
<path
|
||||
d="M28.2846 20.0711H21.0703V5.64258H35.4989V20.4531L30.547 30.3568H23.9507L28.7318 20.7947L29.0936 20.0711H28.2846Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Every workflow is crafted with efficiency, consistency, and quality control in mind. From raw material intake to final equipment testing, we follow stringent QA protocols and standardized SOPs to ensure every machine leaving our factory floor exceeds client expectations.
|
||||
</p>
|
||||
<p>
|
||||
We implement real-time tracking systems to monitor production stages and maintain transparency from design to dispatch. Our engineering and fabrication teams work in sync, minimizing delays and ensuring quick turnaround times without compromising on accuracy.
|
||||
</p>
|
||||
<p>
|
||||
Each machine undergoes rigorous performance simulations and trial runs before deployment, ensuring seamless integration at the client site. Whether it's a single machine or a full turnkey system, our workflows are designed to deliver faster, smarter, and cleaner — empowering coconut processors around the world with machinery that’s built to perform, built to last.
|
||||
</p>
|
||||
<p class="mt-3">
|
||||
Every step within our factory is built on a philosophy of precision and accountability. From laser-cut steel frames to food-grade welds, each process is handled with care by skilled technicians using advanced tools. Our workflows are structured for high repeatability, allowing us to meet both large-scale batch orders and custom one-off builds without compromise. At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p class=mt-3>
|
||||
Cross-functional collaboration between design, production, and quality assurance ensures that innovations move swiftly from prototype to production. We also maintain detailed documentation and traceability for every machine, ensuring long-term serviceability and compliance with international standards.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
`,
|
||||
images: [
|
||||
"/assets/img/product-details/deshelling/1.webp",
|
||||
"/assets/img/product-details/deshelling/2.webp",
|
||||
"/assets/img/product-details/deshelling/3.webp",
|
||||
"/assets/img/product-details/deshelling/4.webp"
|
||||
],
|
||||
delay: ".2s",
|
||||
},
|
||||
{
|
||||
id: 29,
|
||||
slug: "coconut-dryer-hot-air-tray-type",
|
||||
bannerImage: "/assets/img/product-details/dryer/dryer-banner.webp",
|
||||
bigImage: "/assets/img/product-details/dryer/big-img.webp",
|
||||
image: "/assets/img/products/coconut-dryer.webp",
|
||||
icon: "/assets/img/products/icon-2.webp",
|
||||
number: "02",
|
||||
title: "Coconut Dryer (Hot Air / Tray Type)",
|
||||
para: "Achieve uniform drying with our energy-efficient, high-capacity dryers designed to preserve quality and extend shelf life.",
|
||||
description: `
|
||||
<p>
|
||||
At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale.
|
||||
</p>
|
||||
<div class="custom-highlight-box mt-4 mb-4">
|
||||
<p>
|
||||
<em>
|
||||
Our success is built on a strong foundation of engineering excellence, client–first partnerships, and a deep understanding of the entire coconut value chain – from raw fruit handling to high-value finished goods like virgin coconut oil, coconut flour, milk, and water.
|
||||
</em>
|
||||
</p>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 36 36"
|
||||
fill="none"
|
||||
class="quote-icon"
|
||||
>
|
||||
<path
|
||||
d="M7.71428 20.0711H0.5V5.64258H14.9286V20.4531L9.97665 30.3568H3.38041L8.16149 20.7947L8.5233 20.0711H7.71428Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
<path
|
||||
d="M28.2846 20.0711H21.0703V5.64258H35.4989V20.4531L30.547 30.3568H23.9507L28.7318 20.7947L29.0936 20.0711H28.2846Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Every workflow is crafted with efficiency, consistency, and quality control in mind. From raw material intake to final equipment testing, we follow stringent QA protocols and standardized SOPs to ensure every machine leaving our factory floor exceeds client expectations.
|
||||
</p>
|
||||
<p>
|
||||
We implement real-time tracking systems to monitor production stages and maintain transparency from design to dispatch. Our engineering and fabrication teams work in sync, minimizing delays and ensuring quick turnaround times without compromising on accuracy.
|
||||
</p>
|
||||
<p>
|
||||
Each machine undergoes rigorous performance simulations and trial runs before deployment, ensuring seamless integration at the client site. Whether it's a single machine or a full turnkey system, our workflows are designed to deliver faster, smarter, and cleaner — empowering coconut processors around the world with machinery that’s built to perform, built to last.
|
||||
</p>
|
||||
<p class="mt-3">
|
||||
Every step within our factory is built on a philosophy of precision and accountability. From laser-cut steel frames to food-grade welds, each process is handled with care by skilled technicians using advanced tools. Our workflows are structured for high repeatability, allowing us to meet both large-scale batch orders and custom one-off builds without compromise. At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p class=mt-3>
|
||||
Cross-functional collaboration between design, production, and quality assurance ensures that innovations move swiftly from prototype to production. We also maintain detailed documentation and traceability for every machine, ensuring long-term serviceability and compliance with international standards.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
`,
|
||||
images: [
|
||||
"/assets/img/product-details/dryer/1.webp",
|
||||
"/assets/img/product-details/dryer/2.webp",
|
||||
"/assets/img/product-details/dryer/3.webp",
|
||||
"/assets/img/product-details/dryer/4.webp",
|
||||
],
|
||||
delay: ".4s",
|
||||
},
|
||||
{
|
||||
id: 30,
|
||||
slug: "coconut-pulverizer-grinder",
|
||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
||||
image: "/assets/img/products/coconut-grinder.webp",
|
||||
icon: "/assets/img/products/icon-3.webp",
|
||||
number: "03",
|
||||
title: "Coconut Pulverizer & Grinder",
|
||||
para: "Grind dried coconut into fine powder with consistent output, low power consumption, minimal maintenance, high efficiency, and smooth operation.",
|
||||
description: `
|
||||
<p>
|
||||
At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale.
|
||||
</p>
|
||||
<div class="custom-highlight-box mt-4 mb-4">
|
||||
<p>
|
||||
<em>
|
||||
Our success is built on a strong foundation of engineering excellence, client–first partnerships, and a deep understanding of the entire coconut value chain – from raw fruit handling to high-value finished goods like virgin coconut oil, coconut flour, milk, and water.
|
||||
</em>
|
||||
</p>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 36 36"
|
||||
fill="none"
|
||||
class="quote-icon"
|
||||
>
|
||||
<path
|
||||
d="M7.71428 20.0711H0.5V5.64258H14.9286V20.4531L9.97665 30.3568H3.38041L8.16149 20.7947L8.5233 20.0711H7.71428Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
<path
|
||||
d="M28.2846 20.0711H21.0703V5.64258H35.4989V20.4531L30.547 30.3568H23.9507L28.7318 20.7947L29.0936 20.0711H28.2846Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Every workflow is crafted with efficiency, consistency, and quality control in mind. From raw material intake to final equipment testing, we follow stringent QA protocols and standardized SOPs to ensure every machine leaving our factory floor exceeds client expectations.
|
||||
</p>
|
||||
<p>
|
||||
We implement real-time tracking systems to monitor production stages and maintain transparency from design to dispatch. Our engineering and fabrication teams work in sync, minimizing delays and ensuring quick turnaround times without compromising on accuracy.
|
||||
</p>
|
||||
<p>
|
||||
Each machine undergoes rigorous performance simulations and trial runs before deployment, ensuring seamless integration at the client site. Whether it's a single machine or a full turnkey system, our workflows are designed to deliver faster, smarter, and cleaner — empowering coconut processors around the world with machinery that’s built to perform, built to last.
|
||||
</p>
|
||||
<p class="mt-3">
|
||||
Every step within our factory is built on a philosophy of precision and accountability. From laser-cut steel frames to food-grade welds, each process is handled with care by skilled technicians using advanced tools. Our workflows are structured for high repeatability, allowing us to meet both large-scale batch orders and custom one-off builds without compromise. At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p class=mt-3>
|
||||
Cross-functional collaboration between design, production, and quality assurance ensures that innovations move swiftly from prototype to production. We also maintain detailed documentation and traceability for every machine, ensuring long-term serviceability and compliance with international standards.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
`,
|
||||
images: [
|
||||
"/assets/img/about-page/about/1.webp",
|
||||
"/assets/img/about-page/about/2.webp",
|
||||
"/assets/img/about-page/about/3.webp",
|
||||
"/assets/img/about-page/about/4.webp"
|
||||
],
|
||||
delay: ".6s",
|
||||
},
|
||||
{
|
||||
id: 31,
|
||||
slug: "coconut-milk-extractor",
|
||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
||||
image: "/assets/img/products/coconut-milk-extractor.webp",
|
||||
icon: "/assets/img/products/icon-4.webp",
|
||||
number: "04",
|
||||
title: "Coconut Milk Extractor",
|
||||
para: "Extract rich, pure coconut milk with hygienic, food-grade, corrosion-resistant machinery suitable for small and industrial-scale operations.",
|
||||
description: `
|
||||
<p>
|
||||
At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale.
|
||||
</p>
|
||||
<div class="custom-highlight-box mt-4 mb-4">
|
||||
<p>
|
||||
<em>
|
||||
Our success is built on a strong foundation of engineering excellence, client–first partnerships, and a deep understanding of the entire coconut value chain – from raw fruit handling to high-value finished goods like virgin coconut oil, coconut flour, milk, and water.
|
||||
</em>
|
||||
</p>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 36 36"
|
||||
fill="none"
|
||||
class="quote-icon"
|
||||
>
|
||||
<path
|
||||
d="M7.71428 20.0711H0.5V5.64258H14.9286V20.4531L9.97665 30.3568H3.38041L8.16149 20.7947L8.5233 20.0711H7.71428Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
<path
|
||||
d="M28.2846 20.0711H21.0703V5.64258H35.4989V20.4531L30.547 30.3568H23.9507L28.7318 20.7947L29.0936 20.0711H28.2846Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Every workflow is crafted with efficiency, consistency, and quality control in mind. From raw material intake to final equipment testing, we follow stringent QA protocols and standardized SOPs to ensure every machine leaving our factory floor exceeds client expectations.
|
||||
</p>
|
||||
<p>
|
||||
We implement real-time tracking systems to monitor production stages and maintain transparency from design to dispatch. Our engineering and fabrication teams work in sync, minimizing delays and ensuring quick turnaround times without compromising on accuracy.
|
||||
</p>
|
||||
<p>
|
||||
Each machine undergoes rigorous performance simulations and trial runs before deployment, ensuring seamless integration at the client site. Whether it's a single machine or a full turnkey system, our workflows are designed to deliver faster, smarter, and cleaner — empowering coconut processors around the world with machinery that’s built to perform, built to last.
|
||||
</p>
|
||||
<p class="mt-3">
|
||||
Every step within our factory is built on a philosophy of precision and accountability. From laser-cut steel frames to food-grade welds, each process is handled with care by skilled technicians using advanced tools. Our workflows are structured for high repeatability, allowing us to meet both large-scale batch orders and custom one-off builds without compromise. At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p class=mt-3>
|
||||
Cross-functional collaboration between design, production, and quality assurance ensures that innovations move swiftly from prototype to production. We also maintain detailed documentation and traceability for every machine, ensuring long-term serviceability and compliance with international standards.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
`,
|
||||
images: [
|
||||
"/assets/img/about-page/about/1.webp",
|
||||
"/assets/img/about-page/about/2.webp",
|
||||
"/assets/img/about-page/about/3.webp",
|
||||
"/assets/img/about-page/about/4.webp"
|
||||
],
|
||||
delay: ".2s",
|
||||
},
|
||||
{
|
||||
id: 32,
|
||||
slug: "virgin-coconut-oil-vco-processing-equipment",
|
||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
||||
image: "/assets/img/products/coconut-oil.webp",
|
||||
icon: "/assets/img/products/icon-5.webp",
|
||||
number: "05",
|
||||
title: "Virgin Coconut Oil (VCO) Processing Equipment",
|
||||
para: "From cold press systems to filtration and bottling, complete VCO machinery for value-added production.",
|
||||
description: `
|
||||
<p>
|
||||
At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale.
|
||||
</p>
|
||||
<div class="custom-highlight-box mt-4 mb-4">
|
||||
<p>
|
||||
<em>
|
||||
Our success is built on a strong foundation of engineering excellence, client–first partnerships, and a deep understanding of the entire coconut value chain – from raw fruit handling to high-value finished goods like virgin coconut oil, coconut flour, milk, and water.
|
||||
</em>
|
||||
</p>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 36 36"
|
||||
fill="none"
|
||||
class="quote-icon"
|
||||
>
|
||||
<path
|
||||
d="M7.71428 20.0711H0.5V5.64258H14.9286V20.4531L9.97665 30.3568H3.38041L8.16149 20.7947L8.5233 20.0711H7.71428Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
<path
|
||||
d="M28.2846 20.0711H21.0703V5.64258H35.4989V20.4531L30.547 30.3568H23.9507L28.7318 20.7947L29.0936 20.0711H28.2846Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Every workflow is crafted with efficiency, consistency, and quality control in mind. From raw material intake to final equipment testing, we follow stringent QA protocols and standardized SOPs to ensure every machine leaving our factory floor exceeds client expectations.
|
||||
</p>
|
||||
<p>
|
||||
We implement real-time tracking systems to monitor production stages and maintain transparency from design to dispatch. Our engineering and fabrication teams work in sync, minimizing delays and ensuring quick turnaround times without compromising on accuracy.
|
||||
</p>
|
||||
<p>
|
||||
Each machine undergoes rigorous performance simulations and trial runs before deployment, ensuring seamless integration at the client site. Whether it's a single machine or a full turnkey system, our workflows are designed to deliver faster, smarter, and cleaner — empowering coconut processors around the world with machinery that’s built to perform, built to last.
|
||||
</p>
|
||||
<p class="mt-3">
|
||||
Every step within our factory is built on a philosophy of precision and accountability. From laser-cut steel frames to food-grade welds, each process is handled with care by skilled technicians using advanced tools. Our workflows are structured for high repeatability, allowing us to meet both large-scale batch orders and custom one-off builds without compromise. At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p class=mt-3>
|
||||
Cross-functional collaboration between design, production, and quality assurance ensures that innovations move swiftly from prototype to production. We also maintain detailed documentation and traceability for every machine, ensuring long-term serviceability and compliance with international standards.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
`,
|
||||
images: [
|
||||
"/assets/img/about-page/about/1.webp",
|
||||
"/assets/img/about-page/about/2.webp",
|
||||
"/assets/img/about-page/about/3.webp",
|
||||
"/assets/img/about-page/about/4.webp"
|
||||
],
|
||||
delay: ".4s",
|
||||
},
|
||||
{
|
||||
id: 33,
|
||||
slug: "coconut-water-processing-unit",
|
||||
bannerImage: "/assets/img/products/coconut-deshelling.webp",
|
||||
image: "/assets/img/products/coconut-water.webp",
|
||||
icon: "/assets/img/products/icon-6.webp",
|
||||
number: "06",
|
||||
title: "Coconut Water Processing Unit",
|
||||
para: "Sterilize, filter, and bottle coconut water with our modular, maintainable setups. Designed for scalability, these systems ensure purity and shelf stability.",
|
||||
description: `
|
||||
<p>
|
||||
At the heart of Cibus Industries is a purpose-built, 40,000 sq. ft. manufacturing facility where precision engineering meets lean manufacturing. Designed to handle high-complexity builds with ease, our factory is equipped with CNC machining centers, robotic welding units, and modular assembly lines — all optimized for delivering world-class coconut processing machinery at scale.
|
||||
</p>
|
||||
<div class="custom-highlight-box mt-4 mb-4">
|
||||
<p>
|
||||
<em>
|
||||
Our success is built on a strong foundation of engineering excellence, client–first partnerships, and a deep understanding of the entire coconut value chain – from raw fruit handling to high-value finished goods like virgin coconut oil, coconut flour, milk, and water.
|
||||
</em>
|
||||
</p>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 36 36"
|
||||
fill="none"
|
||||
class="quote-icon"
|
||||
>
|
||||
<path
|
||||
d="M7.71428 20.0711H0.5V5.64258H14.9286V20.4531L9.97665 30.3568H3.38041L8.16149 20.7947L8.5233 20.0711H7.71428Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
<path
|
||||
d="M28.2846 20.0711H21.0703V5.64258H35.4989V20.4531L30.547 30.3568H23.9507L28.7318 20.7947L29.0936 20.0711H28.2846Z"
|
||||
stroke="#F55B1F"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
Every workflow is crafted with efficiency, consistency, and quality control in mind. From raw material intake to final equipment testing, we follow stringent QA protocols and standardized SOPs to ensure every machine leaving our factory floor exceeds client expectations.
|
||||
</p>
|
||||
<p>
|
||||
We implement real-time tracking systems to monitor production stages and maintain transparency from design to dispatch. Our engineering and fabrication teams work in sync, minimizing delays and ensuring quick turnaround times without compromising on accuracy.
|
||||
</p>
|
||||
<p>
|
||||
Each machine undergoes rigorous performance simulations and trial runs before deployment, ensuring seamless integration at the client site. Whether it's a single machine or a full turnkey system, our workflows are designed to deliver faster, smarter, and cleaner — empowering coconut processors around the world with machinery that’s built to perform, built to last.
|
||||
</p>
|
||||
<p class="mt-3">
|
||||
Every step within our factory is built on a philosophy of precision and accountability. From laser-cut steel frames to food-grade welds, each process is handled with care by skilled technicians using advanced tools. Our workflows are structured for high repeatability, allowing us to meet both large-scale batch orders and custom one-off builds without compromise. At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p class=mt-3>
|
||||
Cross-functional collaboration between design, production, and quality assurance ensures that innovations move swiftly from prototype to production. We also maintain detailed documentation and traceability for every machine, ensuring long-term serviceability and compliance with international standards.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
<p>
|
||||
At Cibus, our workflows aren’t static — they evolve. We continuously refine our operations to reflect new technology, feedback from the field, and shifting global demands. This agile mindset keeps us ahead of industry curves and keeps our clients equipped with the best-in-class processing solutions they deserve.
|
||||
</p>
|
||||
`,
|
||||
images: [
|
||||
"/assets/img/about-page/about/1.webp",
|
||||
"/assets/img/about-page/about/2.webp",
|
||||
"/assets/img/about-page/about/3.webp",
|
||||
"/assets/img/about-page/about/4.webp"
|
||||
],
|
||||
delay: ".6s",
|
||||
},
|
||||
];
|
||||
|
||||