@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,30 @@
1
+ ---
2
+ uuid: "ks-032"
3
+ title: "Warsaw — Headquarters"
4
+ type: location
5
+ status: published
6
+ langcode: en
7
+ slug: warsaw
8
+ date: 2026-03-15
9
+ fields:
10
+ city: "Warsaw"
11
+ country: "Poland"
12
+ address: "ul. Złota 59, 00-120 Warsaw"
13
+ employee_count: 120
14
+ specializations: "Executive Search, IT Recruitment, HR Consulting, Management"
15
+ photo: "https://placehold.co/800x400/14101E/F59E0B?text=Warsaw+Office"
16
+ coordinates:
17
+ lat: 52.2297
18
+ lng: 21.0122
19
+ seo:
20
+ title: "Warsaw Office — KadoServices Headquarters"
21
+ description: "KadoServices headquarters in Warsaw. 120 employees specializing in executive search, IT recruitment, and HR consulting. ul. Złota 59."
22
+ ---
23
+
24
+ Warsaw is where KadoServices was founded in 2009, and it remains the heart of our operations. Our headquarters at ul. Złota 59 — in the Złote Tarasy business district in the center of Warsaw — houses 120 employees including the executive team, the central recruitment operations, HR consulting practice, and key account management.
25
+
26
+ The Warsaw office serves as the hub for our most complex engagements — executive search for C-suite and director-level positions, IT recruitment for technology companies and shared services centers, and RPO programs for large enterprises. It's also home to our HR consulting team, led by Katarzyna Zielińska, which delivers workforce planning, compensation benchmarking, and organizational design services to clients across Poland.
27
+
28
+ Warsaw's position as Poland's largest business center — with the highest concentration of corporate headquarters, shared services centers, and technology companies — makes it our most active market. The office handles approximately 4,000 placements per year across all industries and service lines. Our recruiters have deep relationships with Warsaw's employer community and maintain an active database of 35,000+ candidates in the Mazovia region.
29
+
30
+ The office features modern open-plan workspace, dedicated client meeting rooms, a 30-seat training center used for recruiter development and client workshops, and a candidate assessment center with private interview rooms and testing facilities.
@@ -0,0 +1,32 @@
1
+ ---
2
+ uuid: "ks-034"
3
+ title: "Wrocław"
4
+ type: location
5
+ status: published
6
+ langcode: en
7
+ slug: wroclaw
8
+ date: 2026-03-15
9
+ fields:
10
+ city: "Wrocław"
11
+ country: "Poland"
12
+ address: "ul. Świdnicka 40, 50-024 Wrocław"
13
+ employee_count: 35
14
+ specializations: "IT Recruitment, Manufacturing Staffing, Temporary Workers"
15
+ photo: "https://placehold.co/800x400/14101E/F59E0B?text=Wroclaw+Office"
16
+ coordinates:
17
+ lat: 51.1079
18
+ lng: 17.0385
19
+ seo:
20
+ title: "Wrocław Office — KadoServices"
21
+ description: "KadoServices Wrocław office. 35 employees specializing in IT recruitment, manufacturing staffing, and temporary workforce solutions. ul. Świdnicka 40."
22
+ ---
23
+
24
+ The Wrocław office, established in 2015, serves Lower Silesia — one of Poland's most dynamic economic regions, combining a thriving technology sector with a strong manufacturing and logistics base.
25
+
26
+ Located at ul. Świdnicka 40 in the city center, the office houses 35 employees specializing in two distinct but complementary areas: IT and technology recruitment for Wrocław's booming tech ecosystem, and industrial staffing for the manufacturing and logistics operations concentrated in the Wrocław metropolitan area and the surrounding Lower Silesia region.
27
+
28
+ Wrocław has established itself as Poland's third-largest IT hub, after Warsaw and Kraków, hosting offices for Nokia, Credit Suisse, BNY Mellon, and numerous Polish and international technology companies. Our IT recruitment team in Wrocław specializes in software developers, DevOps engineers, data specialists, and IT project managers, maintaining close relationships with the city's technical universities and developer communities.
29
+
30
+ The Lower Silesia region also hosts major manufacturing operations — automotive (Toyota, Volkswagen suppliers), electronics (LG, Toshiba), and food processing. Our temporary staffing team supports these operations with scalable workforce solutions, from production operators and warehouse staff to quality control inspectors and maintenance technicians.
31
+
32
+ The Wrocław office handles approximately 2,800 placements per year and maintains an active candidate database of 20,000+ professionals in the region.
@@ -0,0 +1,58 @@
1
+ ---
2
+ uuid: "ks-036"
3
+ title: "About KadoServices"
4
+ type: page
5
+ status: published
6
+ langcode: en
7
+ slug: about
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Poland's leading staffing and HR solutions company"
11
+ seo:
12
+ title: "About KadoServices — Staffing, HR & Workforce Solutions"
13
+ description: "Founded in 2009 in Warsaw. 200+ recruiters, 12 offices across Poland, 15,000+ placements per year. Staffing, RPO, HR consulting, employer branding."
14
+ ---
15
+
16
+ ## Our Story
17
+
18
+ KadoServices was founded in 2009 in Warsaw by Anna Kowalska, a recruitment industry veteran who believed that staffing agencies could deliver more than just CVs. She envisioned a company that would truly understand its clients' businesses, invest in candidate quality over quantity, and build long-term partnerships rather than chase transactional fees.
19
+
20
+ From a three-person office in Warsaw's Mokotów district, KadoServices has grown into one of Poland's largest independent staffing agencies. Today, we employ over 200 recruiters across 12 offices in Poland, place more than 15,000 workers per year, and serve 500+ active clients ranging from SMEs to Fortune 500 multinationals.
21
+
22
+ Our growth has been deliberate. Each new office was opened because our clients needed local presence in that region. Each new service line — from RPO to HR consulting to employer branding — was launched because our clients asked for it. We've stayed true to our founding principle: understand the client's business first, then deliver the right workforce solution.
23
+
24
+ ## Our Mission
25
+
26
+ **We connect great companies with exceptional talent.**
27
+
28
+ Behind every placement is a person whose career we're helping shape and a business whose success depends on having the right team. We take both responsibilities seriously. Our mission is to be the staffing partner that companies trust with their most important hires and the career advisor that candidates rely on for honest, informed guidance.
29
+
30
+ ## Our Values
31
+
32
+ **Quality over quantity.** We'd rather present three exceptional candidates than thirty mediocre ones. Every candidate we recommend has been personally interviewed, assessed, and vetted by an experienced recruiter. Our 94% retention rate is the proof.
33
+
34
+ **Local expertise, national scale.** With 12 offices across Poland, we combine deep local market knowledge — wage expectations, candidate availability, competitive landscape — with the operational scale to serve multi-location clients consistently.
35
+
36
+ **Transparency.** We share real data with our clients: market salary benchmarks, honest assessments of role attractiveness, realistic timelines, and candid feedback on interview processes. Trust is built through honesty, not through telling clients what they want to hear.
37
+
38
+ **Partnership.** We measure our success by our clients' success. That's why 98% of our clients renew their contracts year after year, and our average client relationship spans 5+ years.
39
+
40
+ ## Key Milestones
41
+
42
+ **2009** — Founded in Warsaw. First client: a manufacturing company needing 50 temporary production workers.
43
+
44
+ **2011** — Opened second office in Katowice to serve the Silesia industrial region. Reached 100 employees.
45
+
46
+ **2013** — Launched the Kraków office with a focus on finance and shared services recruitment. First RPO program signed.
47
+
48
+ **2015** — Opened offices in Wrocław and Poznań. Reached 5,000 annual placements. Launched permanent recruitment practice.
49
+
50
+ **2017** — Expanded to Gdańsk, Łódź, and Lublin. Introduced HR consulting services. Named a Great Place to Work for the first time.
51
+
52
+ **2019** — Reached 10,000 annual placements. Launched employer branding practice. Opened Rzeszów and Szczecin offices.
53
+
54
+ **2021** — Achieved 200+ recruiters. Expanded to Bydgoszcz and Kielce. 500+ active clients.
55
+
56
+ **2023** — Surpassed 15,000 annual placements. 12 offices, 98% client retention. Launched payroll outsourcing services.
57
+
58
+ **2026** — Celebrating 17 years of connecting companies with talent. 35+ active RPO programs. Expanding into Central European markets.
@@ -0,0 +1,58 @@
1
+ ---
2
+ uuid: "ks-037"
3
+ title: "O KadoServices"
4
+ type: page
5
+ status: published
6
+ langcode: pl
7
+ slug: about
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Wiodąca polska firma rekrutacyjna i HR"
11
+ seo:
12
+ title: "O KadoServices — Rekrutacja, HR i rozwiązania kadrowe"
13
+ description: "Założona w 2009 w Warszawie. 200+ rekruterów, 12 biur w Polsce, ponad 15 000 zatrudnień rocznie. Staffing, RPO, doradztwo HR, employer branding."
14
+ ---
15
+
16
+ ## Nasza historia
17
+
18
+ KadoServices zostało założone w 2009 roku w Warszawie przez Annę Kowalską, weterankę branży rekrutacyjnej, która wierzyła, że agencje pracy mogą dostarczać więcej niż tylko CV. Wyobrażała sobie firmę, która naprawdę rozumie biznes swoich klientów, inwestuje w jakość kandydatów ponad ilość i buduje długoterminowe partnerstwa zamiast gonić za transakcyjnymi prowizjami.
19
+
20
+ Z trzyosobowego biura w warszawskim Mokotowie, KadoServices wyrosło na jedną z największych niezależnych agencji pracy w Polsce. Dziś zatrudniamy ponad 200 rekruterów w 12 biurach w Polsce, realizujemy ponad 15 000 zatrudnień rocznie i obsługujemy 500+ aktywnych klientów — od MŚP po korporacje z listy Fortune 500.
21
+
22
+ Nasz rozwój był przemyślany. Każde nowe biuro otwieraliśmy, bo nasi klienci potrzebowali lokalnej obecności w danym regionie. Każda nowa linia usług — od RPO po doradztwo HR po employer branding — powstała, bo nasi klienci o to prosili. Pozostaliśmy wierni naszej zasadzie założycielskiej: najpierw zrozum biznes klienta, potem dostarcz właściwe rozwiązanie kadrowe.
23
+
24
+ ## Nasza misja
25
+
26
+ **Łączymy świetne firmy z wyjątkowymi talentami.**
27
+
28
+ Za każdym zatrudnieniem stoi osoba, której karierę pomagamy kształtować, i firma, której sukces zależy od właściwego zespołu. Traktujemy obie te odpowiedzialności poważnie. Naszą misją jest być partnerem rekrutacyjnym, któremu firmy powierzają swoje najważniejsze zatrudnienia, i doradcą kariery, na którym kandydaci polegają w kwestii uczciwych, kompetentnych wskazówek.
29
+
30
+ ## Nasze wartości
31
+
32
+ **Jakość ponad ilość.** Wolimy przedstawić trzech wyjątkowych kandydatów niż trzydziestu przeciętnych. Każdy kandydat, którego rekomendujemy, został osobiście przeprowadzony przez rozmowę, oceniony i zweryfikowany przez doświadczonego rekrutera. Nasz 94% wskaźnik retencji to dowód.
33
+
34
+ **Lokalna ekspertyza, ogólnopolska skala.** Z 12 biurami w całej Polsce łączymy głęboką znajomość lokalnego rynku — oczekiwania płacowe, dostępność kandydatów, krajobraz konkurencyjny — z operacyjną skalą umożliwiającą konsekwentną obsługę klientów wielolokalizacyjnych.
35
+
36
+ **Przejrzystość.** Dzielimy się z klientami prawdziwymi danymi: benchmarkami wynagrodzeń, uczciwymi ocenami atrakcyjności stanowisk, realistycznymi terminami i szczerą informacją zwrotną o procesach rekrutacyjnych. Zaufanie buduje się uczciwością, nie mówieniem klientom tego, co chcą usłyszeć.
37
+
38
+ **Partnerstwo.** Mierzymy nasz sukces sukcesem naszych klientów. Dlatego 98% naszych klientów odnawia umowy rok po roku, a średnia relacja z klientem trwa ponad 5 lat.
39
+
40
+ ## Kluczowe kamienie milowe
41
+
42
+ **2009** — Założenie w Warszawie. Pierwszy klient: firma produkcyjna potrzebująca 50 pracowników tymczasowych.
43
+
44
+ **2011** — Otwarcie drugiego biura w Katowicach. Osiągnięcie 100 pracowników.
45
+
46
+ **2013** — Uruchomienie biura w Krakowie z fokusem na finanse i centra usług wspólnych. Podpisanie pierwszego programu RPO.
47
+
48
+ **2015** — Otwarcie biur we Wrocławiu i Poznaniu. Osiągnięcie 5000 zatrudnień rocznie. Uruchomienie praktyki rekrutacji stałej.
49
+
50
+ **2017** — Ekspansja do Gdańska, Łodzi i Lublina. Wprowadzenie usług doradztwa HR. Pierwszy certyfikat Great Place to Work.
51
+
52
+ **2019** — Osiągnięcie 10 000 zatrudnień rocznie. Uruchomienie praktyki employer branding. Otwarcie biur w Rzeszowie i Szczecinie.
53
+
54
+ **2021** — Osiągnięcie 200+ rekruterów. Ekspansja do Bydgoszczy i Kielc. 500+ aktywnych klientów.
55
+
56
+ **2023** — Przekroczenie 15 000 zatrudnień rocznie. 12 biur, 98% retencja klientów. Uruchomienie usług outsourcingu kadrowo-płacowego.
57
+
58
+ **2026** — Świętujemy 17 lat łączenia firm z talentami. 35+ aktywnych programów RPO. Ekspansja na rynki Europy Centralnej.
@@ -0,0 +1,55 @@
1
+ ---
2
+ uuid: "ks-040"
3
+ title: "Careers at KadoServices"
4
+ type: page
5
+ status: published
6
+ langcode: en
7
+ slug: careers
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Join Poland's leading staffing company"
11
+ seo:
12
+ title: "Careers at KadoServices — Join Our Team"
13
+ description: "Career opportunities at KadoServices. Join 200+ recruiters across 12 offices. Competitive salary, training programs, career growth."
14
+ ---
15
+
16
+ ## Why Work at KadoServices?
17
+
18
+ We help people find great jobs — and we start with our own team. KadoServices has been certified as a Great Place to Work for five consecutive years, and our employee satisfaction scores consistently rank among the highest in Poland's staffing industry.
19
+
20
+ Working at KadoServices means joining a company where your impact is visible every day. Every placement you make changes someone's career and helps a business grow. That tangible impact, combined with a culture of continuous development and genuine team spirit, is what makes our people stay.
21
+
22
+ ## What We Offer
23
+
24
+ **Competitive compensation.** Base salary plus an uncapped commission structure that rewards results. Our top recruiters earn among the highest in the Polish staffing industry.
25
+
26
+ **Training & development.** New recruiters complete a 4-week intensive onboarding program covering sourcing techniques, interview methodology, labor law, and client management. Ongoing training includes monthly masterclasses, industry certifications, and access to an annual development budget.
27
+
28
+ **Career progression.** Clear career paths from Recruitment Consultant to Team Leader, Recruitment Manager, and Director levels. Performance-based promotions — not tenure-based. Many of our current leaders started as junior recruiters.
29
+
30
+ **Flexibility.** Hybrid working model (3 days office / 2 days remote for most roles). Flexible hours with core working time of 9:00-15:00. Additional day off on your birthday.
31
+
32
+ **Benefits.** Private healthcare (Medicover), sports card (MultiSport), life insurance, PPK pension scheme with enhanced employer contribution, mobile phone and laptop, and quarterly team events.
33
+
34
+ ## Open Positions
35
+
36
+ ### Recruitment Consultant — Manufacturing (Katowice)
37
+ Join our industrial staffing team in Silesia. 2+ years of recruitment or HR experience preferred. Polish and English required.
38
+
39
+ ### Senior Recruiter — IT (Warsaw)
40
+ Recruit software developers, DevOps engineers, and IT professionals for Poland's top technology companies. 3+ years of IT recruitment experience. Strong technical understanding.
41
+
42
+ ### RPO Team Leader — Finance (Kraków)
43
+ Lead a team of 4 recruiters embedded in a Fortune 500 SSC. 5+ years of recruitment experience, including 2+ in a leadership role. Finance/SSC sector knowledge essential.
44
+
45
+ ### Account Manager — Temporary Staffing (Wrocław)
46
+ Manage and grow client relationships for our temporary staffing services in Lower Silesia. 3+ years of B2B sales experience in staffing or HR services.
47
+
48
+ ### HR Consultant — Compensation & Benefits (Warsaw)
49
+ Join our consulting practice delivering salary benchmarking and compensation design for enterprise clients. 5+ years in C&B, SHRM or WorldatWork certification preferred.
50
+
51
+ ## How to Apply
52
+
53
+ Send your CV to careers@kadoservices.pl with the position title in the subject line. We review every application and respond within 3 business days. Our recruitment process: CV screening, phone interview, in-person interview with the hiring manager, and offer.
54
+
55
+ We're always interested in hearing from talented people — even if there's no open position that matches your profile. Send us your CV and we'll keep you in mind for future opportunities.
@@ -0,0 +1,65 @@
1
+ ---
2
+ uuid: "ks-041"
3
+ title: "Our Clients"
4
+ type: page
5
+ status: published
6
+ langcode: en
7
+ slug: clients
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Trusted by 500+ companies across Poland"
11
+ seo:
12
+ title: "Our Clients — KadoServices"
13
+ description: "KadoServices serves 500+ clients across manufacturing, logistics, IT, finance, retail, and healthcare. 98% client retention rate."
14
+ ---
15
+
16
+ ## Companies That Trust KadoServices
17
+
18
+ We're proud to partner with over 500 companies across Poland — from local manufacturers to global Fortune 500 corporations. Our 98% client retention rate reflects the quality of our service and the depth of our partnerships.
19
+
20
+ ## Industries We Serve
21
+
22
+ **Manufacturing & Automotive**
23
+ Our manufacturing clients include tier-1 and tier-2 automotive suppliers, electronics assemblers, food processing companies, and heavy industry operations. We provide temporary production workers, permanent engineers, and managed services for entire production lines.
24
+
25
+ Key partnerships: automotive OEM suppliers in Silesia, electronics manufacturers in Lower Silesia, food processing plants in Wielkopolska.
26
+
27
+ **Logistics & Transport**
28
+ From Amazon fulfillment centers to regional 3PL providers, we staff warehouses, distribution centers, and transport operations across Poland. Our peak season capability — deploying 1,000+ workers within weeks — is unmatched.
29
+
30
+ Key partnerships: major e-commerce fulfillment operations, national retail chain distribution centers, international 3PL providers.
31
+
32
+ **IT & Technology**
33
+ We recruit software developers, IT specialists, and technology leaders for Poland's booming tech sector. From startups to enterprise R&D centers, our IT practice delivers candidates who code, not just candidates who have keywords on their CV.
34
+
35
+ Key partnerships: technology companies in Warsaw, Kraków, Wrocław, and Tri-City; SSC IT departments; Polish fintech companies.
36
+
37
+ **Finance & Shared Services**
38
+ Poland hosts 1,500+ shared services centers, and KadoServices is a preferred staffing partner for many of them. Our RPO programs and multilingual recruitment expertise make us the natural choice for SSC talent acquisition.
39
+
40
+ Key partnerships: Fortune 500 SSCs in Kraków, Warsaw, and Wrocław; Polish banks and insurance companies; international accounting firms.
41
+
42
+ **Retail & FMCG**
43
+ National retail chains, FMCG companies, and e-commerce operations trust us for multi-location staffing, seasonal workforce programs, and headquarters recruitment.
44
+
45
+ Key partnerships: national home improvement chains, FMCG manufacturers, fashion retailers, grocery chains.
46
+
47
+ **Healthcare**
48
+ Hospitals, elderly care facilities, and pharmaceutical companies rely on KadoServices for qualified, licensed healthcare professionals — from nurses and caregivers to medical support staff.
49
+
50
+ Key partnerships: public and private hospital groups, nationwide elderly care providers, pharmaceutical companies.
51
+
52
+ ## Client Testimonials
53
+
54
+ > "KadoServices is not just a vendor — they're an extension of our HR team. Their understanding of our business and the local labor market is exceptional."
55
+ > — HR Director, Global Automotive Supplier
56
+
57
+ > "We switched from three staffing agencies to KadoServices as our sole provider. Quality went up, costs went down, and we finally have one partner who takes full accountability."
58
+ > — VP Operations, National Retail Chain
59
+
60
+ > "The RPO team that KadoServices embedded in our Kraków center has transformed how we hire. Better candidates, faster, and with data to prove it."
61
+ > — Managing Director, Fortune 500 SSC
62
+
63
+ ## Become a Client
64
+
65
+ Ready to discuss your staffing needs? Contact our business development team at employers@kadoservices.pl or call +48 22 123 4568. We'll schedule a consultation and deliver a preliminary proposal within 24 hours.
@@ -0,0 +1,74 @@
1
+ ---
2
+ uuid: "ks-038"
3
+ title: "Contact"
4
+ type: page
5
+ status: published
6
+ langcode: en
7
+ slug: contact
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Get in touch with our team"
11
+ seo:
12
+ title: "Contact KadoServices — Staffing & HR Solutions"
13
+ description: "Contact KadoServices. Headquarters in Warsaw, 12 offices across Poland. Phone: +48 22 123 4567. Email: info@kadoservices.pl."
14
+ ---
15
+
16
+ ## Get in Touch
17
+
18
+ Whether you're an employer looking for staffing solutions or a candidate searching for your next career opportunity, we'd love to hear from you. Our consultants are ready to help.
19
+
20
+ **General Inquiries**
21
+ - Phone: +48 22 123 4567
22
+ - Email: info@kadoservices.pl
23
+ - Hours: Monday–Friday, 8:00–18:00
24
+
25
+ **For Employers**
26
+ - Phone: +48 22 123 4568
27
+ - Email: employers@kadoservices.pl
28
+ - Request a staffing proposal within 24 hours
29
+
30
+ **For Candidates**
31
+ - Phone: +48 22 123 4569
32
+ - Email: careers@kadoservices.pl
33
+ - Upload your CV and our recruiters will match you with relevant opportunities
34
+
35
+ ## Our Offices
36
+
37
+ **Warsaw — Headquarters**
38
+ ul. Złota 59, 00-120 Warsaw
39
+ Phone: +48 22 123 4567
40
+
41
+ **Kraków**
42
+ ul. Pawia 5, 31-154 Kraków
43
+ Phone: +48 12 345 6789
44
+
45
+ **Wrocław**
46
+ ul. Świdnicka 40, 50-024 Wrocław
47
+ Phone: +48 71 234 5678
48
+
49
+ **Gdańsk**
50
+ ul. Grunwaldzka 472, 80-309 Gdańsk
51
+ Phone: +48 58 345 6789
52
+
53
+ **Katowice**
54
+ ul. Uniwersytecka 13, 40-007 Katowice
55
+ Phone: +48 32 456 7890
56
+
57
+ **Poznań**
58
+ ul. Święty Marcin 29, 61-806 Poznań
59
+ Phone: +48 61 567 8901
60
+
61
+ And 6 more offices across Poland — Łódź, Lublin, Rzeszów, Szczecin, Bydgoszcz, and Kielce.
62
+
63
+ ## Response Times
64
+
65
+ - **Staffing inquiries:** We respond within 4 business hours and deliver a preliminary proposal within 24 hours.
66
+ - **Candidate applications:** You'll receive confirmation within 24 hours. If your profile matches an active role, a recruiter will contact you within 3 business days.
67
+ - **HR consulting inquiries:** Our consultants will schedule an initial consultation within 48 hours.
68
+
69
+ ## Compliance & Certifications
70
+
71
+ - Registered Temporary Work Agency — KRAZ certificate no. 12345
72
+ - ISO 9001:2015 certified
73
+ - Member of the Polish Staffing Forum (Polskie Forum HR)
74
+ - Great Place to Work certified (2021–2026)
@@ -0,0 +1,74 @@
1
+ ---
2
+ uuid: "ks-039"
3
+ title: "Kontakt"
4
+ type: page
5
+ status: published
6
+ langcode: pl
7
+ slug: contact
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Skontaktuj się z naszym zespołem"
11
+ seo:
12
+ title: "Kontakt — KadoServices"
13
+ description: "Skontaktuj się z KadoServices. Siedziba w Warszawie, 12 biur w Polsce. Telefon: +48 22 123 4567. Email: info@kadoservices.pl."
14
+ ---
15
+
16
+ ## Skontaktuj się
17
+
18
+ Niezależnie od tego, czy jesteś pracodawcą szukającym rozwiązań kadrowych, czy kandydatem poszukującym nowej możliwości kariery — chętnie Ci pomożemy. Nasi konsultanci są do Twojej dyspozycji.
19
+
20
+ **Zapytania ogólne**
21
+ - Telefon: +48 22 123 4567
22
+ - Email: info@kadoservices.pl
23
+ - Godziny: Poniedziałek–Piątek, 8:00–18:00
24
+
25
+ **Dla pracodawców**
26
+ - Telefon: +48 22 123 4568
27
+ - Email: employers@kadoservices.pl
28
+ - Oferta kadrowa w ciągu 24 godzin
29
+
30
+ **Dla kandydatów**
31
+ - Telefon: +48 22 123 4569
32
+ - Email: careers@kadoservices.pl
33
+ - Prześlij swoje CV, a nasi rekruterzy dopasują Cię do odpowiednich ofert
34
+
35
+ ## Nasze biura
36
+
37
+ **Warszawa — Siedziba główna**
38
+ ul. Złota 59, 00-120 Warszawa
39
+ Telefon: +48 22 123 4567
40
+
41
+ **Kraków**
42
+ ul. Pawia 5, 31-154 Kraków
43
+ Telefon: +48 12 345 6789
44
+
45
+ **Wrocław**
46
+ ul. Świdnicka 40, 50-024 Wrocław
47
+ Telefon: +48 71 234 5678
48
+
49
+ **Gdańsk**
50
+ ul. Grunwaldzka 472, 80-309 Gdańsk
51
+ Telefon: +48 58 345 6789
52
+
53
+ **Katowice**
54
+ ul. Uniwersytecka 13, 40-007 Katowice
55
+ Telefon: +48 32 456 7890
56
+
57
+ **Poznań**
58
+ ul. Święty Marcin 29, 61-806 Poznań
59
+ Telefon: +48 61 567 8901
60
+
61
+ Oraz 6 kolejnych biur w Polsce — Łódź, Lublin, Rzeszów, Szczecin, Bydgoszcz i Kielce.
62
+
63
+ ## Czasy odpowiedzi
64
+
65
+ - **Zapytania kadrowe:** Odpowiadamy w ciągu 4 godzin roboczych i dostarczamy wstępną ofertę w ciągu 24 godzin.
66
+ - **Aplikacje kandydatów:** Otrzymasz potwierdzenie w ciągu 24 godzin. Jeśli Twój profil pasuje do aktywnej roli, rekruter skontaktuje się w ciągu 3 dni roboczych.
67
+ - **Zapytania o doradztwo HR:** Nasi konsultanci umówią wstępną konsultację w ciągu 48 godzin.
68
+
69
+ ## Compliance i certyfikaty
70
+
71
+ - Zarejestrowana Agencja Pracy Tymczasowej — certyfikat KRAZ nr 12345
72
+ - Certyfikat ISO 9001:2015
73
+ - Członek Polskiego Forum HR
74
+ - Certyfikat Great Place to Work (2021–2026)
@@ -0,0 +1,76 @@
1
+ ---
2
+ uuid: "ks-042"
3
+ title: "Frequently Asked Questions"
4
+ type: page
5
+ status: published
6
+ langcode: en
7
+ slug: faq
8
+ date: 2026-03-15
9
+ fields:
10
+ subtitle: "Common questions about our staffing and HR services"
11
+ seo:
12
+ title: "FAQ — KadoServices Staffing & HR"
13
+ description: "Frequently asked questions about KadoServices staffing services. Temporary staffing, permanent recruitment, RPO, costs, compliance, and more."
14
+ ---
15
+
16
+ ## For Employers
17
+
18
+ ### How quickly can you fill positions?
19
+
20
+ For temporary roles, our average time-to-fill is 5 business days from briefing to workers on-site. For urgent needs, we can deploy candidates within 24-48 hours from our active pool. Permanent recruitment typically takes 21 days on average, though this varies by seniority and specialization.
21
+
22
+ ### What does temporary staffing cost?
23
+
24
+ The total cost includes the worker's gross salary, employer-side social contributions (approximately 20% of gross), and our service margin. We provide transparent pricing with no hidden fees. Contact us for a customized quote based on your specific requirements — volume, duration, and role type all affect pricing.
25
+
26
+ ### Who is the legal employer of temporary workers?
27
+
28
+ KadoServices is the legal employer. We issue employment contracts, process payroll, pay taxes and social contributions, and handle all HR administration. The user employer (your company) provides the workplace, supervises the work, and ensures a safe working environment.
29
+
30
+ ### What happens after the 18-month temporary assignment limit?
31
+
32
+ Polish law limits temporary assignments to 18 months within a 36-month period per worker per user employer. After 18 months, the worker must either be hired permanently by your company, end the assignment, or wait for the 36-month cooling-off period. We track assignment durations proactively and advise clients well in advance of approaching limits.
33
+
34
+ ### What is RPO and how does it differ from traditional recruitment?
35
+
36
+ Recruitment Process Outsourcing (RPO) means we take ownership of your entire recruitment function — or a defined portion of it. Unlike traditional agency recruitment (where you pay per placement), RPO uses a management fee model with dedicated recruiters embedded in your team, working under your employer brand, using your systems. RPO delivers lower cost-per-hire, better quality, and full analytics.
37
+
38
+ ### Do you provide staffing outside of Poland?
39
+
40
+ Currently, our recruitment operations are focused on Poland. However, we source international candidates (particularly from Ukraine, Belarus, and other EU countries) for roles in Poland, handling work permits and legalization. For clients with European staffing needs, we can recommend trusted partners in other markets.
41
+
42
+ ## For Candidates
43
+
44
+ ### Is there a fee for candidates?
45
+
46
+ No. KadoServices never charges candidates for our services. Our fees are paid by the employers who hire through us. All services — from career advice to CV review to job matching — are free for candidates.
47
+
48
+ ### What types of jobs do you offer?
49
+
50
+ We place candidates in roles across all levels and industries — from production workers and warehouse operatives to IT specialists, finance professionals, and C-suite executives. Positions include temporary assignments, permanent employment, and contract (B2B) engagements.
51
+
52
+ ### How do I register with KadoServices?
53
+
54
+ Send your CV to careers@kadoservices.pl or visit any of our 12 offices across Poland. A recruiter will review your profile and contact you if there's a matching opportunity. We also recommend creating profiles on Pracuj.pl and LinkedIn, where we actively source candidates.
55
+
56
+ ### What are my rights as a temporary worker?
57
+
58
+ As a temporary worker employed by KadoServices, you have the same basic working conditions as permanent employees of the user employer — including working hours, breaks, and access to facilities. You're entitled to paid annual leave (proportional to the assignment length), sick leave, and all statutory protections under Polish labor law.
59
+
60
+ ### Can a temporary assignment become a permanent job?
61
+
62
+ Yes, and it frequently does. Many of our clients use temporary assignments as a "try before you buy" period. If both you and the employer are satisfied, the transition to permanent employment can be arranged. Approximately 30% of our temporary placements convert to permanent positions.
63
+
64
+ ## General
65
+
66
+ ### What certifications does KadoServices hold?
67
+
68
+ We are a registered Temporary Work Agency in the KRAZ register, ISO 9001:2015 certified for quality management, a member of the Polish Staffing Forum (Polskie Forum HR), and Great Place to Work certified since 2021. All our operations comply with Polish labor law, GDPR, and industry best practices.
69
+
70
+ ### How do you ensure candidate quality?
71
+
72
+ Every candidate goes through a multi-step vetting process: CV review, competency-based interview with a specialist recruiter, skills assessment (technical tests, language testing, or role-specific evaluations), reference checks, and document verification. For temporary workers, we also ensure medical examinations and safety training are completed before the start date.
73
+
74
+ ### How can I contact KadoServices?
75
+
76
+ Phone: +48 22 123 4567 | Email: info@kadoservices.pl | Visit us at any of our 12 offices across Poland. Our office hours are Monday to Friday, 8:00–18:00.
@@ -0,0 +1,70 @@
1
+ ---
2
+ uuid: "ks-009"
3
+ title: "Employer Branding"
4
+ type: service
5
+ status: published
6
+ langcode: en
7
+ slug: employer-branding
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Build a compelling employer brand that attracts top talent and reduces recruitment costs. From EVP development to career site design and social media strategy."
11
+ icon: star
12
+ hero_stats:
13
+ - value: "60%"
14
+ label: "More qualified applicants"
15
+ - value: "35%"
16
+ label: "Lower cost-per-hire"
17
+ - value: "45+"
18
+ label: "Branding projects delivered"
19
+ challenges:
20
+ - "Top candidates choose competitors because your employer brand is invisible or unappealing"
21
+ - "High cost-per-hire because you rely entirely on job boards and agencies instead of inbound talent"
22
+ - "Glassdoor and social media reviews don't reflect the reality of working at your company"
23
+ - "No clear Employee Value Proposition — candidates can't articulate why they should join you"
24
+ - "Career page is outdated and doesn't showcase your culture, teams, or growth opportunities"
25
+ - "Inconsistent messaging across job ads, social media, and interview processes"
26
+ process:
27
+ - title: "Brand Audit"
28
+ description: "We analyze your current employer brand — online presence, Glassdoor reviews, candidate feedback, employee surveys, and competitor positioning. The audit reveals gaps between your reality and perception."
29
+ - title: "EVP Development"
30
+ description: "Through workshops with leadership, HR, and employees, we craft your Employee Value Proposition — the authentic, compelling reasons why people should work for you."
31
+ - title: "Creative & Content"
32
+ description: "We produce employer branding assets — employee stories, video testimonials, career page content, social media campaigns, and job ad templates that communicate your EVP consistently."
33
+ - title: "Activation"
34
+ description: "We launch your employer brand across channels — career site, LinkedIn, Instagram, job boards, university partnerships, and employee advocacy programs."
35
+ - title: "Measurement"
36
+ description: "We track employer brand KPIs — application rates, source quality, offer acceptance rates, Glassdoor scores, and social media engagement — and optimize continuously."
37
+ case_studies:
38
+ - title: "Full RPO Program"
39
+ result: "Employer brand overhaul included"
40
+ url: "/case-studies/finance-rpo-program"
41
+ seo:
42
+ title: "Employer Branding Services — KadoServices"
43
+ description: "Employer branding in Poland. EVP development, career site design, social media strategy. 60% more qualified applicants, 35% lower cost-per-hire."
44
+ ---
45
+
46
+ ## Why Employer Branding Matters
47
+
48
+ In Poland's tight labor market, the companies that attract the best talent aren't always the ones paying the most. They're the ones with the strongest employer brands — organizations where people want to work because they know what the company stands for, what the culture is like, and what career growth looks like.
49
+
50
+ Research consistently shows that a strong employer brand reduces cost-per-hire by 30-50%, cuts time-to-fill by 25%, and increases the quality of applicant pools. Yet many Polish companies — even large, well-known brands — invest heavily in consumer marketing while neglecting their employer brand entirely.
51
+
52
+ ## Our Approach
53
+
54
+ KadoServices' employer branding team combines recruitment expertise with marketing and communications skills. We understand what motivates candidates because we talk to thousands of them every month. That insight informs every aspect of our branding work.
55
+
56
+ **Authenticity first.** We never invent a culture that doesn't exist. The most effective employer brands are authentic — they reflect the real experience of working at your company, including the challenges. Candidates see through manufactured happiness. They respond to honesty.
57
+
58
+ **Data-driven creative.** Every piece of content we create is informed by candidate research, market data, and performance analytics. We know which messages resonate with engineers vs. sales professionals, which channels reach passive candidates, and which content formats drive applications.
59
+
60
+ **Employee-powered.** Your best brand ambassadors are your employees. We build employee advocacy programs, train internal storytellers, and create content formats that let your people share their experiences in their own words.
61
+
62
+ ## What We Deliver
63
+
64
+ - **Employee Value Proposition (EVP)** — The strategic foundation of your employer brand
65
+ - **Career site redesign** — Modern, mobile-first career pages that convert visitors into applicants
66
+ - **Content production** — Employee stories, day-in-the-life videos, culture photography, blog posts
67
+ - **Social media strategy** — LinkedIn, Instagram, and TikTok content calendars with templates
68
+ - **Job ad optimization** — High-converting job descriptions that attract diverse, qualified candidates
69
+ - **University partnerships** — Campus recruitment campaigns and internship program branding
70
+ - **Review management** — Glassdoor and GoWork response strategy and improvement programs