2025-08-23 21:08:37 +05:30

130 lines
3.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const menuData = [
{
label: "Home",
href: "/",
// iconClass: "fa-regular fa-plus",
className: "has-dropdown active menu-thumb",
// submenu: [
// {
// homeMenuItems: [
// {
// imageSrc: "/assets/img/header/home-1.jpg",
// title: "Home 01",
// buttons: [
// { label: "Multi Page", href: "/" },
// { label: "One Page", href: "/home-1-one-page" },
// ],
// },
// {
// imageSrc: "/assets/img/header/home-2.jpg",
// title: "Home 02",
// buttons: [
// { label: "Multi Page", href: "/home-2" },
// { label: "One Page", href: "/home-2-one-page" },
// ],
// },
// ],
// },
// ],
},
{
label: "About Us",
href: "/about",
iconClass: "fa-regular fa-plus",
submenu: [
{ label: "At a Glance", href: "/corporate-profile" },
{ label: "Factory & Workflows", href: "/factory-workflows" },
{ label: "Sustainability Impact", href: "/sustainability-impact" },
{ label: "Engineering & Innovation", href: "/engineering-innovation" },
],
},
// {
// label: "Pages",
// href: "#",
// iconClass: "fa-regular fa-plus",
// className: "has-dropdown",
// submenu: [
// {
// label: "Our Team",
// href: "#",
// iconClass: "fas fa-angle-down",
// submenu: [
// { label: "Our Team", href: "/team" },
// { label: "Team Details", href: "/team-details/1" },
// ],
// },
// { label: "Pricing", href: "/pricing" },
// { label: "Faq's", href: "/faq" },
// { label: "404 Page", href: "/404" },
// ],
// },
// {
// label: "Services",
// href: "#",
// iconClass: "fa-regular fa-plus",
// submenu: [
// { label: "Services", href: "/service" },
// { label: "Service Details", href: "/service-details/1" },
// ],
// },
{
label: "Products",
href: "/product",
iconClass: "fa-regular fa-plus",
submenu: [
{ label: "Moringa Leaf Chaff Cutter", slug: "moringa-leaf-chaff-cutter" },
{ label: "Coconut Cutter", slug: "coconut-cutter" },
{ label: "Desiccated Coconut Cooler", slug: "desiccated-coconut-cooler" },
{ label: "Belt Conveyor", slug: "belt-conveyor" },
{ label: "Coconut Lump Breaker", slug: "coconut-lump-breaker" },
],
},
{
label: "Turnkey Solutions",
href: "/turnkey-solutions",
},
{
label: "Projects",
href: "/project",
// iconClass: "fa-regular fa-plus",
// submenu: [
// { label: "Projects", href: "/project" },
// { label: "Project Details", href: "/project-details/1" },
// ],
},
{
label: "Blog",
href: "/blog",
// iconClass: "fa-regular fa-plus",
// submenu: [
// { label: "Blog Grid", href: "/news-grid" },
// { label: "Blog Standard", href: "/news" },
// { label: "Blog Details", href: "/news-details/1" },
// ],
},
{
label: "Contact Us",
href: "/contact",
},
];
export const onepageLinks = [
{ href: "#about", text: "About Us" },
{ href: "#services", text: "Services" },
{ href: "#projects", text: "Projects" },
{ href: "#team", text: "Team" },
{ href: "#blog", text: "Blog" },
{ href: "#contact", text: "Contact" },
];
export const footerLinks = [
{ name: "Home", href: "/" },
{ name: "About", href: "/about" },
{ name: "Turnkey Solutions", href: "/turnkey-solutions" },
{ name: "Blog", href: "/blog" },
{ name: "Contact", href: "/contact" },
// { name: "FAQS", href: "/faq" },
// { name: "Login / Register", href: "/contact" },
];