-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalm.html
More file actions
196 lines (187 loc) · 9.27 KB
/
alm.html
File metadata and controls
196 lines (187 loc) · 9.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Andre McPhail - Healthcare Leadership & Technology</title>
<!-- Include Tailwind CSS CDN -->
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<style>
/* Optional: Add custom styles here if needed */
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="bg-gray-100 text-gray-800 leading-normal">
<!-- Header Section -->
<header class="bg-white shadow-md py-4 sticky top-0 z-50">
<div class="container mx-auto px-6 flex justify-between items-center">
<h1 class="text-2xl font-bold text-teal-600">Andre McPhail</h1>
<nav>
<div class="space-x-4">
<a href="#about" class="text-gray-600 hover:text-teal-600">About</a>
<a href="#experience" class="text-gray-600 hover:text-teal-600">Experience</a>
<a href="#skills" class="text-gray-600 hover:text-teal-600">Skills</a>
<a href="#projects" class="text-gray-600 hover:text-teal-600">Projects</a>
<a href="#contact" class="text-gray-600 hover:text-teal-600">Contact</a>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-teal-600 to-blue-600 text-white py-20">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Driving Innovation in Healthcare Leadership & Technology</h2>
<p class="text-lg md:text-xl mb-8">
Combining strategic healthcare leadership with technical development expertise to improve patient outcomes, operational efficiency, and digital healthcare delivery.
</p>
<div class="flex justify-center space-x-4">
<a href="#about" class="bg-white text-teal-600 font-semibold px-6 py-3 rounded-full shadow-lg hover:bg-gray-100 transition duration-300">Learn About Me</a>
<a href="#projects" class="border-2 border-white text-white font-semibold px-6 py-3 rounded-full shadow-lg hover:bg-white hover:text-teal-600 transition duration-300">View My Work</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-gray-800 mb-8 border-b-2 border-teal-600 pb-2">About Andre McPhail</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<div>
<p class="mb-6">
Andre McPhail is a seasoned healthcare executive with [Number] years of experience in [mention specific healthcare areas, e.g., hospital administration, health IT, clinical operations]. He possesses a deep understanding of the complex challenges and opportunities within the healthcare industry. Beyond his leadership roles, Andre also maintains a strong foundation in software development, with skills in [mention specific coding areas, e.g., web development, data analysis, cloud computing].
</p>
<p class="mb-6">
He is passionate about bridging the gap between clinical needs and technological solutions, leveraging his unique blend of business strategy and technical proficiency to streamline processes, enhance patient engagement, and drive digital transformation in healthcare organizations.
</p>
</div>
<div class="flex justify-center">
<img src="https://via.placeholder.com/300x300/10B981/FFFFFF?text=Andre+McPhail+Photo" alt="Andre McPhail Photo" class="rounded-full shadow-xl">
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="bg-gray-200 py-16">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-gray-800 mb-8 border-b-2 border-teal-600 pb-2">Professional Experience</h2>
<!-- Experience 1 -->
<div class="bg-white shadow-md rounded-lg p-6 mb-6">
<h3 class="text-xl font-semibold text-teal-600 mb-2">[Your Executive Title]</h3>
<p class="text-gray-600 mb-1">[Company Name], [Location]</p>
<p class="text-sm text-gray-500">[Start Date] - [End Date or Present]</p>
<ul class="list-disc ml-6 mt-4 text-gray-700">
<li>[Key responsibility/achievement 1, e.g., Led the implementation of a new EHR system, improving efficiency by X%.]</li>
<li>[Key responsibility/achievement 2, e.g., Managed a budget of Y million for technology initiatives.]</li>
<li>[Key responsibility/achievement 3, e.g., Developed and executed a digital transformation strategy for patient engagement.]</li>
</ul>
</div>
<!-- Experience 2 -->
<div class="bg-white shadow-md rounded-lg p-6 mb-6">
<h3 class="text-xl font-semibold text-teal-600 mb-2">[Previous Executive Title]</h3>
<p class="text-gray-600 mb-1">[Previous Company Name], [Location]</p>
<p class="text-sm text-gray-500">[Start Date] - [End Date]</p>
<ul class="list-disc ml-6 mt-4 text-gray-700">
<li>[Key responsibility/achievement 1]</li>
<li>[Key responsibility/achievement 2]</li>
</ul>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-16">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-gray-800 mb-8 border-b-2 border-teal-600 pb-2">Skills & Expertise</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div>
<h3 class="text-lg font-semibold text-teal-600 mb-2">Healthcare Leadership</h3>
<ul class="list-disc ml-6 text-gray-700">
<li>Strategic Planning</li>
<li>Operational Management</li>
<li>Regulatory Compliance (HIPAA, etc.)</li>
<li>Health IT Implementation</li>
<li>Patient Experience Management</li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold text-teal-600 mb-2">Technical Skills</h3>
<ul class="list-disc ml-6 text-gray-700">
<li>[Programming Language 1, e.g., Python]</li>
<li>[Programming Language 2, e.g., JavaScript]</li>
<li>[Framework/Library 1, e.g., React, Node.js]</li>
<li>[Database, e.g., SQL, NoSQL]</li>
<li>[Cloud Platform, e.g., AWS, Azure]</li>
<li>Data Analysis & Visualization</li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold text-teal-600 mb-2">Other Skills</h3>
<ul class="list-disc ml-6 text-gray-700">
<li>Project Management</li>
<li>Cross-functional Team Leadership</li>
<li>Communication & Presentation</li>
<li>Problem Solving</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="bg-gray-200 py-16">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-gray-800 mb-8 border-b-2 border-teal-600 pb-2">Selected Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Project 1 -->
<div class="bg-white shadow-md rounded-lg p-6">
<img src="https://via.placeholder.com/400x200/10B981/FFFFFF?text=Project+1+Image" alt="Project 1 Screenshot" class="w-full mb-4 rounded-md">
<h3 class="text-xl font-semibold text-teal-600 mb-2">Healthcare Data Analytics Tool</h3>
<p class="text-gray-600 mb-4">Developed a web application using [Technologies, e.g., Python/Pandas/Streamlit] to visualize key hospital operational metrics.</p>
<a href="#" class="bg-teal-600 hover:bg-teal-700 text-white font-semibold px-4 py-2 rounded-md inline-block transition duration-300">View Project (Optional)</a>
</div>
<!-- Project 2 -->
<div class="bg-white shadow-md rounded-lg p-6">
<img src="https://via.placeholder.com/400x200/10B981/FFFFFF?text=Project+2+Image" alt="Project 2 Screenshot" class="w-full mb-4 rounded-md">
<h3 class="text-xl font-semibold text-teal-600 mb-2">Patient Portal Enhancement</h3>
<p class="text-gray-600 mb-4">Contributed to the development of new features for a patient patient portal using [Technologies, e.g., React/Node.js].</p>
<a href="#" class="bg-teal-600 hover:bg-teal-700 text-white font-semibold px-4 py-2 rounded-md inline-block transition duration-300">View Project (Optional)</a>
</div>
<!-- Project 3 -->
<div class="bg-white shadow-md rounded-lg p-6">
<img src="https://via.placeholder.com/400x200/10B981/FFFFFF?text=Project+3+Image" alt="Project 3 Screenshot" class="w-full mb-4 rounded-md">
<h3 class="text-xl font-semibold text-teal-600 mb-2">Internal Workflow Automation Tool</h3>
<p class="text-gray-600 mb-4">Built a script-based tool to automate routine administrative tasks using [Technologies, e.g., Python/Flask].</p>
<a href="#" class="bg-teal-600 hover:bg-teal-700 text-white font-semibold px-4 py-2 rounded-md inline-block transition duration-300">View Project (Optional)</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold text-gray-800 mb-8 border-b-2 border-teal-600 pb-2">Get In Touch</h2>
<p class="mb-8">Let's discuss how technology can transform healthcare.</p>
<div class="flex justify-center space-x-6">
<!-- Email Icon -->
<a href="mailto:your.email@example.com" class="text-gray-600 hover:text-teal-600">
<img src="https://unpkg.com/lucide-static@latest/icons/mail.svg" alt="Email" class="w-8 h-8">
</a>
<!-- LinkedIn Icon -->
<a href="https://www.linkedin.com/in/your-profile" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-teal-600">
<img src="https://unpkg.com/lucide-static@latest/icons/linkedin.svg" alt="LinkedIn" class="w-8 h-8">
</a>
<!-- GitHub Icon -->
<a href="https://github.com/your-username" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-teal-600">
<img src="https://unpkg.com/lucide-static@latest/icons/github.svg" alt="GitHub" class="w-8 h-8">
</a>
<!-- Add more social media links as needed -->
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="bg-gray-800 text-white py-6 text-center mt-auto">
<div class="container mx-auto px-6">
<p>© 2024 Andre McPhail. All rights reserved.</p>
</div>
</footer>
</body>
</html>