@barkajs/barka 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (621) hide show
  1. package/CLAUDE.md +64 -0
  2. package/INVARIANTS.json +43 -0
  3. package/LICENSE +19 -0
  4. package/README.md +566 -0
  5. package/dist/app.d.ts +22 -0
  6. package/dist/app.d.ts.map +1 -0
  7. package/dist/app.js +464 -0
  8. package/dist/app.js.map +1 -0
  9. package/dist/built-in-theme/components/cta/cta.d.ts +5 -0
  10. package/dist/built-in-theme/components/cta/cta.d.ts.map +1 -0
  11. package/dist/built-in-theme/components/cta/cta.js +6 -0
  12. package/dist/built-in-theme/components/cta/cta.js.map +1 -0
  13. package/dist/built-in-theme/components/features/features.d.ts +5 -0
  14. package/dist/built-in-theme/components/features/features.d.ts.map +1 -0
  15. package/dist/built-in-theme/components/features/features.js +7 -0
  16. package/dist/built-in-theme/components/features/features.js.map +1 -0
  17. package/dist/built-in-theme/components/hero/hero.d.ts +5 -0
  18. package/dist/built-in-theme/components/hero/hero.d.ts.map +1 -0
  19. package/dist/built-in-theme/components/hero/hero.js +6 -0
  20. package/dist/built-in-theme/components/hero/hero.js.map +1 -0
  21. package/dist/built-in-theme/components/text/text.d.ts +4 -0
  22. package/dist/built-in-theme/components/text/text.d.ts.map +1 -0
  23. package/dist/built-in-theme/components/text/text.js +7 -0
  24. package/dist/built-in-theme/components/text/text.js.map +1 -0
  25. package/dist/built-in-theme/layouts/article.d.ts +4 -0
  26. package/dist/built-in-theme/layouts/article.d.ts.map +1 -0
  27. package/dist/built-in-theme/layouts/article.js +11 -0
  28. package/dist/built-in-theme/layouts/article.js.map +1 -0
  29. package/dist/built-in-theme/layouts/base.d.ts +7 -0
  30. package/dist/built-in-theme/layouts/base.d.ts.map +1 -0
  31. package/dist/built-in-theme/layouts/base.js +21 -0
  32. package/dist/built-in-theme/layouts/base.js.map +1 -0
  33. package/dist/built-in-theme/layouts/landing-page.d.ts +6 -0
  34. package/dist/built-in-theme/layouts/landing-page.d.ts.map +1 -0
  35. package/dist/built-in-theme/layouts/landing-page.js +6 -0
  36. package/dist/built-in-theme/layouts/landing-page.js.map +1 -0
  37. package/dist/built-in-theme/layouts/page.d.ts +4 -0
  38. package/dist/built-in-theme/layouts/page.d.ts.map +1 -0
  39. package/dist/built-in-theme/layouts/page.js +7 -0
  40. package/dist/built-in-theme/layouts/page.js.map +1 -0
  41. package/dist/cli/build.d.ts +11 -0
  42. package/dist/cli/build.d.ts.map +1 -0
  43. package/dist/cli/build.js +271 -0
  44. package/dist/cli/build.js.map +1 -0
  45. package/dist/cli/create-app.d.ts +4 -0
  46. package/dist/cli/create-app.d.ts.map +1 -0
  47. package/dist/cli/create-app.js +179 -0
  48. package/dist/cli/create-app.js.map +1 -0
  49. package/dist/cli/db-init.d.ts +6 -0
  50. package/dist/cli/db-init.d.ts.map +1 -0
  51. package/dist/cli/db-init.js +28 -0
  52. package/dist/cli/db-init.js.map +1 -0
  53. package/dist/cli/dev.d.ts +10 -0
  54. package/dist/cli/dev.d.ts.map +1 -0
  55. package/dist/cli/dev.js +68 -0
  56. package/dist/cli/dev.js.map +1 -0
  57. package/dist/cli/export-cmd.d.ts +6 -0
  58. package/dist/cli/export-cmd.d.ts.map +1 -0
  59. package/dist/cli/export-cmd.js +12 -0
  60. package/dist/cli/export-cmd.js.map +1 -0
  61. package/dist/cli/import-cmd.d.ts +6 -0
  62. package/dist/cli/import-cmd.d.ts.map +1 -0
  63. package/dist/cli/import-cmd.js +11 -0
  64. package/dist/cli/import-cmd.js.map +1 -0
  65. package/dist/cli/index.d.ts +3 -0
  66. package/dist/cli/index.d.ts.map +1 -0
  67. package/dist/cli/index.js +163 -0
  68. package/dist/cli/index.js.map +1 -0
  69. package/dist/cli/init-cmd.d.ts +20 -0
  70. package/dist/cli/init-cmd.d.ts.map +1 -0
  71. package/dist/cli/init-cmd.js +116 -0
  72. package/dist/cli/init-cmd.js.map +1 -0
  73. package/dist/cli/sync-cmd.d.ts +5 -0
  74. package/dist/cli/sync-cmd.d.ts.map +1 -0
  75. package/dist/cli/sync-cmd.js +17 -0
  76. package/dist/cli/sync-cmd.js.map +1 -0
  77. package/dist/content-engine.d.ts +50 -0
  78. package/dist/content-engine.d.ts.map +1 -0
  79. package/dist/content-engine.js +240 -0
  80. package/dist/content-engine.js.map +1 -0
  81. package/dist/db/connection.d.ts +9 -0
  82. package/dist/db/connection.d.ts.map +1 -0
  83. package/dist/db/connection.js +121 -0
  84. package/dist/db/connection.js.map +1 -0
  85. package/dist/db/schema.d.ts +1178 -0
  86. package/dist/db/schema.d.ts.map +1 -0
  87. package/dist/db/schema.js +79 -0
  88. package/dist/db/schema.js.map +1 -0
  89. package/dist/index.d.ts +12 -0
  90. package/dist/index.d.ts.map +1 -0
  91. package/dist/index.js +8 -0
  92. package/dist/index.js.map +1 -0
  93. package/dist/lib/auth.d.ts +14 -0
  94. package/dist/lib/auth.d.ts.map +1 -0
  95. package/dist/lib/auth.js +40 -0
  96. package/dist/lib/auth.js.map +1 -0
  97. package/dist/lib/config-files.d.ts +8 -0
  98. package/dist/lib/config-files.d.ts.map +1 -0
  99. package/dist/lib/config-files.js +72 -0
  100. package/dist/lib/config-files.js.map +1 -0
  101. package/dist/lib/content-files.d.ts +5 -0
  102. package/dist/lib/content-files.d.ts.map +1 -0
  103. package/dist/lib/content-files.js +156 -0
  104. package/dist/lib/content-files.js.map +1 -0
  105. package/dist/lib/i18n.d.ts +33 -0
  106. package/dist/lib/i18n.d.ts.map +1 -0
  107. package/dist/lib/i18n.js +247 -0
  108. package/dist/lib/i18n.js.map +1 -0
  109. package/dist/lib/multisite.d.ts +23 -0
  110. package/dist/lib/multisite.d.ts.map +1 -0
  111. package/dist/lib/multisite.js +73 -0
  112. package/dist/lib/multisite.js.map +1 -0
  113. package/dist/lib/paths.d.ts +6 -0
  114. package/dist/lib/paths.d.ts.map +1 -0
  115. package/dist/lib/paths.js +25 -0
  116. package/dist/lib/paths.js.map +1 -0
  117. package/dist/lib/schema-loader.d.ts +25 -0
  118. package/dist/lib/schema-loader.d.ts.map +1 -0
  119. package/dist/lib/schema-loader.js +45 -0
  120. package/dist/lib/schema-loader.js.map +1 -0
  121. package/dist/lib/seo.d.ts +18 -0
  122. package/dist/lib/seo.d.ts.map +1 -0
  123. package/dist/lib/seo.js +212 -0
  124. package/dist/lib/seo.js.map +1 -0
  125. package/dist/lib/sync.d.ts +33 -0
  126. package/dist/lib/sync.d.ts.map +1 -0
  127. package/dist/lib/sync.js +308 -0
  128. package/dist/lib/sync.js.map +1 -0
  129. package/dist/lib/taxonomy.d.ts +29 -0
  130. package/dist/lib/taxonomy.d.ts.map +1 -0
  131. package/dist/lib/taxonomy.js +170 -0
  132. package/dist/lib/taxonomy.js.map +1 -0
  133. package/dist/lib/template-renderer.d.ts +6 -0
  134. package/dist/lib/template-renderer.d.ts.map +1 -0
  135. package/dist/lib/template-renderer.js +80 -0
  136. package/dist/lib/template-renderer.js.map +1 -0
  137. package/dist/lib/theme-loader.d.ts +5 -0
  138. package/dist/lib/theme-loader.d.ts.map +1 -0
  139. package/dist/lib/theme-loader.js +199 -0
  140. package/dist/lib/theme-loader.js.map +1 -0
  141. package/dist/lib/theme-types.d.ts +39 -0
  142. package/dist/lib/theme-types.d.ts.map +1 -0
  143. package/dist/lib/theme-types.js +2 -0
  144. package/dist/lib/theme-types.js.map +1 -0
  145. package/dist/lib/types.d.ts +91 -0
  146. package/dist/lib/types.d.ts.map +1 -0
  147. package/dist/lib/types.js +2 -0
  148. package/dist/lib/types.js.map +1 -0
  149. package/dist/routes/admin/content-edit.d.ts +10 -0
  150. package/dist/routes/admin/content-edit.d.ts.map +1 -0
  151. package/dist/routes/admin/content-edit.js +325 -0
  152. package/dist/routes/admin/content-edit.js.map +1 -0
  153. package/dist/routes/admin/content-list.d.ts +10 -0
  154. package/dist/routes/admin/content-list.d.ts.map +1 -0
  155. package/dist/routes/admin/content-list.js +162 -0
  156. package/dist/routes/admin/content-list.js.map +1 -0
  157. package/dist/routes/admin/content.d.ts +3 -0
  158. package/dist/routes/admin/content.d.ts.map +1 -0
  159. package/dist/routes/admin/content.js +12 -0
  160. package/dist/routes/admin/content.js.map +1 -0
  161. package/dist/routes/admin/dashboard.d.ts +4 -0
  162. package/dist/routes/admin/dashboard.d.ts.map +1 -0
  163. package/dist/routes/admin/dashboard.js +121 -0
  164. package/dist/routes/admin/dashboard.js.map +1 -0
  165. package/dist/routes/admin/export-route.d.ts +10 -0
  166. package/dist/routes/admin/export-route.d.ts.map +1 -0
  167. package/dist/routes/admin/export-route.js +19 -0
  168. package/dist/routes/admin/export-route.js.map +1 -0
  169. package/dist/routes/admin/index.d.ts +9 -0
  170. package/dist/routes/admin/index.d.ts.map +1 -0
  171. package/dist/routes/admin/index.js +27 -0
  172. package/dist/routes/admin/index.js.map +1 -0
  173. package/dist/routes/admin/layout.d.ts +17 -0
  174. package/dist/routes/admin/layout.d.ts.map +1 -0
  175. package/dist/routes/admin/layout.js +110 -0
  176. package/dist/routes/admin/layout.js.map +1 -0
  177. package/dist/routes/admin/login.d.ts +5 -0
  178. package/dist/routes/admin/login.d.ts.map +1 -0
  179. package/dist/routes/admin/login.js +113 -0
  180. package/dist/routes/admin/login.js.map +1 -0
  181. package/dist/routes/admin/media.d.ts +10 -0
  182. package/dist/routes/admin/media.d.ts.map +1 -0
  183. package/dist/routes/admin/media.js +192 -0
  184. package/dist/routes/admin/media.js.map +1 -0
  185. package/dist/routes/admin/middleware.d.ts +8 -0
  186. package/dist/routes/admin/middleware.d.ts.map +1 -0
  187. package/dist/routes/admin/middleware.js +29 -0
  188. package/dist/routes/admin/middleware.js.map +1 -0
  189. package/dist/routes/admin/section-builder.d.ts +10 -0
  190. package/dist/routes/admin/section-builder.d.ts.map +1 -0
  191. package/dist/routes/admin/section-builder.js +487 -0
  192. package/dist/routes/admin/section-builder.js.map +1 -0
  193. package/dist/routes/admin/settings.d.ts +10 -0
  194. package/dist/routes/admin/settings.d.ts.map +1 -0
  195. package/dist/routes/admin/settings.js +209 -0
  196. package/dist/routes/admin/settings.js.map +1 -0
  197. package/dist/routes/admin/site-switcher.d.ts +3 -0
  198. package/dist/routes/admin/site-switcher.d.ts.map +1 -0
  199. package/dist/routes/admin/site-switcher.js +36 -0
  200. package/dist/routes/admin/site-switcher.js.map +1 -0
  201. package/dist/routes/admin/taxonomy.d.ts +10 -0
  202. package/dist/routes/admin/taxonomy.d.ts.map +1 -0
  203. package/dist/routes/admin/taxonomy.js +297 -0
  204. package/dist/routes/admin/taxonomy.js.map +1 -0
  205. package/dist/routes/admin/users.d.ts +10 -0
  206. package/dist/routes/admin/users.d.ts.map +1 -0
  207. package/dist/routes/admin/users.js +227 -0
  208. package/dist/routes/admin/users.js.map +1 -0
  209. package/package.json +75 -0
  210. package/src/built-in-theme/components/cta/cta.tsx +18 -0
  211. package/src/built-in-theme/components/cta/schema.yaml +17 -0
  212. package/src/built-in-theme/components/features/features.tsx +18 -0
  213. package/src/built-in-theme/components/features/schema.yaml +22 -0
  214. package/src/built-in-theme/components/hero/hero.tsx +18 -0
  215. package/src/built-in-theme/components/hero/schema.yaml +17 -0
  216. package/src/built-in-theme/components/text/schema.yaml +12 -0
  217. package/src/built-in-theme/components/text/text.tsx +11 -0
  218. package/src/built-in-theme/layouts/article.tsx +20 -0
  219. package/src/built-in-theme/layouts/base.tsx +50 -0
  220. package/src/built-in-theme/layouts/landing-page.tsx +15 -0
  221. package/src/built-in-theme/layouts/page.tsx +11 -0
  222. package/src/built-in-theme/theme.yaml +4 -0
  223. package/starters/blank/config/content-types.yaml +47 -0
  224. package/starters/blank/config/section-types.yaml +115 -0
  225. package/starters/blank/config/settings.yaml +12 -0
  226. package/starters/blank/content/landing-pages/homepage.yaml +55 -0
  227. package/starters/blank/content/pages/about.md +27 -0
  228. package/starters/blank/starter.yaml +14 -0
  229. package/starters/blank/themes/starter/_types.ts +93 -0
  230. package/starters/blank/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
  231. package/starters/blank/themes/starter/components/blog-listing/schema.yaml +21 -0
  232. package/starters/blank/themes/starter/components/columns/columns.tsx +101 -0
  233. package/starters/blank/themes/starter/components/columns/schema.yaml +23 -0
  234. package/starters/blank/themes/starter/components/counters/counters.css +13 -0
  235. package/starters/blank/themes/starter/components/counters/counters.tsx +81 -0
  236. package/starters/blank/themes/starter/components/counters/schema.yaml +23 -0
  237. package/starters/blank/themes/starter/components/cta/cta.tsx +57 -0
  238. package/starters/blank/themes/starter/components/cta/schema.yaml +30 -0
  239. package/starters/blank/themes/starter/components/faq/faq.tsx +77 -0
  240. package/starters/blank/themes/starter/components/faq/schema.yaml +20 -0
  241. package/starters/blank/themes/starter/components/features/features.tsx +82 -0
  242. package/starters/blank/themes/starter/components/features/schema.yaml +19 -0
  243. package/starters/blank/themes/starter/components/form/form.tsx +126 -0
  244. package/starters/blank/themes/starter/components/form/schema.yaml +18 -0
  245. package/starters/blank/themes/starter/components/gallery/gallery.tsx +85 -0
  246. package/starters/blank/themes/starter/components/gallery/schema.yaml +27 -0
  247. package/starters/blank/themes/starter/components/hero/hero.tsx +77 -0
  248. package/starters/blank/themes/starter/components/hero/schema.yaml +26 -0
  249. package/starters/blank/themes/starter/components/logo-slider/logo-slider.css +21 -0
  250. package/starters/blank/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
  251. package/starters/blank/themes/starter/components/logo-slider/schema.yaml +23 -0
  252. package/starters/blank/themes/starter/components/pricing/pricing.tsx +141 -0
  253. package/starters/blank/themes/starter/components/pricing/schema.yaml +44 -0
  254. package/starters/blank/themes/starter/components/testimonials/schema.yaml +26 -0
  255. package/starters/blank/themes/starter/components/testimonials/testimonials.tsx +100 -0
  256. package/starters/blank/themes/starter/components/text/schema.yaml +12 -0
  257. package/starters/blank/themes/starter/components/text/text.tsx +62 -0
  258. package/starters/blank/themes/starter/components/text-with-image/schema.yaml +30 -0
  259. package/starters/blank/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
  260. package/starters/blank/themes/starter/components/video/schema.yaml +19 -0
  261. package/starters/blank/themes/starter/components/video/video.tsx +98 -0
  262. package/starters/blank/themes/starter/layouts/article.tsx +42 -0
  263. package/starters/blank/themes/starter/layouts/base.tsx +92 -0
  264. package/starters/blank/themes/starter/layouts/landing-page.tsx +14 -0
  265. package/starters/blank/themes/starter/layouts/page.tsx +29 -0
  266. package/starters/blank/themes/starter/partials/footer.tsx +22 -0
  267. package/starters/blank/themes/starter/partials/header.tsx +32 -0
  268. package/starters/blank/themes/starter/static/style.css +125 -0
  269. package/starters/blank/themes/starter/theme.yaml +16 -0
  270. package/starters/kadoservices/config/content-types.yaml +239 -0
  271. package/starters/kadoservices/config/languages.yaml +12 -0
  272. package/starters/kadoservices/config/section-types.yaml +379 -0
  273. package/starters/kadoservices/config/settings.yaml +15 -0
  274. package/starters/kadoservices/config/sites.yaml +14 -0
  275. package/starters/kadoservices/config/taxonomies.yaml +61 -0
  276. package/starters/kadoservices/config/translations/de.yaml +120 -0
  277. package/starters/kadoservices/config/translations/en.yaml +120 -0
  278. package/starters/kadoservices/config/translations/pl.yaml +120 -0
  279. package/starters/kadoservices/content/articles/employer-branding-strategies.md +61 -0
  280. package/starters/kadoservices/content/articles/hiring-trends-2026.md +61 -0
  281. package/starters/kadoservices/content/articles/hiring-trends-2026.pl.md +61 -0
  282. package/starters/kadoservices/content/articles/labor-law-changes.md +78 -0
  283. package/starters/kadoservices/content/articles/temporary-staffing-guide.md +76 -0
  284. package/starters/kadoservices/content/articles/temporary-staffing-guide.pl.md +76 -0
  285. package/starters/kadoservices/content/case-studies/finance-rpo-program.md +68 -0
  286. package/starters/kadoservices/content/case-studies/manufacturing-mass-recruitment.md +65 -0
  287. package/starters/kadoservices/content/case-studies/manufacturing-mass-recruitment.pl.md +65 -0
  288. package/starters/kadoservices/content/case-studies/retail-seasonal-staffing.md +69 -0
  289. package/starters/kadoservices/content/industries/finance-shared-services.md +59 -0
  290. package/starters/kadoservices/content/industries/healthcare.md +64 -0
  291. package/starters/kadoservices/content/industries/it-technology.md +61 -0
  292. package/starters/kadoservices/content/industries/logistics.md +54 -0
  293. package/starters/kadoservices/content/industries/manufacturing.md +61 -0
  294. package/starters/kadoservices/content/industries/retail.md +56 -0
  295. package/starters/kadoservices/content/landing-pages/homepage.pl.yaml +198 -0
  296. package/starters/kadoservices/content/landing-pages/homepage.yaml +198 -0
  297. package/starters/kadoservices/content/locations/gdansk.md +32 -0
  298. package/starters/kadoservices/content/locations/krakow.md +30 -0
  299. package/starters/kadoservices/content/locations/warsaw.md +30 -0
  300. package/starters/kadoservices/content/locations/wroclaw.md +32 -0
  301. package/starters/kadoservices/content/pages/about.md +58 -0
  302. package/starters/kadoservices/content/pages/about.pl.md +58 -0
  303. package/starters/kadoservices/content/pages/careers.md +55 -0
  304. package/starters/kadoservices/content/pages/clients.md +65 -0
  305. package/starters/kadoservices/content/pages/contact.md +74 -0
  306. package/starters/kadoservices/content/pages/contact.pl.md +74 -0
  307. package/starters/kadoservices/content/pages/faq.md +76 -0
  308. package/starters/kadoservices/content/services/employer-branding.md +70 -0
  309. package/starters/kadoservices/content/services/hr-consulting.md +64 -0
  310. package/starters/kadoservices/content/services/outsourcing-rpo.md +78 -0
  311. package/starters/kadoservices/content/services/outsourcing-rpo.pl.md +67 -0
  312. package/starters/kadoservices/content/services/payroll-hr-admin.md +66 -0
  313. package/starters/kadoservices/content/services/permanent-recruitment.md +78 -0
  314. package/starters/kadoservices/content/services/permanent-recruitment.pl.md +78 -0
  315. package/starters/kadoservices/content/services/temporary-staffing.md +78 -0
  316. package/starters/kadoservices/content/team/anna-kowalska.md +26 -0
  317. package/starters/kadoservices/content/team/jan-lewandowski.md +26 -0
  318. package/starters/kadoservices/content/team/katarzyna-zielinska.md +26 -0
  319. package/starters/kadoservices/content/team/maria-wisniewska.md +28 -0
  320. package/starters/kadoservices/content/team/tomasz-nowak.md +26 -0
  321. package/starters/kadoservices/starter.yaml +15 -0
  322. package/starters/kadoservices/themes/kadoservices/_types.ts +93 -0
  323. package/starters/kadoservices/themes/kadoservices/components/blog-listing/blog-listing.tsx +197 -0
  324. package/starters/kadoservices/themes/kadoservices/components/blog-listing/schema.yaml +21 -0
  325. package/starters/kadoservices/themes/kadoservices/components/columns/columns.tsx +104 -0
  326. package/starters/kadoservices/themes/kadoservices/components/columns/schema.yaml +23 -0
  327. package/starters/kadoservices/themes/kadoservices/components/counters/counters.css +13 -0
  328. package/starters/kadoservices/themes/kadoservices/components/counters/counters.tsx +103 -0
  329. package/starters/kadoservices/themes/kadoservices/components/counters/schema.yaml +23 -0
  330. package/starters/kadoservices/themes/kadoservices/components/cta/cta.tsx +100 -0
  331. package/starters/kadoservices/themes/kadoservices/components/cta/schema.yaml +30 -0
  332. package/starters/kadoservices/themes/kadoservices/components/faq/faq.tsx +77 -0
  333. package/starters/kadoservices/themes/kadoservices/components/faq/schema.yaml +20 -0
  334. package/starters/kadoservices/themes/kadoservices/components/features/features.tsx +151 -0
  335. package/starters/kadoservices/themes/kadoservices/components/features/schema.yaml +19 -0
  336. package/starters/kadoservices/themes/kadoservices/components/form/form.tsx +135 -0
  337. package/starters/kadoservices/themes/kadoservices/components/form/schema.yaml +18 -0
  338. package/starters/kadoservices/themes/kadoservices/components/gallery/gallery.tsx +90 -0
  339. package/starters/kadoservices/themes/kadoservices/components/gallery/schema.yaml +27 -0
  340. package/starters/kadoservices/themes/kadoservices/components/hero/hero.tsx +175 -0
  341. package/starters/kadoservices/themes/kadoservices/components/hero/schema.yaml +26 -0
  342. package/starters/kadoservices/themes/kadoservices/components/logo-slider/logo-slider.css +21 -0
  343. package/starters/kadoservices/themes/kadoservices/components/logo-slider/logo-slider.tsx +83 -0
  344. package/starters/kadoservices/themes/kadoservices/components/logo-slider/schema.yaml +23 -0
  345. package/starters/kadoservices/themes/kadoservices/components/pricing/pricing.tsx +161 -0
  346. package/starters/kadoservices/themes/kadoservices/components/pricing/schema.yaml +44 -0
  347. package/starters/kadoservices/themes/kadoservices/components/testimonials/schema.yaml +26 -0
  348. package/starters/kadoservices/themes/kadoservices/components/testimonials/testimonials.css +13 -0
  349. package/starters/kadoservices/themes/kadoservices/components/testimonials/testimonials.tsx +150 -0
  350. package/starters/kadoservices/themes/kadoservices/components/text/schema.yaml +12 -0
  351. package/starters/kadoservices/themes/kadoservices/components/text/text.tsx +67 -0
  352. package/starters/kadoservices/themes/kadoservices/components/text-with-image/schema.yaml +30 -0
  353. package/starters/kadoservices/themes/kadoservices/components/text-with-image/text-with-image.tsx +92 -0
  354. package/starters/kadoservices/themes/kadoservices/components/video/schema.yaml +19 -0
  355. package/starters/kadoservices/themes/kadoservices/components/video/video.tsx +103 -0
  356. package/starters/kadoservices/themes/kadoservices/layouts/404.tsx +96 -0
  357. package/starters/kadoservices/themes/kadoservices/layouts/article.tsx +140 -0
  358. package/starters/kadoservices/themes/kadoservices/layouts/base.tsx +669 -0
  359. package/starters/kadoservices/themes/kadoservices/layouts/case-study.tsx +240 -0
  360. package/starters/kadoservices/themes/kadoservices/layouts/index--articles.tsx +250 -0
  361. package/starters/kadoservices/themes/kadoservices/layouts/index--case-studies.tsx +232 -0
  362. package/starters/kadoservices/themes/kadoservices/layouts/index--services.tsx +237 -0
  363. package/starters/kadoservices/themes/kadoservices/layouts/index.tsx +96 -0
  364. package/starters/kadoservices/themes/kadoservices/layouts/industry.tsx +121 -0
  365. package/starters/kadoservices/themes/kadoservices/layouts/landing-page.tsx +14 -0
  366. package/starters/kadoservices/themes/kadoservices/layouts/page--about.tsx +158 -0
  367. package/starters/kadoservices/themes/kadoservices/layouts/page--careers.tsx +214 -0
  368. package/starters/kadoservices/themes/kadoservices/layouts/page--contact.tsx +218 -0
  369. package/starters/kadoservices/themes/kadoservices/layouts/page.tsx +45 -0
  370. package/starters/kadoservices/themes/kadoservices/layouts/service.tsx +235 -0
  371. package/starters/kadoservices/themes/kadoservices/partials/footer.tsx +109 -0
  372. package/starters/kadoservices/themes/kadoservices/partials/header.tsx +53 -0
  373. package/starters/kadoservices/themes/kadoservices/static/images/article-platform-engineering.jpg +0 -0
  374. package/starters/kadoservices/themes/kadoservices/static/images/barka-logo.png +0 -0
  375. package/starters/kadoservices/themes/kadoservices/static/images/case-study-banking-dashboard.jpg +0 -0
  376. package/starters/kadoservices/themes/kadoservices/static/images/case-study-banking.png +0 -0
  377. package/starters/kadoservices/themes/kadoservices/static/images/case-study-ecommerce-dashboard.jpg +0 -0
  378. package/starters/kadoservices/themes/kadoservices/static/images/case-study-healthcare-dashboard.jpg +0 -0
  379. package/starters/kadoservices/themes/kadoservices/static/images/case-study-healthcare.png +0 -0
  380. package/starters/kadoservices/themes/kadoservices/static/images/case-study-retail.png +0 -0
  381. package/starters/kadoservices/themes/kadoservices/static/images/handshake.jpg +0 -0
  382. package/starters/kadoservices/themes/kadoservices/static/images/hero-bg.jpg +0 -0
  383. package/starters/kadoservices/themes/kadoservices/static/images/hero-bg.png +0 -0
  384. package/starters/kadoservices/themes/kadoservices/static/images/lokatech-logo.png +0 -0
  385. package/starters/kadoservices/themes/kadoservices/static/images/office-warsaw.png +0 -0
  386. package/starters/kadoservices/themes/kadoservices/static/images/office.jpg +0 -0
  387. package/starters/kadoservices/themes/kadoservices/static/images/team-anna-kowalska.png +0 -0
  388. package/starters/kadoservices/themes/kadoservices/static/images/team-collaboration.jpg +0 -0
  389. package/starters/kadoservices/themes/kadoservices/static/images/team-jan-nowak.png +0 -0
  390. package/starters/kadoservices/themes/kadoservices/static/images/team-katarzyna-kaminska.png +0 -0
  391. package/starters/kadoservices/themes/kadoservices/static/images/team-maria-wisniewska.png +0 -0
  392. package/starters/kadoservices/themes/kadoservices/static/images/team-meeting.jpg +0 -0
  393. package/starters/kadoservices/themes/kadoservices/static/images/team-strategy-session.jpg +0 -0
  394. package/starters/kadoservices/themes/kadoservices/static/images/team-tomasz-lewandowski.png +0 -0
  395. package/starters/kadoservices/themes/kadoservices/static/style.css +542 -0
  396. package/starters/kadoservices/themes/kadoservices/theme.yaml +21 -0
  397. package/starters/kadoservices/themes/starter/_types.ts +93 -0
  398. package/starters/kadoservices/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
  399. package/starters/kadoservices/themes/starter/components/blog-listing/schema.yaml +21 -0
  400. package/starters/kadoservices/themes/starter/components/columns/columns.tsx +101 -0
  401. package/starters/kadoservices/themes/starter/components/columns/schema.yaml +23 -0
  402. package/starters/kadoservices/themes/starter/components/counters/counters.css +13 -0
  403. package/starters/kadoservices/themes/starter/components/counters/counters.tsx +81 -0
  404. package/starters/kadoservices/themes/starter/components/counters/schema.yaml +23 -0
  405. package/starters/kadoservices/themes/starter/components/cta/cta.tsx +57 -0
  406. package/starters/kadoservices/themes/starter/components/cta/schema.yaml +30 -0
  407. package/starters/kadoservices/themes/starter/components/faq/faq.tsx +77 -0
  408. package/starters/kadoservices/themes/starter/components/faq/schema.yaml +20 -0
  409. package/starters/kadoservices/themes/starter/components/features/features.tsx +82 -0
  410. package/starters/kadoservices/themes/starter/components/features/schema.yaml +19 -0
  411. package/starters/kadoservices/themes/starter/components/form/form.tsx +126 -0
  412. package/starters/kadoservices/themes/starter/components/form/schema.yaml +18 -0
  413. package/starters/kadoservices/themes/starter/components/gallery/gallery.tsx +85 -0
  414. package/starters/kadoservices/themes/starter/components/gallery/schema.yaml +27 -0
  415. package/starters/kadoservices/themes/starter/components/hero/hero.tsx +77 -0
  416. package/starters/kadoservices/themes/starter/components/hero/schema.yaml +26 -0
  417. package/starters/kadoservices/themes/starter/components/logo-slider/logo-slider.css +21 -0
  418. package/starters/kadoservices/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
  419. package/starters/kadoservices/themes/starter/components/logo-slider/schema.yaml +23 -0
  420. package/starters/kadoservices/themes/starter/components/pricing/pricing.tsx +141 -0
  421. package/starters/kadoservices/themes/starter/components/pricing/schema.yaml +44 -0
  422. package/starters/kadoservices/themes/starter/components/testimonials/schema.yaml +26 -0
  423. package/starters/kadoservices/themes/starter/components/testimonials/testimonials.tsx +100 -0
  424. package/starters/kadoservices/themes/starter/components/text/schema.yaml +12 -0
  425. package/starters/kadoservices/themes/starter/components/text/text.tsx +62 -0
  426. package/starters/kadoservices/themes/starter/components/text-with-image/schema.yaml +30 -0
  427. package/starters/kadoservices/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
  428. package/starters/kadoservices/themes/starter/components/video/schema.yaml +19 -0
  429. package/starters/kadoservices/themes/starter/components/video/video.tsx +98 -0
  430. package/starters/kadoservices/themes/starter/layouts/article.tsx +42 -0
  431. package/starters/kadoservices/themes/starter/layouts/base.tsx +92 -0
  432. package/starters/kadoservices/themes/starter/layouts/landing-page.tsx +14 -0
  433. package/starters/kadoservices/themes/starter/layouts/page.tsx +29 -0
  434. package/starters/kadoservices/themes/starter/partials/footer.tsx +22 -0
  435. package/starters/kadoservices/themes/starter/partials/header.tsx +32 -0
  436. package/starters/kadoservices/themes/starter/static/style.css +125 -0
  437. package/starters/kadoservices/themes/starter/theme.yaml +16 -0
  438. package/starters/lokatech/config/content-types.yaml +226 -0
  439. package/starters/lokatech/config/languages.yaml +12 -0
  440. package/starters/lokatech/config/section-types.yaml +379 -0
  441. package/starters/lokatech/config/settings.yaml +15 -0
  442. package/starters/lokatech/config/sites.yaml +21 -0
  443. package/starters/lokatech/config/taxonomies.yaml +65 -0
  444. package/starters/lokatech/config/translations/de.yaml +108 -0
  445. package/starters/lokatech/config/translations/en.yaml +108 -0
  446. package/starters/lokatech/config/translations/pl.yaml +108 -0
  447. package/starters/lokatech/content/articles/ai-in-enterprise.md +51 -0
  448. package/starters/lokatech/content/articles/api-gateway-patterns-enterprise.md +35 -0
  449. package/starters/lokatech/content/articles/design-system-enterprise-scale.md +35 -0
  450. package/starters/lokatech/content/articles/domain-driven-design-bounded-contexts.md +35 -0
  451. package/starters/lokatech/content/articles/engineering-team-scaling-50-to-200.md +33 -0
  452. package/starters/lokatech/content/articles/event-driven-architecture-microservices.md +35 -0
  453. package/starters/lokatech/content/articles/future-of-cloud-native.md +47 -0
  454. package/starters/lokatech/content/articles/getting-started.md +83 -0
  455. package/starters/lokatech/content/articles/headless-cms-composable-architecture.md +35 -0
  456. package/starters/lokatech/content/articles/kubernetes-cost-optimization-finops.md +33 -0
  457. package/starters/lokatech/content/articles/legacy-modernization-strangler-fig.md +35 -0
  458. package/starters/lokatech/content/articles/llm-fine-tuning-enterprise-data.md +33 -0
  459. package/starters/lokatech/content/articles/observability-opentelemetry-stack.md +35 -0
  460. package/starters/lokatech/content/articles/platform-engineering-internal-developer-portals.md +33 -0
  461. package/starters/lokatech/content/articles/platform-engineering-internal-developer-portals.pl.md +33 -0
  462. package/starters/lokatech/content/articles/rag-retrieval-augmented-generation-production.md +35 -0
  463. package/starters/lokatech/content/articles/remote-engineering-culture-distributed-teams.md +35 -0
  464. package/starters/lokatech/content/articles/supply-chain-security-sbom.md +35 -0
  465. package/starters/lokatech/content/articles/welcome.md +42 -0
  466. package/starters/lokatech/content/articles/welcome.pl.md +39 -0
  467. package/starters/lokatech/content/articles/zero-trust-network-architecture.md +35 -0
  468. package/starters/lokatech/content/articles/zero-trust-security.md +55 -0
  469. package/starters/lokatech/content/case-studies/banking-platform-modernization.md +67 -0
  470. package/starters/lokatech/content/case-studies/ecommerce-platform-rewrite.md +64 -0
  471. package/starters/lokatech/content/case-studies/govtech-citizen-portal.md +59 -0
  472. package/starters/lokatech/content/case-studies/healthcare-data-pipeline.md +67 -0
  473. package/starters/lokatech/content/case-studies/healthcare-data-pipeline.pl.md +60 -0
  474. package/starters/lokatech/content/case-studies/insurance-claims-automation.md +58 -0
  475. package/starters/lokatech/content/case-studies/manufacturing-iot-digital-twin.md +58 -0
  476. package/starters/lokatech/content/case-studies/retail-cloud-migration.md +49 -0
  477. package/starters/lokatech/content/case-studies/telecom-5g-platform.md +57 -0
  478. package/starters/lokatech/content/industries/energy-utilities.md +35 -0
  479. package/starters/lokatech/content/industries/financial-services.md +35 -0
  480. package/starters/lokatech/content/industries/healthcare.md +35 -0
  481. package/starters/lokatech/content/industries/manufacturing.md +35 -0
  482. package/starters/lokatech/content/industries/retail-ecommerce.md +35 -0
  483. package/starters/lokatech/content/industries/telecom-media.md +35 -0
  484. package/starters/lokatech/content/landing-pages/homepage.pl.yaml +182 -0
  485. package/starters/lokatech/content/landing-pages/homepage.yaml +236 -0
  486. package/starters/lokatech/content/locations/berlin.md +22 -0
  487. package/starters/lokatech/content/locations/krakow.md +22 -0
  488. package/starters/lokatech/content/locations/london.md +22 -0
  489. package/starters/lokatech/content/locations/warsaw.md +22 -0
  490. package/starters/lokatech/content/locations/wroclaw.md +22 -0
  491. package/starters/lokatech/content/pages/about.md +55 -0
  492. package/starters/lokatech/content/pages/about.pl.md +36 -0
  493. package/starters/lokatech/content/pages/careers.md +50 -0
  494. package/starters/lokatech/content/pages/contact.md +51 -0
  495. package/starters/lokatech/content/pages/contact.pl.md +51 -0
  496. package/starters/lokatech/content/pages/security-compliance.md +66 -0
  497. package/starters/lokatech/content/services/cloud-infrastructure.md +73 -0
  498. package/starters/lokatech/content/services/custom-software-development.md +74 -0
  499. package/starters/lokatech/content/services/custom-software-development.pl.md +80 -0
  500. package/starters/lokatech/content/services/cybersecurity.md +72 -0
  501. package/starters/lokatech/content/services/data-ai.md +74 -0
  502. package/starters/lokatech/content/services/digital-transformation.md +70 -0
  503. package/starters/lokatech/content/services/it-outsourcing.md +72 -0
  504. package/starters/lokatech/content/team/anna-kowalska.md +21 -0
  505. package/starters/lokatech/content/team/jan-nowak.md +21 -0
  506. package/starters/lokatech/content/team/katarzyna-kaminska.md +20 -0
  507. package/starters/lokatech/content/team/maria-wisniewska.md +20 -0
  508. package/starters/lokatech/content/team/tomasz-lewandowski.md +20 -0
  509. package/starters/lokatech/starter.yaml +15 -0
  510. package/starters/lokatech/themes/lokatech/_types.ts +93 -0
  511. package/starters/lokatech/themes/lokatech/components/blog-listing/blog-listing.tsx +197 -0
  512. package/starters/lokatech/themes/lokatech/components/blog-listing/schema.yaml +21 -0
  513. package/starters/lokatech/themes/lokatech/components/columns/columns.tsx +104 -0
  514. package/starters/lokatech/themes/lokatech/components/columns/schema.yaml +23 -0
  515. package/starters/lokatech/themes/lokatech/components/counters/counters.css +13 -0
  516. package/starters/lokatech/themes/lokatech/components/counters/counters.tsx +103 -0
  517. package/starters/lokatech/themes/lokatech/components/counters/schema.yaml +23 -0
  518. package/starters/lokatech/themes/lokatech/components/cta/cta.tsx +100 -0
  519. package/starters/lokatech/themes/lokatech/components/cta/schema.yaml +30 -0
  520. package/starters/lokatech/themes/lokatech/components/faq/faq.tsx +77 -0
  521. package/starters/lokatech/themes/lokatech/components/faq/schema.yaml +20 -0
  522. package/starters/lokatech/themes/lokatech/components/features/features.tsx +149 -0
  523. package/starters/lokatech/themes/lokatech/components/features/schema.yaml +19 -0
  524. package/starters/lokatech/themes/lokatech/components/form/form.tsx +135 -0
  525. package/starters/lokatech/themes/lokatech/components/form/schema.yaml +18 -0
  526. package/starters/lokatech/themes/lokatech/components/gallery/gallery.tsx +90 -0
  527. package/starters/lokatech/themes/lokatech/components/gallery/schema.yaml +27 -0
  528. package/starters/lokatech/themes/lokatech/components/hero/hero.tsx +167 -0
  529. package/starters/lokatech/themes/lokatech/components/hero/schema.yaml +26 -0
  530. package/starters/lokatech/themes/lokatech/components/logo-slider/logo-slider.css +21 -0
  531. package/starters/lokatech/themes/lokatech/components/logo-slider/logo-slider.tsx +83 -0
  532. package/starters/lokatech/themes/lokatech/components/logo-slider/schema.yaml +23 -0
  533. package/starters/lokatech/themes/lokatech/components/pricing/pricing.tsx +161 -0
  534. package/starters/lokatech/themes/lokatech/components/pricing/schema.yaml +44 -0
  535. package/starters/lokatech/themes/lokatech/components/testimonials/schema.yaml +26 -0
  536. package/starters/lokatech/themes/lokatech/components/testimonials/testimonials.css +13 -0
  537. package/starters/lokatech/themes/lokatech/components/testimonials/testimonials.tsx +150 -0
  538. package/starters/lokatech/themes/lokatech/components/text/schema.yaml +12 -0
  539. package/starters/lokatech/themes/lokatech/components/text/text.tsx +67 -0
  540. package/starters/lokatech/themes/lokatech/components/text-with-image/schema.yaml +30 -0
  541. package/starters/lokatech/themes/lokatech/components/text-with-image/text-with-image.tsx +92 -0
  542. package/starters/lokatech/themes/lokatech/components/video/schema.yaml +19 -0
  543. package/starters/lokatech/themes/lokatech/components/video/video.tsx +103 -0
  544. package/starters/lokatech/themes/lokatech/layouts/404.tsx +96 -0
  545. package/starters/lokatech/themes/lokatech/layouts/article.tsx +140 -0
  546. package/starters/lokatech/themes/lokatech/layouts/base.tsx +672 -0
  547. package/starters/lokatech/themes/lokatech/layouts/case-study.tsx +233 -0
  548. package/starters/lokatech/themes/lokatech/layouts/index--articles.tsx +246 -0
  549. package/starters/lokatech/themes/lokatech/layouts/index--case-studies.tsx +230 -0
  550. package/starters/lokatech/themes/lokatech/layouts/index--services.tsx +237 -0
  551. package/starters/lokatech/themes/lokatech/layouts/index.tsx +96 -0
  552. package/starters/lokatech/themes/lokatech/layouts/industry.tsx +121 -0
  553. package/starters/lokatech/themes/lokatech/layouts/landing-page.tsx +14 -0
  554. package/starters/lokatech/themes/lokatech/layouts/page--about.tsx +158 -0
  555. package/starters/lokatech/themes/lokatech/layouts/page--careers.tsx +125 -0
  556. package/starters/lokatech/themes/lokatech/layouts/page--contact.tsx +235 -0
  557. package/starters/lokatech/themes/lokatech/layouts/page.tsx +45 -0
  558. package/starters/lokatech/themes/lokatech/layouts/service.tsx +235 -0
  559. package/starters/lokatech/themes/lokatech/partials/footer.tsx +109 -0
  560. package/starters/lokatech/themes/lokatech/partials/header.tsx +53 -0
  561. package/starters/lokatech/themes/lokatech/static/images/article-platform-engineering.jpg +0 -0
  562. package/starters/lokatech/themes/lokatech/static/images/barka-logo.png +0 -0
  563. package/starters/lokatech/themes/lokatech/static/images/case-study-banking-dashboard.jpg +0 -0
  564. package/starters/lokatech/themes/lokatech/static/images/case-study-banking.png +0 -0
  565. package/starters/lokatech/themes/lokatech/static/images/case-study-ecommerce-dashboard.jpg +0 -0
  566. package/starters/lokatech/themes/lokatech/static/images/case-study-healthcare-dashboard.jpg +0 -0
  567. package/starters/lokatech/themes/lokatech/static/images/case-study-healthcare.png +0 -0
  568. package/starters/lokatech/themes/lokatech/static/images/case-study-retail.png +0 -0
  569. package/starters/lokatech/themes/lokatech/static/images/hero-bg.png +0 -0
  570. package/starters/lokatech/themes/lokatech/static/images/lokatech-logo.png +0 -0
  571. package/starters/lokatech/themes/lokatech/static/images/office-warsaw.png +0 -0
  572. package/starters/lokatech/themes/lokatech/static/images/team-anna-kowalska.png +0 -0
  573. package/starters/lokatech/themes/lokatech/static/images/team-collaboration.jpg +0 -0
  574. package/starters/lokatech/themes/lokatech/static/images/team-jan-nowak.png +0 -0
  575. package/starters/lokatech/themes/lokatech/static/images/team-katarzyna-kaminska.png +0 -0
  576. package/starters/lokatech/themes/lokatech/static/images/team-maria-wisniewska.png +0 -0
  577. package/starters/lokatech/themes/lokatech/static/images/team-strategy-session.jpg +0 -0
  578. package/starters/lokatech/themes/lokatech/static/images/team-tomasz-lewandowski.png +0 -0
  579. package/starters/lokatech/themes/lokatech/static/style.css +495 -0
  580. package/starters/lokatech/themes/lokatech/theme.yaml +21 -0
  581. package/starters/lokatech/themes/starter/_types.ts +93 -0
  582. package/starters/lokatech/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
  583. package/starters/lokatech/themes/starter/components/blog-listing/schema.yaml +21 -0
  584. package/starters/lokatech/themes/starter/components/columns/columns.tsx +101 -0
  585. package/starters/lokatech/themes/starter/components/columns/schema.yaml +23 -0
  586. package/starters/lokatech/themes/starter/components/counters/counters.css +13 -0
  587. package/starters/lokatech/themes/starter/components/counters/counters.tsx +81 -0
  588. package/starters/lokatech/themes/starter/components/counters/schema.yaml +23 -0
  589. package/starters/lokatech/themes/starter/components/cta/cta.tsx +57 -0
  590. package/starters/lokatech/themes/starter/components/cta/schema.yaml +30 -0
  591. package/starters/lokatech/themes/starter/components/faq/faq.tsx +77 -0
  592. package/starters/lokatech/themes/starter/components/faq/schema.yaml +20 -0
  593. package/starters/lokatech/themes/starter/components/features/features.tsx +82 -0
  594. package/starters/lokatech/themes/starter/components/features/schema.yaml +19 -0
  595. package/starters/lokatech/themes/starter/components/form/form.tsx +126 -0
  596. package/starters/lokatech/themes/starter/components/form/schema.yaml +18 -0
  597. package/starters/lokatech/themes/starter/components/gallery/gallery.tsx +85 -0
  598. package/starters/lokatech/themes/starter/components/gallery/schema.yaml +27 -0
  599. package/starters/lokatech/themes/starter/components/hero/hero.tsx +77 -0
  600. package/starters/lokatech/themes/starter/components/hero/schema.yaml +26 -0
  601. package/starters/lokatech/themes/starter/components/logo-slider/logo-slider.css +21 -0
  602. package/starters/lokatech/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
  603. package/starters/lokatech/themes/starter/components/logo-slider/schema.yaml +23 -0
  604. package/starters/lokatech/themes/starter/components/pricing/pricing.tsx +141 -0
  605. package/starters/lokatech/themes/starter/components/pricing/schema.yaml +44 -0
  606. package/starters/lokatech/themes/starter/components/testimonials/schema.yaml +26 -0
  607. package/starters/lokatech/themes/starter/components/testimonials/testimonials.tsx +100 -0
  608. package/starters/lokatech/themes/starter/components/text/schema.yaml +12 -0
  609. package/starters/lokatech/themes/starter/components/text/text.tsx +62 -0
  610. package/starters/lokatech/themes/starter/components/text-with-image/schema.yaml +30 -0
  611. package/starters/lokatech/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
  612. package/starters/lokatech/themes/starter/components/video/schema.yaml +19 -0
  613. package/starters/lokatech/themes/starter/components/video/video.tsx +98 -0
  614. package/starters/lokatech/themes/starter/layouts/article.tsx +42 -0
  615. package/starters/lokatech/themes/starter/layouts/base.tsx +92 -0
  616. package/starters/lokatech/themes/starter/layouts/landing-page.tsx +14 -0
  617. package/starters/lokatech/themes/starter/layouts/page.tsx +29 -0
  618. package/starters/lokatech/themes/starter/partials/footer.tsx +22 -0
  619. package/starters/lokatech/themes/starter/partials/header.tsx +32 -0
  620. package/starters/lokatech/themes/starter/static/style.css +125 -0
  621. package/starters/lokatech/themes/starter/theme.yaml +16 -0
