diff --git a/app/(products)/product-details/[slug]/page.jsx b/app/(products)/product-details/[slug]/page.jsx new file mode 100644 index 0000000..ec19eb2 --- /dev/null +++ b/app/(products)/product-details/[slug]/page.jsx @@ -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 ( + <> + +
+
+
+
+
+

+ {productItem.title} +

+
+
    +
  • Home
  • +
  • +
  • {productItem.title}
  • +
+
+
+
+
+
+ + + + + + ); +} diff --git a/components/blogs/BlogDetails.jsx b/components/blogs/BlogDetails.jsx index 2a4c094..027ee9f 100644 --- a/components/blogs/BlogDetails.jsx +++ b/components/blogs/BlogDetails.jsx @@ -17,12 +17,12 @@ export default function BlogDetails({ newsItem }) { />
    -
  • + {/*
  • {newsItem.author?.name || "Admin"}
  • {newsItem.date} -
  • + */}
  • {newsItem.category}
  • diff --git a/components/blogs/Blogs.jsx b/components/blogs/Blogs.jsx index 4284c23..c0e259f 100644 --- a/components/blogs/Blogs.jsx +++ b/components/blogs/Blogs.jsx @@ -32,7 +32,7 @@ export default function Blogs() {
    • {news.category}
    • -
    • {news.date}
    • + {/*
    • {news.date}
    • */}

    @@ -40,7 +40,7 @@ export default function Blogs() {

    -
    + {/*
    Admin

    {news.author.name}

    -
    +
    */} +
    +

    Product not found.

    +
    + + ); + } + + const groupedImages = []; + for (let i = 0; i < productItem.images.length; i += 2) { + groupedImages.push(productItem.images.slice(i, i + 2)); + } + + return ( +
    +
    +
    +
    +
    +
    + +

    {productItem.title}

    + +
    + + {groupedImages.map((imagePair, index) => ( +
    + {imagePair.map((imgSrc, subIndex) => ( +
    +
    + {`Product +
    +
    + ))} +
    + ))} +
    +
    +
    +
    +
    + ); +} diff --git a/components/homes/home-1/Products/product.jsx b/components/homes/home-1/Products/product.jsx index 2fb87cb..dec4923 100644 --- a/components/homes/home-1/Products/product.jsx +++ b/components/homes/home-1/Products/product.jsx @@ -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() {
    - {products.map((product) => ( + {allProducts.map((product) => (
    - {/*

    {product.number}

    */} + {/*

    {product.number}

    */}

    - + {product.title}

    -

    {product.description}

    +

    {product.para}

    Explore More
    +
))} diff --git a/components/homes/home-1/Services.jsx b/components/homes/home-1/Services.jsx index 7c08c3d..bf942d3 100644 --- a/components/homes/home-1/Services.jsx +++ b/components/homes/home-1/Services.jsx @@ -90,15 +90,12 @@ export default function Services() {

{item.number}

- + {item.title}

{item.description}

- + Explore More
diff --git a/data/gallery.js b/data/gallery.js index 6be8bea..0870a00 100644 --- a/data/gallery.js +++ b/data/gallery.js @@ -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", }, ]; diff --git a/data/menu.js b/data/menu.js index 6da523f..760a77c 100644 --- a/data/menu.js +++ b/data/menu.js @@ -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" }, diff --git a/data/services.js b/data/services.js index 233a8d6..cab41ff 100644 --- a/data/services.js +++ b/data/services.js @@ -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, diff --git a/public/assets/img/home/about/about-big-image.webp b/public/assets/img/home/about/about-big-image.webp index 5a214ef..b69c2bc 100644 Binary files a/public/assets/img/home/about/about-big-image.webp and b/public/assets/img/home/about/about-big-image.webp differ diff --git a/public/assets/img/product-details/deshelling/1.webp b/public/assets/img/product-details/deshelling/1.webp new file mode 100644 index 0000000..743300c Binary files /dev/null and b/public/assets/img/product-details/deshelling/1.webp differ diff --git a/public/assets/img/product-details/deshelling/2.webp b/public/assets/img/product-details/deshelling/2.webp new file mode 100644 index 0000000..d388657 Binary files /dev/null and b/public/assets/img/product-details/deshelling/2.webp differ diff --git a/public/assets/img/product-details/deshelling/3.webp b/public/assets/img/product-details/deshelling/3.webp new file mode 100644 index 0000000..a020fa3 Binary files /dev/null and b/public/assets/img/product-details/deshelling/3.webp differ diff --git a/public/assets/img/product-details/deshelling/4.webp b/public/assets/img/product-details/deshelling/4.webp new file mode 100644 index 0000000..79aa2e2 Binary files /dev/null and b/public/assets/img/product-details/deshelling/4.webp differ diff --git a/public/assets/img/product-details/deshelling/big-img.webp b/public/assets/img/product-details/deshelling/big-img.webp new file mode 100644 index 0000000..976f07e Binary files /dev/null and b/public/assets/img/product-details/deshelling/big-img.webp differ diff --git a/public/assets/img/product-details/deshelling/deshelling-banner.webp b/public/assets/img/product-details/deshelling/deshelling-banner.webp new file mode 100644 index 0000000..18975a5 Binary files /dev/null and b/public/assets/img/product-details/deshelling/deshelling-banner.webp differ diff --git a/public/assets/img/product-details/dryer/1.webp b/public/assets/img/product-details/dryer/1.webp new file mode 100644 index 0000000..22b2989 Binary files /dev/null and b/public/assets/img/product-details/dryer/1.webp differ diff --git a/public/assets/img/product-details/dryer/2.webp b/public/assets/img/product-details/dryer/2.webp new file mode 100644 index 0000000..ef937ba Binary files /dev/null and b/public/assets/img/product-details/dryer/2.webp differ diff --git a/public/assets/img/product-details/dryer/3.webp b/public/assets/img/product-details/dryer/3.webp new file mode 100644 index 0000000..4b7288a Binary files /dev/null and b/public/assets/img/product-details/dryer/3.webp differ diff --git a/public/assets/img/product-details/dryer/4.webp b/public/assets/img/product-details/dryer/4.webp new file mode 100644 index 0000000..ec17ecf Binary files /dev/null and b/public/assets/img/product-details/dryer/4.webp differ diff --git a/public/assets/img/product-details/dryer/big-img.webp b/public/assets/img/product-details/dryer/big-img.webp new file mode 100644 index 0000000..ffcbcb8 Binary files /dev/null and b/public/assets/img/product-details/dryer/big-img.webp differ diff --git a/public/assets/img/product-details/dryer/dryer-banner.webp b/public/assets/img/product-details/dryer/dryer-banner.webp new file mode 100644 index 0000000..87e90d6 Binary files /dev/null and b/public/assets/img/product-details/dryer/dryer-banner.webp differ diff --git a/public/assets/img/project/chaff-cutter.webp b/public/assets/img/project/chaff-cutter.webp new file mode 100644 index 0000000..c0c3167 Binary files /dev/null and b/public/assets/img/project/chaff-cutter.webp differ diff --git a/public/assets/img/project/coconut-buffer-tank.webp b/public/assets/img/project/coconut-buffer-tank.webp new file mode 100644 index 0000000..dcc3bbe Binary files /dev/null and b/public/assets/img/project/coconut-buffer-tank.webp differ diff --git a/public/assets/img/project/conveyor.webp b/public/assets/img/project/conveyor.webp new file mode 100644 index 0000000..18db33e Binary files /dev/null and b/public/assets/img/project/conveyor.webp differ diff --git a/public/assets/img/project/deshelling-machine.webp b/public/assets/img/project/deshelling-machine.webp new file mode 100644 index 0000000..c8ab1fe Binary files /dev/null and b/public/assets/img/project/deshelling-machine.webp differ diff --git a/public/assets/img/project/leaf-dryer.webp b/public/assets/img/project/leaf-dryer.webp new file mode 100644 index 0000000..7e5a5f3 Binary files /dev/null and b/public/assets/img/project/leaf-dryer.webp differ diff --git a/public/assets/img/project/winnowing.webp b/public/assets/img/project/winnowing.webp new file mode 100644 index 0000000..25966ee Binary files /dev/null and b/public/assets/img/project/winnowing.webp differ diff --git a/public/assets/scss/_service.scss b/public/assets/scss/_service.scss index b72a563..946bbb3 100644 --- a/public/assets/scss/_service.scss +++ b/public/assets/scss/_service.scss @@ -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; +} \ No newline at end of file diff --git a/utlis/constant.utils.js b/utlis/constant.utils.js index 2c4e192..21e3a65 100644 --- a/utlis/constant.utils.js +++ b/utlis/constant.utils.js @@ -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", @@ -467,4 +467,416 @@ export const allBlogs = [ ` }, -]; \ No newline at end of file +]; +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: ` +

+ 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. +

+
+

+ + 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. + +

+ + + + +
+ +

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ `, + 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: ` +

+ 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. +

+
+

+ + 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. + +

+ + + + +
+ +

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ `, + 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: ` +

+ 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. +

+
+

+ + 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. + +

+ + + + +
+ +

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ `, + 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: ` +

+ 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. +

+
+

+ + 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. + +

+ + + + +
+ +

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ `, + 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: ` +

+ 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. +

+
+

+ + 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. + +

+ + + + +
+ +

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ `, + 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: ` +

+ 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. +

+
+

+ + 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. + +

+ + + + +
+ +

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ `, + 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", + }, +];