28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
export type Area = {
|
|
title: string;
|
|
body: string;
|
|
};
|
|
|
|
export const practice: Area[] = [
|
|
{
|
|
title: 'Networking & Systems Administration',
|
|
body: 'Design and maintain business network infrastructure. Administer mail servers, web servers, and databases. Implement security and monitoring.',
|
|
},
|
|
{
|
|
title: 'Desktop Support & Technical Services',
|
|
body: 'End-user support across Windows, Mac, and Linux. Hardware and software troubleshooting, system imaging and deployment, IT asset management.',
|
|
},
|
|
{
|
|
title: 'Programming & Automation Engineering',
|
|
body: 'Automation through scripting and open-source development. Custom tools for operational workflows, CI/CD pipelines, and system monitoring.',
|
|
},
|
|
{
|
|
title: 'Web Development & Frontend Engineering',
|
|
body: 'Web applications with Svelte and Tailwind. Responsive, accessible interfaces for internal tools and client work.',
|
|
},
|
|
{
|
|
title: 'Creative Production & Media Services',
|
|
body: 'Video production, live audio-visual systems, and digital content for broadcast and clients.',
|
|
},
|
|
];
|