Skip to content

Commit fa26b07

Browse files
authored
Fix: Allow users to click the service card (#39)
1 parent 74ddf0e commit fa26b07

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

app/(inferenceai)/inferenceai/[lang]/data.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ export const getCaseStudies = (lang: SupportedLanguage) => {
139139
{
140140
title: inferenceaiCaseStudies0Title(lang),
141141
category: inferenceaiCaseStudies0Category(lang),
142-
description: inferenceaiCaseStudies0Text(lang)
142+
description: inferenceaiCaseStudies0Text(lang),
143+
url: "/inferenceai/rag-chatbot"
143144
},
144145
{
145146
title: inferenceaiCaseStudies1Title(lang),

app/(main)/[lang]/data.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,26 @@ export const getServices = (lang: SupportedLanguage) => {
4949
{
5050
title: mainServices0Title(lang),
5151
description: mainServices0Text(lang),
52-
icon: "/images/services/cto-as-a-service.svg"
52+
icon: "/images/services/cto-as-a-service.svg",
53+
url: "/services/cto-as-a-service"
5354
},
5455
{
5556
title: mainServices1Title(lang),
5657
description: mainServices1Text(lang),
57-
icon: "/images/services/software-as-a-service.svg"
58+
icon: "/images/services/software-as-a-service.svg",
59+
url: "/services/software-as-a-service"
5860
},
5961
{
6062
title: mainServices2Title(lang),
6163
description: mainServices2Text(lang),
62-
icon: "/images/services/tech-due-diligence.svg"
64+
icon: "/images/services/tech-due-diligence.svg",
65+
url: "/services/tech-due-diligence"
6366
},
6467
{
6568
title: mainServices3Title(lang),
6669
description: mainServices3Text(lang),
67-
icon: "/images/services/erp-implementation.svg"
70+
icon: "/images/services/erp-implementation.svg",
71+
url: "/services/erp-implementation"
6872
}
6973
];
7074

app/components/grid-items.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,7 @@ export function GridItems({
247247
</p>
248248
)}
249249
{url ? (
250-
<Link
251-
href={url}
252-
target="_blank"
253-
rel="noopener noreferrer"
254-
className="transition hover:underline">
250+
<Link href={url} className="transition hover:underline">
255251
<CardTitle
256252
className={cn(
257253
"text-xl font-semibold md:text-[22px]",

locales/en/erp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"target": {
1616
"0": "<span class=\"font-bold\">Scaling startups</span> that need better control over operations",
1717
"1": "<span class=\"font-bold\">SMEs & Enterprises</span> looking to replace fragmented tools or spreadsheets",
18-
"2": "<span class=\"font-bold\">Organizations in fisheries, F&B, logistics, manufacturing</span> , and more",
18+
"2": "<span class=\"font-bold\">Organizations in fisheries, F&B, logistics, manufacturing, and more</span>",
1919
"3": "<span class=\"font-bold\">Founders & Ops Leaders</span> aiming for process standardization"
2020
}
2121
},

locales/en/tdd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"0": "Executive summary for C-Level & investors",
8787
"1": "Technical Audit Report (code quality, architecture, infra)",
8888
"2": "KPI Benchmarking & Recommendations",
89-
"3": "Action Plan (Quick Wins + Long-Term Strategy"
89+
"3": "Action Plan (Quick Wins + Long-Term Strategy)"
9090
}
9191
},
9292

locales/id/erp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"target": {
1515
"0": "<span class=\"font-bold\">Startup yang sedang berkembang</span> dan butuh kendali lebih atas operasional",
1616
"1": "<span class=\"font-bold\">UKM & Perusahaan</span> yang ingin mengganti alat terfragmentasi atau spreadsheet",
17-
"2": "<span class=\"font-bold\">Organisasi di sektor perikanan, F&B, logistik, manufaktur</span>, dan lainnya",
17+
"2": "<span class=\"font-bold\">Organisasi di sektor perikanan, F&B, logistik, manufaktur, dan lainnya</span>",
1818
"3": "<span class=\"font-bold\">Pendiri & Pemimpin Operasional</span> yang ingin standarisasi proses"
1919
}
2020
},

0 commit comments

Comments
 (0)