@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,182 @@
1
+ uuid: "nt-homepage-001-pl"
2
+ title: "LokaTech Solutions"
3
+ type: landing_page
4
+ status: published
5
+ langcode: pl
6
+ slug: homepage
7
+ date: 2026-03-21
8
+ seo:
9
+ title: "LokaTech Solutions — Usługi IT dla przedsiębiorstw i transformacja cyfrowa"
10
+ description: "Tworzymy technologie, które napędzają przedsiębiorstwa. Oprogramowanie na zamówienie, chmura, AI, cyberbezpieczeństwo — 800+ inżynierów w Europie."
11
+
12
+ sections:
13
+
14
+ - type: hero
15
+ alignment: center
16
+ heading: "Tworzymy *technologie*, które napędzają przedsiębiorstwa"
17
+ subheading: "Oprogramowanie na zamówienie, infrastruktura chmurowa, AI i cyberbezpieczeństwo — dostarczane przez 800+ inżynierów z 6 europejskich biur."
18
+ cta_text: "Rozpocznij projekt"
19
+ cta_url: "/contact"
20
+ cta_secondary_text: "Zobacz realizacje"
21
+ cta_secondary_url: "/case-studies"
22
+ settings:
23
+ background: dark
24
+ spacing: xlarge
25
+ width: wide
26
+ background_image: /static/images/hero-bg.png
27
+
28
+ - type: logo_slider
29
+ heading: "Zaufali nam liderzy branży"
30
+ items:
31
+ - alt: "Droptica"
32
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Droptica"
33
+ - alt: "Open Intranet"
34
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Open+Intranet"
35
+ - alt: "Deutsche Bank"
36
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Deutsche+Bank"
37
+ - alt: "Siemens"
38
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Siemens"
39
+ - alt: "Roche"
40
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Roche"
41
+ - alt: "Volkswagen"
42
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Volkswagen"
43
+ - alt: "T-Mobile"
44
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=T-Mobile"
45
+ - alt: "ING Bank"
46
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=ING+Bank"
47
+ - alt: "Bosch"
48
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Bosch"
49
+ - alt: "Philips"
50
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Philips"
51
+ settings:
52
+ spacing: medium
53
+
54
+ - type: features
55
+ heading: "Kompleksowe usługi *inżynieryjne*"
56
+ subheading: "Od strategii po wdrożenie — jeden partner na cały stos technologiczny."
57
+ columns: "3"
58
+ items:
59
+ - title: "Oprogramowanie na zamówienie"
60
+ description: "Dedykowane aplikacje budowane w nowoczesnych architekturach z dostawą w metodyce agile — od MVP po platformy enterprise."
61
+ icon: code
62
+ - title: "Chmura i DevOps"
63
+ description: "AWS, Azure, GCP — migracja, infrastruktura jako kod, Kubernetes i zarządzane usługi 24/7."
64
+ icon: cloud
65
+ - title: "AI i dane"
66
+ description: "Uczenie maszynowe, integracja LLM, pipeline'y danych i analityka przekształcająca informacje w przewagę konkurencyjną."
67
+ icon: brain
68
+ - title: "Cyberbezpieczeństwo"
69
+ description: "Audyty bezpieczeństwa, usługi SOC, frameworki compliance i architektura zero-trust dla regulowanych branż."
70
+ icon: shield
71
+ - title: "Rozszerzenie zespołu"
72
+ description: "Dedykowane zespoły inżynierskie, które skalują się od 1 specjalisty do 50-osobowych zespołów w ciągu tygodni."
73
+ icon: users
74
+ - title: "Transformacja cyfrowa"
75
+ description: "Modernizacja systemów legacy, automatyzacja procesów i doradztwo strategiczne przyspieszające cyfrową transformację."
76
+ icon: rocket
77
+ settings:
78
+ spacing: large
79
+
80
+ - type: counters
81
+ heading: "Sprawdzeni w *skali*"
82
+ items:
83
+ - number: "800"
84
+ label: "Inżynierów"
85
+ suffix: "+"
86
+ - number: "15"
87
+ label: "Lat doświadczenia"
88
+ suffix: "+"
89
+ - number: "200"
90
+ label: "Zrealizowanych projektów"
91
+ suffix: "+"
92
+ - number: "6"
93
+ label: "Biur w Europie"
94
+ settings:
95
+ background: dark
96
+ spacing: large
97
+
98
+ - type: text_with_image
99
+ heading: "Twój dedykowany zespół inżynierski"
100
+ body: "Nie outsourcujemy. Każdy projekt obsługują seniorzy z naszych europejskich biur — architekci, eksperci domenowi i liderzy delivery, którzy towarzyszą Ci od odkrycia po produkcję. Nasze zespoły integrują się z Twoją organizacją, poznają Twój codebase i działają jako rozszerzenie Twojego działu inżynierii."
101
+ image: "/static/images/team-collaboration.jpg"
102
+ image_alt: "Zespół inżynierów LokaTech współpracujący nad architekturą systemu"
103
+ image_position: right
104
+ cta_text: "Poznaj nasz zespół"
105
+ cta_url: "/about"
106
+ settings:
107
+ spacing: large
108
+ background: light
109
+
110
+ - type: features
111
+ heading: "Realne wyniki dla *prawdziwych przedsiębiorstw*"
112
+ subheading: "Zobacz, jak pomogliśmy liderom branży transformować ich technologię."
113
+ columns: "3"
114
+ items:
115
+ - title: "Modernizacja platformy bankowej"
116
+ description: "Migracja legacy systemu core banking do mikroserwisów dla europejskiego banku Tier-1. 85% szybsze wdrożenia, 99,99% uptime, 2,4M € rocznych oszczędności."
117
+ icon: building
118
+ - title: "Pipeline AI dla służby zdrowia"
119
+ description: "Budowa pipeline'u ML w czasie rzeczywistym przetwarzającego 2M+ rekordów pacjentów dziennie z pełną zgodnością HIPAA. Skrócenie czasu diagnostyki o 40%."
120
+ icon: heart
121
+ - title: "Migracja chmurowa dla retailu"
122
+ description: "Przeniesienie 40+ aplikacji do AWS dla retailera z Fortune 500. 60% redukcja kosztów infrastruktury, 3× wzrost wydajności, zero przestojów."
123
+ icon: shopping-cart
124
+ settings:
125
+ spacing: large
126
+ background: light
127
+
128
+ - type: testimonials
129
+ heading: "Co mówią nasi *klienci*"
130
+ items:
131
+ - quote: "LokaTech zastąpił naszych trzech offshore'owych dostawców jednym zintegrowanym zespołem. Szybkość delivery podwoiła się, a wskaźnik defektów spadł o 70%. Są teraz naszym strategicznym partnerem technologicznym."
132
+ author: "Thomas Müller"
133
+ role: "CTO, Deutsche Industriebank"
134
+ - quote: "Migracja do chmury była najsprawniejszym projektem infrastrukturalnym, jaki realizowaliśmy w ciągu 15 lat. Zespół LokaTech rozumiał nasze ograniczenia regulacyjne od pierwszego dnia i dotrzymał każdego kamienia milowego."
135
+ author: "Dr. Sarah van den Berg"
136
+ role: "VP Engineering, Roche Digital"
137
+ - quote: "Przeszliśmy od pomysłu do produkcyjnego pipeline'u ML w 12 tygodni. Ich zespół AI nie tylko zbudował — przekazał wiedzę, aby nasz wewnętrzny zespół mógł utrzymywać i rozwijać system."
138
+ author: "Marek Kowalczyk"
139
+ role: "Head of Data, mBank"
140
+ settings:
141
+ spacing: large
142
+ background: light
143
+
144
+ - type: text_with_image
145
+ heading: "Od pierwszej rozmowy do produkcji"
146
+ body: "Każda współpraca zaczyna się od 60-minutowego warsztatu discovery prowadzonego przez architekta rozwiązań i eksperta domenowego. Mapujemy Twoje wyzwania, oceniamy opcje i dostarczamy konkretną roadmapę — zanim zostanie napisana pierwsza linia kodu. Żadnego pitchu sprzedażowego, żadnych generycznych propozycji. Tylko inżynieryjna jasność."
147
+ image: "/static/images/team-strategy-session.jpg"
148
+ image_alt: "Architekci LokaTech przeglądający strategię infrastruktury chmurowej"
149
+ image_position: left
150
+ cta_text: "Umów warsztat"
151
+ cta_url: "/contact"
152
+ settings:
153
+ spacing: large
154
+ background: light
155
+
156
+ - type: cta
157
+ eyebrow: "Gotowy, aby zacząć?"
158
+ heading: "Zbudujmy coś wyjątkowego"
159
+ description: "Opowiedz nam o swoim projekcie. Nasi architekci rozwiązań odpowiedzą w ciągu 24 godzin z dopasowaną propozycją."
160
+ button_text: "Rozpocznij rozmowę"
161
+ button_url: "/contact"
162
+ secondary_text: "Zobacz nasze usługi"
163
+ secondary_url: "/services"
164
+ settings:
165
+ background: dark
166
+ spacing: large
167
+
168
+ - type: logo_slider
169
+ heading: "Nagrody i certyfikaty"
170
+ items:
171
+ - alt: "ISO 27001"
172
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=ISO+27001"
173
+ - alt: "AWS Partner"
174
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=AWS+Partner"
175
+ - alt: "Microsoft Gold"
176
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=Microsoft+Gold"
177
+ - alt: "Clutch Top 100"
178
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=Clutch+Top+100"
179
+ - alt: "Great Place to Work"
180
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=GPTW"
181
+ settings:
182
+ spacing: medium
@@ -0,0 +1,236 @@
1
+ uuid: "nt-homepage-001"
2
+ title: "LokaTech Solutions"
3
+ type: landing_page
4
+ status: published
5
+ langcode: en
6
+ slug: homepage
7
+ date: 2026-03-21
8
+ seo:
9
+ title: "LokaTech Solutions — Enterprise IT Services & Digital Transformation"
10
+ description: "We engineer technology that moves enterprises forward. Custom software, cloud, AI, cybersecurity — 800+ engineers across Europe."
11
+
12
+ sections:
13
+
14
+ # ───────────────────────────────────────────
15
+ # 1. HERO — Halo Effect: one bold statement
16
+ # ───────────────────────────────────────────
17
+ - type: hero
18
+ alignment: center
19
+ heading: "We engineer *technology* that moves enterprises forward"
20
+ subheading: "Custom software, cloud infrastructure, AI, and cybersecurity — delivered by 800+ engineers across 6 European offices."
21
+ cta_text: "Start a Project"
22
+ cta_url: "/contact"
23
+ cta_secondary_text: "View Case Studies"
24
+ cta_secondary_url: "/case-studies"
25
+ settings:
26
+ background: dark
27
+ spacing: xlarge
28
+ width: wide
29
+ background_image: /static/images/hero-bg.png
30
+
31
+ # ───────────────────────────────────────────
32
+ # 2. SOCIAL PROOF — Logo marquee
33
+ # ───────────────────────────────────────────
34
+ - type: logo_slider
35
+ heading: "Trusted by industry leaders"
36
+ items:
37
+ - alt: "Droptica"
38
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Droptica"
39
+ - alt: "Open Intranet"
40
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Open+Intranet"
41
+ - alt: "Deutsche Bank"
42
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Deutsche+Bank"
43
+ - alt: "Siemens"
44
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Siemens"
45
+ - alt: "Roche"
46
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Roche"
47
+ - alt: "Volkswagen"
48
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Volkswagen"
49
+ - alt: "T-Mobile"
50
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=T-Mobile"
51
+ - alt: "ING Bank"
52
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=ING+Bank"
53
+ - alt: "Bosch"
54
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Bosch"
55
+ - alt: "Philips"
56
+ image: "https://placehold.co/160x60/e2e8f0/64748b?text=Philips"
57
+ settings:
58
+ spacing: medium
59
+
60
+ # ───────────────────────────────────────────
61
+ # 3. SERVICES — 6 capabilities, clean grid
62
+ # ───────────────────────────────────────────
63
+ - type: features
64
+ heading: "Full-spectrum *engineering* services"
65
+ subheading: "From strategy to delivery — one partner for your entire technology stack."
66
+ columns: "3"
67
+ items:
68
+ - title: "Custom Software"
69
+ description: "Bespoke applications built with modern architectures and agile delivery — from MVPs to enterprise platforms."
70
+ icon: code
71
+ - title: "Cloud & DevOps"
72
+ description: "AWS, Azure, GCP — migration, infrastructure-as-code, Kubernetes, and 24/7 managed services."
73
+ icon: cloud
74
+ - title: "AI & Data"
75
+ description: "Machine learning, LLM integration, data pipelines, and analytics that turn information into competitive advantage."
76
+ icon: brain
77
+ - title: "Cybersecurity"
78
+ description: "Security audits, SOC services, compliance frameworks, and zero-trust architecture for regulated industries."
79
+ icon: shield
80
+ - title: "Team Extension"
81
+ description: "Embedded engineering squads that scale from 1 specialist to 50-person delivery teams within weeks."
82
+ icon: users
83
+ - title: "Digital Transformation"
84
+ description: "Legacy modernization, process automation, and strategic advisory to accelerate your digital roadmap."
85
+ icon: rocket
86
+ settings:
87
+ spacing: large
88
+
89
+ # ───────────────────────────────────────────
90
+ # 4. COUNTERS — Impact numbers
91
+ # ───────────────────────────────────────────
92
+ - type: counters
93
+ heading: "Proven at *scale*"
94
+ items:
95
+ - number: "800"
96
+ label: "Engineers"
97
+ suffix: "+"
98
+ - number: "15"
99
+ label: "Years in Business"
100
+ suffix: "+"
101
+ - number: "200"
102
+ label: "Projects Delivered"
103
+ suffix: "+"
104
+ - number: "6"
105
+ label: "European Offices"
106
+ settings:
107
+ background: dark
108
+ spacing: large
109
+
110
+ # ───────────────────────────────────────────
111
+ # 5. TEAM — Human element (Halo Effect)
112
+ # ───────────────────────────────────────────
113
+ - type: text_with_image
114
+ heading: "Your dedicated engineering team"
115
+ body: "We don't outsource. Every project is staffed with senior engineers from our European offices — architects, domain experts, and delivery leads who stay with you from discovery to production. Our teams embed with your organization, learn your codebase, and operate as an extension of your engineering department."
116
+ image: "/static/images/team-collaboration.jpg"
117
+ image_alt: "LokaTech engineering team collaborating on system architecture"
118
+ image_position: right
119
+ cta_text: "Meet Our Team"
120
+ cta_url: "/about"
121
+ settings:
122
+ spacing: large
123
+ background: light
124
+
125
+ # ───────────────────────────────────────────
126
+ # 6. CASE STUDIES — Featured results
127
+ # ───────────────────────────────────────────
128
+ - type: features
129
+ heading: "Real results for *real enterprises*"
130
+ subheading: "See how we've helped industry leaders transform their technology."
131
+ columns: "3"
132
+ items:
133
+ - title: "Banking Platform Modernization"
134
+ description: "Migrated a legacy core banking system to microservices for a Tier-1 European bank. 85% faster deployments, 99.99% uptime, €2.4M annual savings."
135
+ icon: building
136
+ - title: "Healthcare AI Pipeline"
137
+ description: "Built a real-time ML pipeline processing 2M+ patient records daily with full HIPAA compliance. Reduced diagnostic wait times by 40%."
138
+ icon: heart
139
+ - title: "Retail Cloud Migration"
140
+ description: "Moved 40+ applications to AWS for a Fortune 500 retailer. 60% infrastructure cost reduction, 3× performance improvement, zero downtime."
141
+ icon: shopping-cart
142
+ settings:
143
+ spacing: large
144
+ background: light
145
+
146
+ # ───────────────────────────────────────────
147
+ # 6. TESTIMONIALS — Social proof from clients
148
+ # ───────────────────────────────────────────
149
+ - type: testimonials
150
+ heading: "What our *clients* say"
151
+ items:
152
+ - quote: "LokaTech replaced our three offshore vendors with a single integrated team. Delivery speed doubled and defect rate dropped by 70%. They're now our strategic technology partner."
153
+ author: "Thomas Müller"
154
+ role: "CTO, Deutsche Industriebank"
155
+ - quote: "The cloud migration was the smoothest infrastructure project we've run in 15 years. LokaTech's team understood our regulatory constraints from day one and delivered on every milestone."
156
+ author: "Dr. Sarah van den Berg"
157
+ role: "VP Engineering, Roche Digital"
158
+ - quote: "We went from idea to production ML pipeline in 12 weeks. Their AI team didn't just build — they transferred knowledge so our internal team could maintain and extend the system."
159
+ author: "Marek Kowalczyk"
160
+ role: "Head of Data, mBank"
161
+ settings:
162
+ spacing: large
163
+ background: light
164
+
165
+ # ───────────────────────────────────────────
166
+ # 7. INSIGHTS — Latest articles (inline)
167
+ # ───────────────────────────────────────────
168
+ - type: blog_listing
169
+ heading: "Latest *insights*"
170
+ items:
171
+ - title: "Platform Engineering: Building Internal Developer Portals That Teams Actually Use"
172
+ url: "/articles/platform-engineering-internal-developer-portals"
173
+ excerpt: "How we treat internal platforms as products, not tickets — and what that means for golden paths, self-service, and measurable developer experience."
174
+ image: "/static/images/hero-bg.png"
175
+ date: "Mar 20, 2026"
176
+ - title: "Fine-Tuning LLMs on Enterprise Data: When It Helps — and When It Hurts"
177
+ url: "/articles/llm-fine-tuning-enterprise-data"
178
+ excerpt: "A practical look at supervised fine-tuning for domain language, data governance constraints, and the baseline you should beat with retrieval before you train."
179
+ image: "/static/images/hero-bg.png"
180
+ date: "Mar 18, 2026"
181
+ - title: "Event-Driven Microservices: Patterns We Reach For — and the Coupling We Avoid"
182
+ url: "/articles/event-driven-architecture-microservices"
183
+ excerpt: "From outbox and idempotent consumers to saga trade-offs: how we design event-driven systems that stay understandable as they grow."
184
+ image: "/static/images/hero-bg.png"
185
+ date: "Mar 15, 2026"
186
+ settings:
187
+ spacing: large
188
+
189
+ # ───────────────────────────────────────────
190
+ # 9. STRATEGY — Peak-end personal touch
191
+ # ───────────────────────────────────────────
192
+ - type: text_with_image
193
+ heading: "From first call to production"
194
+ body: "Every engagement starts with a 60-minute discovery workshop led by a solution architect and a domain expert. We map your challenges, evaluate options, and deliver a concrete roadmap — before a single line of code is written. No sales pitch, no generic proposals. Just engineering clarity."
195
+ image: "/static/images/team-strategy-session.jpg"
196
+ image_alt: "LokaTech architects reviewing cloud infrastructure strategy"
197
+ image_position: left
198
+ cta_text: "Book a Workshop"
199
+ cta_url: "/contact"
200
+ settings:
201
+ spacing: large
202
+ background: light
203
+
204
+ # ───────────────────────────────────────────
205
+ # 10. CTA — Strong closing
206
+ # ───────────────────────────────────────────
207
+ - type: cta
208
+ eyebrow: "Ready to start?"
209
+ heading: "Let's build something extraordinary"
210
+ description: "Tell us about your project. Our solution architects will respond within 24 hours with a tailored proposal."
211
+ button_text: "Start a Conversation"
212
+ button_url: "/contact"
213
+ secondary_text: "View Our Services"
214
+ secondary_url: "/services"
215
+ settings:
216
+ background: dark
217
+ spacing: large
218
+
219
+ # ───────────────────────────────────────────
220
+ # 9. AWARDS — Logo marquee
221
+ # ───────────────────────────────────────────
222
+ - type: logo_slider
223
+ heading: "Awards & Certifications"
224
+ items:
225
+ - alt: "ISO 27001"
226
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=ISO+27001"
227
+ - alt: "AWS Partner"
228
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=AWS+Partner"
229
+ - alt: "Microsoft Gold"
230
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=Microsoft+Gold"
231
+ - alt: "Clutch Top 100"
232
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=Clutch+Top+100"
233
+ - alt: "Great Place to Work"
234
+ image: "https://placehold.co/120x60/e2e8f0/64748b?text=GPTW"
235
+ settings:
236
+ spacing: medium
@@ -0,0 +1,22 @@
1
+ ---
2
+ title: "Berlin"
3
+ type: location
4
+ status: published
5
+ langcode: en
6
+ slug: berlin
7
+ date: 2026-03-21
8
+ fields:
9
+ city: "Berlin"
10
+ country: "Germany"
11
+ address: "Friedrichstraße 123, 10117 Berlin"
12
+ employee_count: 80
13
+ specializations: "Consulting, Digital Transformation"
14
+ photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=Berlin+Office"
15
+ seo:
16
+ title: "Berlin Office — LokaTech Solutions"
17
+ description: "LokaTech Berlin office. 80 professionals specializing in consulting and digital transformation for the DACH market."
18
+ ---
19
+
20
+ Opened in 2018, the Berlin office is LokaTech's gateway to the DACH market — Germany, Austria, and Switzerland. Located on Friedrichstraße in the heart of Berlin's business district, the 80-person team combines consulting expertise with engineering delivery to serve German-speaking enterprise clients who value both strategic vision and hands-on execution.
21
+
22
+ The Berlin team focuses on digital transformation consulting, enterprise architecture, and pre-sales engineering. With native German-speaking consultants and architects, the office provides the cultural fit and language capabilities that DACH enterprise clients expect. The team works closely with engineering centers in Warsaw, Kraków, and Wrocław, acting as the client-facing interface for delivery teams across Poland. Berlin has been instrumental in winning several of LokaTech's largest engagements, including the core banking modernization project for a top-10 European bank.
@@ -0,0 +1,22 @@
1
+ ---
2
+ title: "Kraków"
3
+ type: location
4
+ status: published
5
+ langcode: en
6
+ slug: krakow
7
+ date: 2026-03-21
8
+ fields:
9
+ city: "Kraków"
10
+ country: "Poland"
11
+ address: "ul. Pawia 5, 31-154 Kraków"
12
+ employee_count: 200
13
+ specializations: "Custom Software, Data Engineering"
14
+ photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=Krakow+Office"
15
+ seo:
16
+ title: "Kraków Office — LokaTech Solutions"
17
+ description: "LokaTech Kraków development center. 200 engineers specializing in custom software development and data engineering."
18
+ ---
19
+
20
+ Opened in 2011, the Kraków office is LokaTech's second-largest development center and a powerhouse for custom software development and data engineering. Located near the main railway station in a modern business campus, the 200-person team benefits from Kraków's vibrant tech ecosystem and its deep pool of talent from AGH University of Science and Technology and the Jagiellonian University.
21
+
22
+ The Kraków team has built a particularly strong reputation in Java and Python development, with senior engineers who have contributed to open-source projects including Apache Kafka, Spring Framework, and dbt. The office also houses our primary data engineering practice, serving clients in financial services and healthcare who need scalable data pipelines and real-time analytics platforms. The team runs a monthly "Kraków Tech Talks" meetup that draws 100+ attendees from the local developer community.
@@ -0,0 +1,22 @@
1
+ ---
2
+ title: "London"
3
+ type: location
4
+ status: published
5
+ langcode: en
6
+ slug: london
7
+ date: 2026-03-21
8
+ fields:
9
+ city: "London"
10
+ country: "United Kingdom"
11
+ address: "1 Canada Square, Canary Wharf, London E14 5AB"
12
+ employee_count: 50
13
+ specializations: "Financial Services, Fintech"
14
+ photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=London+Office"
15
+ seo:
16
+ title: "London Office — LokaTech Solutions"
17
+ description: "LokaTech London office in Canary Wharf. 50 professionals specializing in financial services and fintech solutions."
18
+ ---
19
+
20
+ The London office, established in 2022, positions LokaTech at the center of Europe's largest financial services market. Located in Canary Wharf — surrounded by the headquarters of major global banks, insurers, and fintech companies — the 50-person team specializes in financial services technology, regulatory compliance, and fintech solutions.
21
+
22
+ The London team includes senior banking technology consultants, solution architects with deep capital markets experience, and client relationship managers who understand the unique demands of UK financial regulation (FCA, PRA). Proximity to clients in the City and Canary Wharf enables the rapid, face-to-face collaboration that complex financial services engagements require. The office also serves as a launchpad for LokaTech's expanding relationships with UK-based global enterprises outside financial services, including retail, telecommunications, and energy companies.
@@ -0,0 +1,22 @@
1
+ ---
2
+ title: "Warsaw — Headquarters"
3
+ type: location
4
+ status: published
5
+ langcode: en
6
+ slug: warsaw
7
+ date: 2026-03-21
8
+ fields:
9
+ city: "Warsaw"
10
+ country: "Poland"
11
+ address: "ul. Marszałkowska 100, 00-026 Warsaw"
12
+ employee_count: 350
13
+ specializations: "Cloud, AI, Enterprise Architecture"
14
+ photo: "/static/images/office-warsaw.png"
15
+ seo:
16
+ title: "Warsaw Office — LokaTech Solutions Headquarters"
17
+ description: "LokaTech Warsaw headquarters. 350 engineers specializing in cloud, AI, and enterprise architecture. ul. Marszałkowska 100."
18
+ ---
19
+
20
+ Warsaw is where LokaTech began in 2008, and it remains the heart of our operations. Our headquarters at ul. Marszałkowska 100 occupies three floors of a modern office building in the city center, housing 350 engineers, our executive team, and the central operations functions that support all European offices.
21
+
22
+ The Warsaw office is home to our largest engineering teams, including the Cloud & Infrastructure practice, the AI & Data practice, and the Enterprise Architecture competence center. The office features dedicated collaboration spaces, a hardware lab for IoT and edge computing projects, and a 50-seat auditorium used for internal tech talks, client workshops, and community meetups. Warsaw's position as one of Europe's fastest-growing tech hubs gives us access to exceptional talent from the city's top universities, including the Warsaw University of Technology, the University of Warsaw, and the Polish Academy of Sciences.
@@ -0,0 +1,22 @@
1
+ ---
2
+ title: "Wrocław"
3
+ type: location
4
+ status: published
5
+ langcode: en
6
+ slug: wroclaw
7
+ date: 2026-03-21
8
+ fields:
9
+ city: "Wrocław"
10
+ country: "Poland"
11
+ address: "ul. Świdnicka 40, 50-024 Wrocław"
12
+ employee_count: 120
13
+ specializations: "Cybersecurity, DevOps"
14
+ photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=Wroclaw+Office"
15
+ seo:
16
+ title: "Wrocław Office — LokaTech Solutions"
17
+ description: "LokaTech Wrocław security center of excellence. 120 engineers specializing in cybersecurity, DevOps, and SRE."
18
+ ---
19
+
20
+ The Wrocław office, established in 2016, serves as LokaTech's security center of excellence. The 120-person team specializes in cybersecurity, DevOps, and site reliability engineering — disciplines that demand both deep technical expertise and operational rigor. Located in the city center on ul. Świdnicka, the office includes a dedicated security operations lab where the team conducts penetration testing, red team exercises, and security research.
21
+
22
+ Wrocław's growing reputation as a cybersecurity hub in Poland, anchored by the Wrocław University of Science and Technology's strong security research program, makes it an ideal location for this practice. Our Wrocław team holds more security certifications per capita than any other LokaTech office, including OSCP, CISSP, and AWS Security Specialty. The team also runs LokaTech's internal DevOps platform, providing CI/CD infrastructure, Kubernetes cluster management, and monitoring solutions used by engineering teams across all offices.
@@ -0,0 +1,55 @@
1
+ ---
2
+ title: "About LokaTech Solutions"
3
+ type: page
4
+ status: published
5
+ langcode: en
6
+ slug: about
7
+ date: 2026-03-21
8
+ fields:
9
+ subtitle: "We engineer technology that moves enterprises forward"
10
+ seo:
11
+ title: "About LokaTech Solutions — Enterprise IT Services"
12
+ description: "Founded in 2008 in Warsaw. 800+ engineers across 6 European offices. Custom software, cloud, AI, cybersecurity for enterprise clients."
13
+ ---
14
+
15
+ ## Our Story
16
+
17
+ LokaTech Solutions was founded in 2008 in Warsaw, Poland, by a team of five engineers who believed that enterprise IT services could be delivered differently — with genuine technical excellence, transparent partnerships, and a relentless focus on outcomes over output. What started as a small custom software shop serving local businesses has grown into one of Central Europe's leading technology services companies, with over 800 engineers across six offices in Poland, Germany, and the United Kingdom.
18
+
19
+ Our growth has been organic and deliberate. We didn't chase scale for its own sake. Every new office, every new service line, and every new hire was driven by client demand and a commitment to maintaining the engineering culture that defines us. When a Fortune 500 bank needed cloud migration expertise, we built a dedicated cloud practice. When pharmaceutical clients needed AI capabilities, we invested in a data science team. Our clients' challenges became our roadmap.
20
+
21
+ ## Our Mission
22
+
23
+ **We engineer technology that moves enterprises forward.**
24
+
25
+ This isn't a slogan — it's a filter we apply to every decision. "Engineer" because we build with rigor, not guesswork. "Technology" because it's what we know deeply. "Moves enterprises forward" because our work has no value unless it creates measurable business outcomes for our clients.
26
+
27
+ ## Our Values
28
+
29
+ **Excellence** — We hire the top 5% of engineers and give them the tools, training, and autonomy to do their best work. Code reviews aren't bureaucracy — they're how we learn from each other. Every project gets our A-team because every client deserves it.
30
+
31
+ **Partnership** — We don't do "throw it over the wall" consulting. Our teams embed with our clients, understand their business context, and take ownership of outcomes. The best compliment we receive is when a client says our engineers feel like part of their team.
32
+
33
+ **Innovation** — We invest 15% of our revenue in R&D, run quarterly innovation sprints, and maintain partnerships with AWS, Microsoft, and Google. Our engineers contribute to open source, speak at conferences, and publish technical content. Staying at the frontier isn't optional in our industry.
34
+
35
+ **Integrity** — We tell clients what they need to hear, not what they want to hear. If a project isn't right for us, we say so. If a deadline is unrealistic, we flag it early. Trust is built in uncomfortable conversations, and we've found that radical honesty creates stronger partnerships than polished presentations.
36
+
37
+ ## Key Milestones
38
+
39
+ **2008** — Founded in Warsaw by five engineers. First client: a Polish financial services company needing a custom trading platform.
40
+
41
+ **2011** — Opened the Kraków office to access the city's strong technical talent pool. Expanded into healthcare and manufacturing sectors.
42
+
43
+ **2014** — Reached 200 engineers. Launched the cloud practice in response to enterprise migration demand. First AWS partnership.
44
+
45
+ **2016** — Opened the Wrocław office with a focus on cybersecurity and DevOps. Achieved ISO 27001 certification.
46
+
47
+ **2018** — Expanded into Germany with the Berlin office. Won the first Fortune 500 client (a top-10 European bank).
48
+
49
+ **2020** — Launched the Data & AI practice. Scaled remote delivery during the pandemic without missing a single client deadline.
50
+
51
+ **2022** — Opened the London office to serve UK financial services clients. Reached 600 engineers.
52
+
53
+ **2024** — Surpassed 800 engineers. Named in Clutch Top 100 IT Services Companies globally. SOC 2 Type II certified.
54
+
55
+ **2026** — Celebrating 18 years of delivering enterprise technology. 200+ projects completed. Expanding AI and platform engineering capabilities.
@@ -0,0 +1,36 @@
1
+ ---
2
+ uuid: "c3d4e5f6-a7b8-9012-cdef-123456789013"
3
+ title: "O nas"
4
+ status: published
5
+ langcode: pl
6
+ date: 2026-03-15
7
+ translation_of: "c3d4e5f6-a7b8-9012-cdef-123456789012"
8
+ fields:
9
+ subtitle: "Dowiedz się więcej o tym projekcie"
10
+ seo:
11
+ description: "O tej stronie opartej na Barka i zespole, który za nią stoi."
12
+ ---
13
+
14
+ # O nas
15
+
16
+ Wierzymy, że zarządzanie treścią powinno być proste, przejrzyste i przyjazne dla programistów.
17
+
18
+ ## Nasza filozofia
19
+
20
+ Barka powstała z przekonania, że najlepszy CMS to taki, który nie stoi na drodze. Twoje treści żyją w plikach, które posiadasz — nie w zamkniętej bazie danych.
21
+
22
+ ### Pliki na pierwszym miejscu
23
+
24
+ Każdy element treści to plik Markdown lub YAML. Możesz go czytać, porównywać i wersjonować za pomocą Git — bez potrzeby narzędzi do eksportu.
25
+
26
+ ### Progresywne ulepszanie
27
+
28
+ Zacznij od plików statycznych. Dodaj bazę danych, gdy potrzebujesz zapytań. Dodaj panel administracyjny, gdy dołączą redaktorzy. Barka rośnie razem z Twoim projektem.
29
+
30
+ ### Brak uzależnienia od dostawcy
31
+
32
+ Twoje treści są zawsze przenośne. Przenieś je do innego systemu, renderuj innym narzędziem lub po prostu czytaj jako zwykły tekst.
33
+
34
+ ## Kontakt
35
+
36
+ Napisz do nas na [hello@example.com](mailto:hello@example.com).