@@ -0,0 +1,67 @@
1
+ ---
2
+ title: "Real-time Healthcare Data Pipeline for Clinical Research"
3
+ type: case_study
4
+ status: published
5
+ langcode: en
6
+ slug: healthcare-data-pipeline
7
+ date: 2026-03-21
8
+ fields:
9
+ client_name: "Global Pharmaceutical Company"
10
+ industry: healthcare
11
+ service: data-ai
12
+ duration: "12 months"
13
+ team_size: "20 engineers"
14
+ client_quote: "The data platform LokaTech built has fundamentally changed how we conduct clinical research. What used to take months now happens in real-time."
15
+ client_quote_author: "VP of Data Science"
16
+ client_quote_role: "Global Pharmaceutical Company"
17
+ featured_image: "/static/images/case-study-healthcare-dashboard.jpg"
18
+ gallery:
19
+ - image: "/static/images/case-study-healthcare-dashboard.jpg"
20
+ caption: "Real-time patient flow dashboard with pipeline processing metrics and data quality scoring"
21
+ - image: "/static/images/case-study-healthcare.png"
22
+ caption: "FHIR-compliant data lake architecture monitoring across 15 hospital systems"
23
+ tags:
24
+ - Apache Spark
25
+ - FHIR R4
26
+ - Kubernetes
27
+ - AWS
28
+ - Machine Learning
29
+ metrics:
30
+ - value: "2M+"
31
+ label: "Records processed daily"
32
+ - value: "99.97%"
33
+ label: "Data accuracy"
34
+ - value: "70%"
35
+ label: "Faster insights"
36
+ seo:
37
+ title: "Case Study: Healthcare Data Pipeline — LokaTech Solutions"
38
+ description: "How LokaTech built a real-time data pipeline processing 2M+ patient records daily with 99.97% accuracy for clinical research."
39
+ ---
40
+
41
+ ## The Challenge
42
+
43
+ A global pharmaceutical company was conducting multi-site clinical trials across 15 hospitals in 7 countries. Patient data was trapped in siloed EHR systems, each using different formats and standards. Manual data reconciliation required a team of 20 data managers and introduced a 6-month delay between data collection and actionable research insights. Data quality issues were discovered late in the process, forcing costly re-collection.
44
+
45
+ The company needed a unified data platform that could ingest data from heterogeneous sources in real-time, ensure HIPAA and GDPR compliance across jurisdictions, and deliver research-ready datasets to data scientists without manual intervention.
46
+
47
+ ## The Solution
48
+
49
+ LokaTech deployed a 20-person team of data engineers, ML specialists, and healthcare interoperability experts. The solution was built on a modern data stack designed for healthcare's unique compliance requirements.
50
+
51
+ **Architecture highlights:**
52
+
53
+ - Real-time data ingestion from 15 hospital systems using HL7 FHIR R4 adapters and custom connectors for legacy HL7v2 interfaces
54
+ - Apache Spark-based processing pipeline running on a HIPAA-compliant Kubernetes cluster
55
+ - FHIR-compliant data lake on AWS S3 with end-to-end encryption, column-level access controls, and complete audit trails
56
+ - ML-powered data quality engine that automatically detects anomalies, missing values, and cross-source inconsistencies with 99.97% accuracy
57
+ - Self-service analytics layer enabling data scientists to query harmonized datasets through a governed SQL interface
58
+
59
+ All data processing adheres to data residency requirements — EU patient data never leaves EU regions, US data stays in US-East.
60
+
61
+ ## The Results
62
+
63
+ - **2M+ patient records processed daily** — Fully automated ingestion from all 15 hospital systems
64
+ - **99.97% data accuracy** — ML-powered quality checks reduced error rates from 4.2% to 0.03%
65
+ - **70% faster research insights** — From 6-month manual cycles to near-real-time data availability
66
+ - **80% reduction in data management staff allocation** — Automated reconciliation freed 16 data managers for higher-value analysis
67
+ - **Full regulatory compliance** — Passed HIPAA, GDPR, and FDA 21 CFR Part 11 audits without findings
@@ -0,0 +1,60 @@
1
+ ---
2
+ title: "Pipeline danych medycznych w czasie rzeczywistym dla badań klinicznych"
3
+ type: case_study
4
+ status: published
5
+ langcode: pl
6
+ slug: healthcare-data-pipeline
7
+ date: 2026-03-21
8
+ fields:
9
+ client_name: "Globalna firma farmaceutyczna"
10
+ industry: healthcare
11
+ service: data-ai
12
+ duration: "12 miesięcy"
13
+ team_size: "20 inżynierów"
14
+ client_quote: "Platforma danych, którą zbudował LokaTech, fundamentalnie zmieniła sposób, w jaki prowadzimy badania kliniczne. To, co kiedyś trwało miesiące, teraz dzieje się w czasie rzeczywistym."
15
+ client_quote_author: "VP of Data Science"
16
+ client_quote_role: "Globalna firma farmaceutyczna"
17
+ featured_image: "/static/images/case-study-healthcare-dashboard.jpg"
18
+ gallery:
19
+ - image: "/static/images/case-study-healthcare-dashboard.jpg"
20
+ caption: "Dashboard przepływu pacjentów w czasie rzeczywistym z metrykami przetwarzania pipeline'u i scoringiem jakości danych"
21
+ - image: "/static/images/case-study-healthcare.png"
22
+ caption: "Monitoring architektury data lake zgodnej z FHIR w 15 systemach szpitalnych"
23
+ tags:
24
+ - Apache Spark
25
+ - FHIR R4
26
+ - Kubernetes
27
+ - AWS
28
+ - Machine Learning
29
+ metrics:
30
+ - value: "2M+"
31
+ label: "Rekordów przetwarzanych dziennie"
32
+ - value: "99,97%"
33
+ label: "Dokładność danych"
34
+ - value: "70%"
35
+ label: "Szybsze insights"
36
+ seo:
37
+ title: "Case Study: Pipeline danych medycznych — LokaTech Solutions"
38
+ description: "Jak LokaTech zbudował pipeline danych w czasie rzeczywistym przetwarzający 2M+ rekordów pacjentów dziennie z 99,97% dokładnością dla badań klinicznych."
39
+ ---
40
+
41
+ ## Wyzwanie
42
+
43
+ Globalna firma farmaceutyczna prowadziła wieloośrodkowe badania kliniczne w 15 szpitalach w 7 krajach. Dane pacjentów były uwięzione w silosowych systemach EHR, z których każdy używał różnych formatów i standardów. Ręczna rekoncyliacja danych wymagała zespołu 20 data managerów i wprowadzała 6-miesięczne opóźnienie między zbieraniem danych a otrzymaniem użytecznych wyników badawczych. Problemy z jakością danych były odkrywane późno, wymuszając kosztowne ponowne zbieranie.
44
+
45
+ Firma potrzebowała zunifikowanej platformy danych, która mogłaby pobierać dane z heterogenicznych źródeł w czasie rzeczywistym, zapewnić zgodność z HIPAA i RODO w różnych jurysdykcjach oraz dostarczać gotowe do badań datasety naukowcom bez ręcznej interwencji.
46
+
47
+ ## Rozwiązanie
48
+
49
+ LokaTech wdrożył 20-osobowy zespół inżynierów danych, specjalistów ML i ekspertów interoperacyjności w ochronie zdrowia. Rozwiązanie zostało zbudowane na nowoczesnym stosie danych zaprojektowanym z myślą o unikalnych wymaganiach compliance w ochronie zdrowia.
50
+
51
+ **Architektura obejmowała:**
52
+ - Silnik ingestion w czasie rzeczywistym z adapterami dla 8 formatów EHR (HL7 FHIR R4, HL7v2, CDA)
53
+ - Pipeline przetwarzania Apache Spark na Kubernetes z auto-skalowaniem
54
+ - Data lake z warstwą delta lake dla wersjonowania i podróży w czasie
55
+ - Framework ML do walidacji jakości danych z 200+ regułami biznesowymi
56
+ - Dashboard monitoringu end-to-end z alertowaniem
57
+
58
+ ## Wyniki
59
+
60
+ Platforma przetwarza ponad 2 miliony rekordów pacjentów dziennie z dokładnością 99,97%. Czas od zebrania danych do uzyskania gotowych insights badawczych skrócił się o 70% — z 6 miesięcy do mniej niż 6 tygodni. Automatyczna walidacja jakości wyeliminowała 95% ręcznych kontroli jakości.
@@ -0,0 +1,58 @@
1
+ ---
2
+ title: "AI-Powered Claims Automation for a Global Insurance Group"
3
+ type: case_study
4
+ status: published
5
+ langcode: en
6
+ slug: insurance-claims-automation
7
+ date: 2026-01-25
8
+ fields:
9
+ client_name: "Global Insurance Group (confidential)"
10
+ industry: financial-services
11
+ service: ai-ml
12
+ duration: "10 months"
13
+ team_size: "18 engineers"
14
+ tags:
15
+ - AI/ML
16
+ - NLP
17
+ - Automation
18
+ - Compliance
19
+ metrics:
20
+ - value: "70%"
21
+ label: "Claims auto-processed"
22
+ - value: "4×"
23
+ label: "Faster resolution"
24
+ - value: "92%"
25
+ label: "Customer satisfaction"
26
+ client_quote: "The AI system now handles 70% of routine claims without human intervention. Our adjusters focus on complex cases where their expertise matters most."
27
+ client_quote_author: "Chief Claims Officer"
28
+ client_quote_role: "Global Insurance Group"
29
+ featured_image: "/static/images/hero-bg.png"
30
+ short_description: "Deployed an ML pipeline that auto-processes 70% of insurance claims with 98.5% accuracy, reducing resolution time by 4×."
31
+ seo:
32
+ title: "Case Study: AI Claims Automation — LokaTech Solutions"
33
+ description: "How LokaTech deployed AI to auto-process 70% of insurance claims — 4× faster resolution, 92% customer satisfaction."
34
+ ---
35
+
36
+ ## The Challenge
37
+
38
+ A top-20 global insurance group was struggling with claim processing times averaging 14 days. Manual review of documents, photos, and policy terms created bottlenecks, while inconsistent adjuster decisions led to customer complaints and regulatory scrutiny. They needed to automate routine claims while maintaining compliance with Solvency II requirements.
39
+
40
+ ## The Solution
41
+
42
+ LokaTech built an end-to-end claims intelligence platform combining computer vision, NLP, and decision-engine automation. The system ingests claim submissions (documents, photos, voice recordings), extracts structured data, cross-references policy terms, and either auto-approves or routes to human adjusters with pre-analyzed context.
43
+
44
+ **Key components:**
45
+
46
+ - Computer vision models for damage assessment from photos (vehicles, property)
47
+ - NLP pipeline for document extraction (medical reports, police reports, invoices)
48
+ - Rule engine with ML-augmented decision trees for auto-adjudication
49
+ - Explainability layer providing audit trails for regulatory compliance
50
+ - Human-in-the-loop workflow for edge cases with confidence scores below threshold
51
+
52
+ ## The Results
53
+
54
+ - **70% of claims auto-processed** — Routine claims resolved without human intervention
55
+ - **4× faster resolution** — Average processing time dropped from 14 days to 3.5 days
56
+ - **98.5% accuracy** — On par with senior adjusters, with full audit trails
57
+ - **92% customer satisfaction** — Up from 74%, driven by speed and transparency
58
+ - **€12M annual savings** — Reduced manual processing costs across 8 markets
@@ -0,0 +1,58 @@
1
+ ---
2
+ title: "Digital Twin & IoT Platform for a Tier-1 Automotive Manufacturer"
3
+ type: case_study
4
+ status: published
5
+ langcode: en
6
+ slug: manufacturing-iot-digital-twin
7
+ date: 2026-02-05
8
+ fields:
9
+ client_name: "Tier-1 Automotive Manufacturer (confidential)"
10
+ industry: manufacturing
11
+ service: data-engineering
12
+ duration: "12 months"
13
+ team_size: "22 engineers"
14
+ tags:
15
+ - IoT
16
+ - Digital Twin
17
+ - Predictive Maintenance
18
+ - Edge Computing
19
+ metrics:
20
+ - value: "45%"
21
+ label: "Less unplanned downtime"
22
+ - value: "30%"
23
+ label: "Energy reduction"
24
+ - value: "€15M"
25
+ label: "Annual savings"
26
+ client_quote: "The digital twin gives us visibility we never had before. We can predict equipment failures 72 hours in advance and schedule maintenance during planned downtime."
27
+ client_quote_author: "SVP Manufacturing Operations"
28
+ client_quote_role: "Tier-1 Automotive Manufacturer"
29
+ featured_image: "/static/images/hero-bg.png"
30
+ short_description: "Created a real-time digital twin of 14 manufacturing plants, reducing unplanned downtime by 45% through predictive maintenance."
31
+ seo:
32
+ title: "Case Study: Digital Twin & IoT Platform — LokaTech Solutions"
33
+ description: "How LokaTech built a digital twin for 14 plants — 45% less downtime, 30% energy reduction, €15M annual savings."
34
+ ---
35
+
36
+ ## The Challenge
37
+
38
+ A Tier-1 automotive manufacturer operating 14 plants across Europe was losing €33M annually to unplanned equipment downtime. Maintenance was reactive — machines broke, production stopped, and emergency repairs cost 3-5× more than scheduled maintenance. With 12,000+ pieces of connected equipment generating fragmented sensor data across disparate SCADA systems, they lacked a unified view of plant health.
39
+
40
+ ## The Solution
41
+
42
+ LokaTech built a comprehensive digital twin platform that creates real-time virtual replicas of each manufacturing plant. Edge computing nodes at each facility process sensor data locally, while a central cloud platform aggregates, correlates, and applies ML models for predictive maintenance.
43
+
44
+ **Architecture highlights:**
45
+
46
+ - Edge computing layer (Kubernetes on Nvidia Jetson) for local data processing at each plant
47
+ - Azure IoT Hub for secure device connectivity (12,000+ endpoints)
48
+ - Apache Spark for batch processing of historical maintenance records
49
+ - TensorFlow-based predictive models trained on 5 years of failure data
50
+ - 3D visualization layer using Unity for interactive plant walkthroughs
51
+ - Integration with SAP PM for automated work order generation
52
+
53
+ ## The Results
54
+
55
+ - **45% reduction in unplanned downtime** — Predictive alerts issued 72 hours before failures
56
+ - **30% energy cost reduction** — Optimized equipment scheduling based on real-time demand
57
+ - **€15M annual savings** — Combined maintenance and energy optimization across all plants
58
+ - **8-minute MTTR improvement** — Technicians arrive with the right parts and procedures
@@ -0,0 +1,49 @@
1
+ ---
2
+ title: "Multi-cloud Migration for a European Retail Giant"
3
+ type: case_study
4
+ status: published
5
+ langcode: en
6
+ slug: retail-cloud-migration
7
+ date: 2026-03-21
8
+ fields:
9
+ client_name: "Major European Retailer"
10
+ industry: retail
11
+ service: cloud-infrastructure
12
+ duration: "14 months"
13
+ team_size: "25 engineers"
14
+ client_quote: "The migration was executed flawlessly. We went from dreading Black Friday to welcoming it as a showcase of our platform's capabilities."
15
+ client_quote_author: "CTO"
16
+ client_quote_role: "European Retail Group"
17
+ featured_image: "/static/images/case-study-retail.png"
18
+ seo:
19
+ title: "Case Study: Retail Cloud Migration — LokaTech Solutions"
20
+ description: "How LokaTech migrated 40+ applications to AWS for a European retailer — 60% cost reduction, 3x performance, zero downtime on Black Friday."
21
+ ---
22
+
23
+ ## The Challenge
24
+
25
+ A major European retailer with 500+ stores and a rapidly growing e-commerce division was running 40+ critical applications on aging on-premises infrastructure. The data center was at 90% capacity with no room for expansion. Every Black Friday and holiday season brought the nightmare of traffic spikes that overwhelmed the infrastructure, resulting in site outages costing millions in lost revenue.
26
+
27
+ The company needed to migrate to the cloud without disrupting operations across 12 countries, while simultaneously improving performance, reducing costs, and gaining the elasticity to handle 10x traffic spikes during peak seasons.
28
+
29
+ ## The Solution
30
+
31
+ LokaTech assembled a 25-person cloud engineering team that executed a phased migration strategy over 14 months. Rather than a risky "big bang" approach, each application was assessed individually and migrated using the most appropriate strategy.
32
+
33
+ **Architecture highlights:**
34
+
35
+ - Terraform-based Infrastructure as Code for all 40+ applications, ensuring repeatable, auditable deployments across environments
36
+ - Kubernetes (EKS) for container orchestration of the core e-commerce platform, with horizontal pod autoscaling configured for seasonal peaks
37
+ - CloudFront CDN with edge locations across Europe for sub-100ms page loads in every target market
38
+ - Multi-AZ RDS deployments with read replicas for database-intensive workloads
39
+ - Comprehensive monitoring with Prometheus, Grafana, and PagerDuty integration for 24/7 operational visibility
40
+
41
+ The migration was executed in four waves, starting with development/staging environments, then internal tools, then supporting services, and finally the customer-facing e-commerce platform.
42
+
43
+ ## The Results
44
+
45
+ - **60% reduction in infrastructure costs** — Right-sized instances, reserved capacity, and auto-scaling eliminated over-provisioning
46
+ - **3x improvement in page load times** — CDN deployment and application optimization cut average load times from 3.2s to 1.1s
47
+ - **40+ applications migrated** — All applications moved to AWS with zero data loss
48
+ - **Zero downtime during Black Friday** — Auto-scaling handled a 12x traffic spike seamlessly, processing 340% more orders than the previous year
49
+ - **Deployment frequency increased 8x** — From monthly releases to multiple deployments per week with automated CI/CD pipelines
@@ -0,0 +1,57 @@
1
+ ---
2
+ title: "5G Network Management Platform for a Pan-European Telecom"
3
+ type: case_study
4
+ status: published
5
+ langcode: en
6
+ slug: telecom-5g-platform
7
+ date: 2026-02-18
8
+ fields:
9
+ client_name: "Pan-European Telecom Operator (confidential)"
10
+ industry: telecom
11
+ service: custom-software-development
12
+ duration: "14 months"
13
+ team_size: "28 engineers"
14
+ tags:
15
+ - 5G
16
+ - IoT
17
+ - Real-time
18
+ - Kubernetes
19
+ metrics:
20
+ - value: "99.999%"
21
+ label: "Network uptime"
22
+ - value: "3×"
23
+ label: "Faster provisioning"
24
+ - value: "€8M"
25
+ label: "Annual savings"
26
+ client_quote: "LokaTech delivered a platform that handles 50 million events per second across our network. Their real-time engineering skills are unmatched."
27
+ client_quote_author: "VP Network Engineering"
28
+ client_quote_role: "Pan-European Telecom"
29
+ featured_image: "/static/images/hero-bg.png"
30
+ short_description: "Built a real-time 5G network management platform processing 50M events/second across 12 countries."
31
+ seo:
32
+ title: "Case Study: 5G Network Management Platform — LokaTech Solutions"
33
+ description: "How LokaTech built a 5G network management platform processing 50M events/second — 99.999% uptime, 3× faster provisioning."
34
+ ---
35
+
36
+ ## The Challenge
37
+
38
+ A leading European telecom operator managing networks across 12 countries needed a next-generation network management platform for their 5G rollout. The existing OSS/BSS stack, built on legacy SNMP-based monitoring, couldn't handle the density and latency requirements of 5G network slicing. With 200,000+ cell sites and growing IoT device connections, they needed real-time visibility across their entire infrastructure.
39
+
40
+ ## The Solution
41
+
42
+ LokaTech designed and built a cloud-native network management platform using event-driven architecture. The system ingests telemetry from all network elements via Apache Kafka, processes it through a stream-processing layer built on Apache Flink, and provides real-time dashboards with sub-second latency.
43
+
44
+ **Architecture highlights:**
45
+
46
+ - Apache Kafka + Flink for 50M events/second ingestion and processing
47
+ - Kubernetes-based microservices with custom operators for auto-scaling
48
+ - ClickHouse for real-time analytics on network telemetry data
49
+ - ML-based anomaly detection for predictive network maintenance
50
+ - Multi-region deployment across 4 AWS regions for geo-redundancy
51
+
52
+ ## The Results
53
+
54
+ - **99.999% network uptime** — Predictive maintenance catches issues before they impact customers
55
+ - **3× faster provisioning** — New 5G slices deployed in minutes instead of hours
56
+ - **€8M annual savings** — Automated operations replaced 60% of manual NOC tasks
57
+ - **Sub-second alerting** — From event to dashboard update in under 200ms
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "Energy & Utilities"
3
+ type: industry
4
+ status: published
5
+ langcode: en
6
+ slug: energy-utilities
7
+ date: 2026-03-21
8
+ fields:
9
+ short_description: "Smart grid solutions, ESG reporting, and asset management platforms."
10
+ icon: zap
11
+ related_services: "custom-software-development, data-ai, cloud-infrastructure, cybersecurity"
12
+ seo:
13
+ title: "Energy & Utilities IT Solutions — LokaTech Solutions"
14
+ description: "Smart grid, ESG reporting, and asset management solutions for energy and utilities. SCADA modernization and renewable integration."
15
+ ---
16
+
17
+ ## Industry Challenges
18
+
19
+ The energy sector is undergoing its most significant transformation in a century. The integration of renewable sources (solar, wind, battery storage) into aging grid infrastructure demands intelligent management systems. ESG reporting requirements are tightening — the EU Energy Efficiency Directive, Corporate Sustainability Reporting Directive (CSRD), and taxonomy regulations require granular carbon tracking across operations and supply chains.
20
+
21
+ Legacy SCADA and OT systems, many running for 20+ years, present both security vulnerabilities and modernization challenges. Utilities must balance grid reliability with the unpredictability of renewable generation, all while meeting aggressive decarbonization targets.
22
+
23
+ ## Our Solutions
24
+
25
+ LokaTech helps energy companies and utilities navigate the energy transition with technology that bridges the gap between legacy operations and a sustainable future:
26
+
27
+ - **Smart Grid Solutions** — Advanced metering infrastructure (AMI), demand response platforms, and distributed energy resource management (DERMS)
28
+ - **SCADA Modernization** — Secure migration from legacy SCADA to modern, cloud-connected supervisory systems with full cybersecurity hardening
29
+ - **ESG & Carbon Tracking** — Automated carbon footprint calculation, Scope 1/2/3 emissions tracking, and CSRD-compliant sustainability reporting platforms
30
+ - **Asset Management** — Predictive maintenance for grid assets (transformers, substations, transmission lines) using sensor data and ML
31
+ - **Renewable Integration** — Forecasting models for solar and wind generation, battery storage optimization, and virtual power plant orchestration
32
+
33
+ ## Compliance Standards
34
+
35
+ Our solutions align with the EU Energy Efficiency Directive, CSRD, EU Taxonomy, ISO 50001, NERC CIP, and IEC 62351 cybersecurity standards for power systems.
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "Financial Services & Banking"
3
+ type: industry
4
+ status: published
5
+ langcode: en
6
+ slug: financial-services
7
+ date: 2026-03-21
8
+ fields:
9
+ short_description: "Regulatory-compliant solutions for payments, trading, and risk management."
10
+ icon: landmark
11
+ related_services: "custom-software-development, cybersecurity, data-ai, cloud-infrastructure"
12
+ seo:
13
+ title: "Financial Services & Banking — LokaTech Solutions"
14
+ description: "Enterprise IT solutions for banking and financial services. Core banking modernization, payments, risk management — PCI DSS, DORA, SOX compliant."
15
+ ---
16
+
17
+ ## Industry Challenges
18
+
19
+ Financial institutions operate in one of the most demanding technology environments. Legacy core banking systems — many still running COBOL on mainframes — struggle to meet the demands of real-time payments, open banking APIs, and digital-first customer expectations. Regulatory compliance adds another layer of complexity: PCI DSS, DORA (Digital Operational Resilience Act), MiFID II, SOX, and Basel III requirements must be woven into every system and process.
20
+
21
+ Fraud detection must happen in milliseconds. Customers expect seamless omnichannel experiences. Fintech competitors move fast with modern architectures while incumbent banks carry decades of technical debt.
22
+
23
+ ## Our Solutions
24
+
25
+ LokaTech has delivered 50+ projects for banks, insurers, and fintech companies across Europe. Our financial services practice combines deep domain expertise with modern engineering:
26
+
27
+ - **Core Banking Modernization** — Incremental migration from monolithic mainframe systems to event-driven microservices, preserving business continuity while unlocking agility
28
+ - **Payment Processing** — Real-time payment platforms supporting SEPA, SWIFT, and instant payment schemes with sub-second processing
29
+ - **Risk Management & Compliance** — Automated regulatory reporting, real-time risk scoring, and AML/KYC platforms
30
+ - **Open Banking & APIs** — PSD2-compliant API platforms enabling third-party integrations and new revenue streams
31
+ - **Fraud Detection** — ML-powered transaction monitoring with real-time anomaly detection and adaptive rule engines
32
+
33
+ ## Compliance Standards
34
+
35
+ We engineer solutions that meet the strictest financial regulations: PCI DSS, DORA, SOX, Basel III/IV, MiFID II, PSD2, GDPR, and local regulatory frameworks across the EU.
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "Healthcare & Life Sciences"
3
+ type: industry
4
+ status: published
5
+ langcode: en
6
+ slug: healthcare
7
+ date: 2026-03-21
8
+ fields:
9
+ short_description: "HIPAA-compliant platforms for patient data, clinical trials, and telemedicine."
10
+ icon: stethoscope
11
+ related_services: "custom-software-development, data-ai, cloud-infrastructure, cybersecurity"
12
+ seo:
13
+ title: "Healthcare & Life Sciences IT Solutions — LokaTech Solutions"
14
+ description: "HIPAA-compliant healthcare IT solutions. Patient data platforms, clinical trials, telemedicine — HL7 FHIR interoperability."
15
+ ---
16
+
17
+ ## Industry Challenges
18
+
19
+ Healthcare organizations face a perfect storm of challenges: stringent compliance requirements (HIPAA, GDPR, FDA 21 CFR Part 11), interoperability mandates (HL7 FHIR), and legacy EHR systems that resist integration. Patient data is scattered across siloed systems, making coordinated care nearly impossible. Clinical research timelines stretch for years partly due to manual data reconciliation processes.
20
+
21
+ Meanwhile, patients demand digital experiences — telemedicine, patient portals, and real-time access to their health records. The gap between what healthcare technology promises and what it delivers remains vast.
22
+
23
+ ## Our Solutions
24
+
25
+ LokaTech's healthcare practice serves hospitals, pharmaceutical companies, and healthtech startups with solutions designed for the unique demands of the sector:
26
+
27
+ - **Patient Data Platforms** — Unified health records built on HL7 FHIR standards, enabling interoperability across hospitals, labs, and pharmacies
28
+ - **Clinical Trial Management** — End-to-end platforms for protocol management, patient recruitment, data capture, and regulatory submission
29
+ - **Telemedicine & Remote Care** — HIPAA-compliant video consultation platforms with integrated diagnostics and e-prescribing
30
+ - **Medical Data Analytics** — Real-time dashboards for population health, outcome tracking, and predictive models for readmission risk
31
+ - **Regulatory Compliance Automation** — Automated audit trails, consent management, and compliance monitoring for HIPAA, GDPR, and FDA requirements
32
+
33
+ ## Compliance Standards
34
+
35
+ Every solution we deliver meets the highest healthcare compliance standards: HIPAA, GDPR, FDA 21 CFR Part 11, HL7 FHIR R4, DICOM, and the European Health Data Space (EHDS) framework.
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "Manufacturing & Automotive"
3
+ type: industry
4
+ status: published
5
+ langcode: en
6
+ slug: manufacturing
7
+ date: 2026-03-21
8
+ fields:
9
+ short_description: "IoT, predictive maintenance, and supply chain optimization solutions."
10
+ icon: factory
11
+ related_services: "custom-software-development, data-ai, cloud-infrastructure"
12
+ seo:
13
+ title: "Manufacturing & Automotive IT Solutions — LokaTech Solutions"
14
+ description: "Industry 4.0 solutions for manufacturing and automotive. IoT, predictive maintenance, digital twins, and supply chain optimization."
15
+ ---
16
+
17
+ ## Industry Challenges
18
+
19
+ Manufacturing and automotive companies are in the midst of the Industry 4.0 transformation. Supply chain disruptions — from semiconductor shortages to geopolitical risks — have exposed the fragility of traditional operations. Quality control demands are rising while margins tighten. Factories generate enormous volumes of sensor data, but most of it goes unanalyzed.
20
+
21
+ The shift to electric vehicles, sustainability mandates, and smart factory initiatives require deep integration between OT (operational technology) and IT systems — a bridge that most organizations struggle to build.
22
+
23
+ ## Our Solutions
24
+
25
+ LokaTech partners with manufacturers and automotive OEMs to digitize operations from the shop floor to the supply chain:
26
+
27
+ - **IoT Platforms** — End-to-end architectures connecting sensors, PLCs, and edge devices to cloud analytics, with support for Azure IoT Hub, AWS IoT Core, and custom MQTT brokers
28
+ - **Predictive Maintenance** — ML models trained on vibration, temperature, and usage data to predict equipment failures before they cause downtime
29
+ - **Digital Twins** — Virtual replicas of production lines, vehicles, and supply chains for simulation, optimization, and what-if analysis
30
+ - **MES Integration** — Connecting Manufacturing Execution Systems with ERP, PLM, and quality management platforms for end-to-end traceability
31
+ - **Supply Chain Optimization** — Demand forecasting, inventory optimization, and logistics planning powered by real-time data and AI
32
+
33
+ ## Technologies
34
+
35
+ Azure IoT Hub, AWS IoT Core, Apache Kafka, TimescaleDB, TensorFlow, edge computing (NVIDIA Jetson, Azure IoT Edge), OPC UA, digital twin platforms.
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "Retail & E-commerce"
3
+ type: industry
4
+ status: published
5
+ langcode: en
6
+ slug: retail-ecommerce
7
+ date: 2026-03-21
8
+ fields:
9
+ short_description: "Omnichannel platforms, personalization engines, and inventory management."
10
+ icon: store
11
+ related_services: "custom-software-development, cloud-infrastructure, data-ai"
12
+ seo:
13
+ title: "Retail & E-commerce IT Solutions — LokaTech Solutions"
14
+ description: "Enterprise retail technology solutions. Omnichannel platforms, personalization engines, inventory management, and e-commerce at scale."
15
+ ---
16
+
17
+ ## Industry Challenges
18
+
19
+ Modern retail is defined by the omnichannel imperative: customers expect a seamless experience whether they browse on mobile, purchase online, or visit a physical store. Personalization at scale — the right product, right price, right moment — separates winners from the rest. Seasonal traffic spikes (Black Friday, holiday sales) can make or break annual revenue, demanding infrastructure that scales elastically.
20
+
21
+ Legacy POS systems, fragmented inventory data, and disconnected marketing channels create blind spots that erode margins and customer loyalty.
22
+
23
+ ## Our Solutions
24
+
25
+ LokaTech builds technology platforms that help retailers compete in the digital-first economy:
26
+
27
+ - **E-commerce Platforms** — High-performance, scalable storefronts built on Shopify Plus, Magento, or fully custom architectures handling millions of SKUs and thousands of transactions per second
28
+ - **Recommendation & Personalization Engines** — ML-powered product recommendations, dynamic pricing, and personalized marketing campaigns that increase conversion rates by 20-40%
29
+ - **Inventory & Order Management** — Real-time inventory visibility across warehouses, stores, and fulfillment centers with intelligent order routing
30
+ - **POS Integration** — Unified commerce platforms connecting online and offline channels with real-time data synchronization
31
+ - **Customer Data Platforms** — 360-degree customer profiles aggregating purchase history, browsing behavior, and support interactions for targeted engagement
32
+
33
+ ## Technologies
34
+
35
+ Shopify Plus, Magento/Adobe Commerce, custom headless commerce, Elasticsearch, Redis, Apache Kafka, TensorFlow Recommenders, Kubernetes, Cloudflare CDN.
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "Telecom & Media"
3
+ type: industry
4
+ status: published
5
+ langcode: en
6
+ slug: telecom-media
7
+ date: 2026-03-21
8
+ fields:
9
+ short_description: "5G-ready infrastructure, content delivery, and subscriber management."
10
+ icon: signal
11
+ related_services: "custom-software-development, cloud-infrastructure, data-ai"
12
+ seo:
13
+ title: "Telecom & Media IT Solutions — LokaTech Solutions"
14
+ description: "Enterprise telecom solutions. BSS/OSS modernization, 5G infrastructure, content delivery, and subscriber management platforms."
15
+ ---
16
+
17
+ ## Industry Challenges
18
+
19
+ Telecommunications companies face a triple challenge: rolling out 5G networks while monetizing the investment, modernizing legacy BSS/OSS stacks built over decades of acquisitions, and competing with OTT players for subscriber attention. Network complexity is exploding — from RAN to edge to core — while customers expect zero-latency, always-on connectivity.
20
+
21
+ Subscriber churn remains a persistent problem, driven by commoditized pricing and poor customer experience. Media companies, meanwhile, struggle with content delivery at scale, rights management, and the transition from linear to on-demand consumption.
22
+
23
+ ## Our Solutions
24
+
25
+ LokaTech works with telecom operators and media companies across Europe to modernize their technology foundations:
26
+
27
+ - **BSS/OSS Modernization** — Decomposing monolithic billing, CRM, and network management systems into cloud-native microservices aligned with TMForum Open APIs
28
+ - **5G-ready Infrastructure** — Cloud-native network functions (CNF), network slicing orchestration, and edge computing platforms
29
+ - **Content Delivery** — Scalable CDN architectures, transcoding pipelines, and DRM integration for OTT streaming platforms
30
+ - **Subscriber Analytics** — Real-time churn prediction, usage pattern analysis, and personalized retention campaigns powered by ML
31
+ - **Network Automation** — Intent-based networking, automated provisioning, and self-healing network operations using AIOps
32
+
33
+ ## Technologies
34
+
35
+ Cloud-native NFV, Kubernetes, Apache Kafka, Apache Flink, TensorFlow, Grafana, Prometheus, TMForum Open APIs, ONAP, real-time stream processing.