@@ -130,6 +130,62 @@ const countryServices: CountryServiceGroup[] = [
130130 } ,
131131] ;
132132
133+ type WorkdayServiceGroup = {
134+ region : string ;
135+ links : { label : string ; href : string } [ ] ;
136+ } ;
137+
138+ const workdayServices : WorkdayServiceGroup [ ] = [
139+ {
140+ region : 'Workday Core' ,
141+ links : [
142+ { label : 'Workday Job Support' , href : '/workday-job-support/' } ,
143+ { label : 'Workday Proxy Interview' , href : '/workday-proxy-interview-support/' } ,
144+ { label : 'Workday Interview Scheduled' , href : '/workday-interview-scheduled/' } ,
145+ ] ,
146+ } ,
147+ {
148+ region : 'Workday USA' ,
149+ links : [
150+ { label : 'Workday Job Support USA' , href : '/workday-job-support-usa/' } ,
151+ { label : 'Workday Proxy Interview USA' , href : '/workday-proxy-interview-usa/' } ,
152+ { label : 'Workday Interview Scheduled USA' , href : '/workday-interview-scheduled-usa/' } ,
153+ ] ,
154+ } ,
155+ {
156+ region : 'Workday Canada' ,
157+ links : [
158+ { label : 'Workday Job Support Canada' , href : '/workday-job-support-canada/' } ,
159+ { label : 'Workday Proxy Interview Canada' , href : '/workday-proxy-interview-canada/' } ,
160+ { label : 'Workday Interview Scheduled Canada' , href : '/workday-interview-scheduled-canada/' } ,
161+ ] ,
162+ } ,
163+ {
164+ region : 'Workday UK' ,
165+ links : [
166+ { label : 'Workday Job Support UK' , href : '/workday-job-support-uk/' } ,
167+ { label : 'Workday Proxy Interview UK' , href : '/workday-proxy-interview-uk/' } ,
168+ { label : 'Workday Interview Scheduled UK' , href : '/workday-interview-scheduled-uk/' } ,
169+ ] ,
170+ } ,
171+ {
172+ region : 'Workday Europe' ,
173+ links : [
174+ { label : 'Workday Job Support Europe' , href : '/workday-job-support-europe/' } ,
175+ { label : 'Workday Proxy Interview Europe' , href : '/workday-proxy-interview-europe/' } ,
176+ { label : 'Workday Ireland' , href : '/workday-job-support-ireland/' } ,
177+ ] ,
178+ } ,
179+ {
180+ region : 'Workday APAC & Middle East' ,
181+ links : [
182+ { label : 'Workday Job Support Australia' , href : '/workday-job-support-australia/' } ,
183+ { label : 'Workday Job Support Singapore' , href : '/workday-job-support-singapore/' } ,
184+ { label : 'Workday Job Support UAE' , href : '/workday-job-support-uae/' } ,
185+ ] ,
186+ } ,
187+ ] ;
188+
133189const resourceLinks = [
134190 { label : 'Technologies We Support' , href : '/technologies/' } ,
135191 { label : 'Knowledge Base' , href : '/knowledge-base/' } ,
@@ -235,6 +291,26 @@ export default function ServicesPage() {
235291 < Link href = "/locations/" style = { { color : '#4fc3a1' , textDecoration : 'none' } } > See all locations →</ Link >
236292 </ p >
237293
294+ < h2 className = "svc-section-title" > Workday HCM, Finance & Integration Support</ h2 >
295+ < p style = { { fontSize : '0.9rem' , color : 'rgba(255,255,255,0.65)' , marginBottom : '1.25rem' , lineHeight : 1.6 } } >
296+ Dedicated Workday job support and proxy interview assistance — HCM, Financial Management, Payroll, Integrations, Reporting, Security, Adaptive Planning, Recruiting, and 2026R1 release support.{ ' ' }
297+ < Link href = "/workday-job-support/" style = { { color : '#4fc3a1' , textDecoration : 'none' } } > View Workday Hub →</ Link >
298+ </ p >
299+ < div className = "svc-country-grid" >
300+ { workdayServices . map ( ( group ) => (
301+ < div className = "svc-country-card" key = { group . region } >
302+ < div className = "svc-country-name" > { group . region } </ div >
303+ < ul >
304+ { group . links . map ( ( link ) => (
305+ < li key = { link . href } >
306+ < Link href = { link . href } > { link . label } </ Link >
307+ </ li >
308+ ) ) }
309+ </ ul >
310+ </ div >
311+ ) ) }
312+ </ div >
313+
238314 < h2 className = "svc-section-title" > Explore More Resources</ h2 >
239315 < div className = "svc-resource-row" >
240316 { resourceLinks . map ( ( link ) => (
0 commit comments