Files
Resume/resume-app/src/App.jsx
2026-04-21 02:53:52 -05:00

158 lines
4.6 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { useState } from 'react'
function App() {
return (
<>
<div className="min-h-screen flex items-center justify-center">
<div className="bg-gray-100 p-4 rounded-lg shadow-md w-full max-w-4xl">
<div className="">
<h1 className="font-bold text-4xl space-y-2">Benjamin Mosley</h1></div>
<br />
<div className="">
<h4><b>About Me:</b> I am a recent Computer Information Systems Graduate with a deep passion for creating, hosting and managing systems.</h4>
<br />
<div>
<h4 className="font-bold">Education:</h4>
<ul className="list-disc list-inside space-y-2">
<li>Associate of Science: West Texas A&M University</li>
<li>Bachelor of Business Administration (CIS Track): West Texas A&M University </li>
</ul>
</div>
<br />
<div className="grid grid-cols-2 gap-6">
<div>
<h4 className="font-bold text-lg">Skills:</h4>
<br />
<div>
<h4 className="font-bold text-sm">Programming/Scripting:</h4>
<ul class="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Python</li>
<li>C#</li>
<li>ASP.NET</li>
<li>Bash</li>
<li>Powershell</li>
</ul>
</div>
<br />
<div>
<h4 className="font-bold text-sm">Web & Database:</h4>
<ul className="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Flask</li>
<li>Razor Pages</li>
<li>SQL</li>
</ul>
</div>
<br />
<div>
<h4 className="font-bold text-sm">Systems:</h4>
<ul className="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Linux</li>
<li>Windows Server</li>
<li>Git/Github</li>
</ul>
</div>
<br />
<div>
<h4 className="font-bold text-sm">Professional:</h4>
<ul className="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Technical Problem-Solving</li>
<li>Client Communication and Customer Support</li>
<li>Team Planning and Management</li>
<li>Object Oriented Design and Development</li>
<li>Scrum Team Operations</li>
<li>UML Modeling</li>
</ul>
</div>
</div>
<div>
<h4 className="font-bold text-lg">Work-History:</h4>
<br />
<div className="space-y-1">
<p className="font-bold text-sm">Level II Technical Support AMA TechTel</p>
<p className="text-xs text-gray-500">March 2026 Present · Amarillo, TX</p>
<ul className="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Provide technical support for a CLEC network managing Cambium wireless DV radios/routers and Adtran equipment across radio and fiber infrastructure.</li>
<li>Diagnose and resolve connectivity, hardware, and provisioning issues for residential and business customers via inbound phone support.</li>
<li>Manage and document cases, resolutions, and escalation paths in Rev.io ticketing system.</li>
<li>Coordinate issue escalations with fiber-resellers for business customers.</li>
<li>Communicate issue resolutions with dispatch and on-site technicians for owned infrastructure requiring physical remediation.</li>
</ul>
</div>
<br />
<div className="space-y-1">
<p className="font-bold text-sm">IT Intern Hutchinson County Court House</p>
<p className="text-xs text-gray-500">May 2025 Aug 2025 · Stinnett, TX</p>
<ul className="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Assisted with Windows Server/Active Directory administration and routine maintenance.</li>
<li>Resolved helpdesk tickets; imaged PCs and handled hardware/software issues.</li>
<li>Helped configure switches, APs, and firewall rules; supported backups and updates.</li>
<li>Contributed to security policy rollouts and small infrastructure upgrades.</li>
</ul>
</div>
<br />
<div className="space-y-1">
<p className="font-bold text-sm">E-Commerce Dept. Manager / Various Roles United Supermarkets</p>
<p className="text-xs text-gray-500">Nov 2019 Mar 2026 · Canyon & Borger, TX</p>
<ul className="list-disc list-inside text-sm space-y-1 text-gray-700">
<li>Started as a Bag Boy in 2019 and advanced to Grocery Team Lead by 2022, overseeing daily operations and team coordination.</li>
<li>Transitioned to the Service Desk during college, working as a Clerk and Bookkeeper handling customer transactions and financial recordkeeping.</li>
<li>Promoted to E-Commerce Department Manager (Aug 2025 Mar 2026); owned online order flow, delivery/pickup SLA, and team scheduling.</li>
<li>Tracked KPIs (fill rate, OTIF, cancellations, customer feedback) and drove continuous process improvements.</li>
<li>Partnered with IT and vendors to maintain handheld devices, printers, and store systems.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</>
)
}
export default App