initial commit

This commit is contained in:
2026-06-01 01:43:58 -05:00
commit bb5bf9e028
17 changed files with 7158 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
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.',
},
];