Almost updated

This commit is contained in:
mukesh13
2025-08-13 22:37:58 +05:30
parent 5867410a7e
commit 852c11725b
3 changed files with 89 additions and 210 deletions

View File

@ -21,31 +21,14 @@ export default function Header4() {
{ id: 13, title: "Data Processing", href: "/service-details/13" },
{ id: 14, title: "Receipt Data Entry Services", href: "/service-details/14" },
{ id: 15, title: "Logistics Data Entry Services", href: "/service-details/15" },
{ id: 16, title: "Construction", href: "/service-details/16" }
{ id: 16, title: "Construction", href: "/#" }
];
const renderServiceLink = (service) => {
// Disable Construction service (id: 16) same as in Services component
const isDisabled = service.id === 16;
if (isDisabled) {
return (
<span
style={{
display: 'block',
padding: '8px 16px',
color: '#999999',
fontSize: '14px',
fontWeight: '500',
borderLeft: '3px solid transparent',
cursor: 'not-allowed',
opacity: '0.5'
}}
>
{service.title}
</span>
);
}
return (
<Link