File size: 13,545 Bytes
a6e4a84 1d43346 a6e4a84 1d43346 0fe7d06 a6e4a84 0fe7d06 a6e4a84 0fe7d06 a6e4a84 0fe7d06 a6e4a84 |
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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marc Cornelius | Links</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
}
.profile-img {
border: 4px solid white;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.profile-img:hover {
transform: scale(1.05);
}
.link-card {
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
}
.link-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Enhanced styling for AI Audit card */
.ai-audit-card {
background: linear-gradient(135deg, #4f5bd5 0%, #962fbf 30%, #d62976 60%, #fa7e1e 90%);
color: white;
position: relative;
overflow: hidden;
border: 2px solid white;
animation: pulse-glow 2s infinite alternate;
}
.ai-audit-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
transform: rotate(30deg);
animation: shine 3s infinite;
}
.ai-audit-card:hover {
transform: scale(1.05) translateY(-5px);
box-shadow: 0 20px 30px rgba(149, 75, 214, 0.7);
animation: none;
}
.ai-audit-card .icon-bg {
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 15px rgba(255,255,255,0.5);
}
.ai-audit-card i, .ai-audit-card h3, .ai-audit-card p, .ai-audit-card .chevron {
color: white !important;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ai-audit-card h3 {
font-weight: 700;
font-size: 1.2rem;
}
.ai-audit-card p {
opacity: 0.9;
font-weight: 500;
}
@keyframes shine {
0% {
transform: rotate(30deg) translate(-30%, -30%);
}
100% {
transform: rotate(30deg) translate(30%, 30%);
}
}
@keyframes pulse-glow {
0% {
box-shadow: 0 0 15px rgba(149, 75, 214, 0.5);
}
100% {
box-shadow: 0 0 30px rgba(149, 75, 214, 0.8);
}
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.accordion.active .accordion-content {
max-height: 500px;
transition: max-height 0.5s ease-in;
}
.accordion.active .accordion-icon {
transform: rotate(180deg);
}
.accordion-icon {
transition: transform 0.3s ease;
}
.ai-sparkles {
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
}
.ai-sparkle {
position: absolute;
background: white;
border-radius: 50%;
opacity: 0;
animation: sparkle-fall 2s linear infinite;
}
@keyframes sparkle-fall {
0% {
transform: translateY(-20px) rotate(0deg);
opacity: 0;
}
20% {
opacity: 0.7;
}
100% {
transform: translateY(120px) rotate(360deg);
opacity: 0;
}
}
</style>
</head>
<body class="flex flex-col items-center py-12 px-4">
<div class="w-full max-w-md mx-auto">
<!-- Profile Section -->
<div class="flex flex-col items-center mb-8">
<img src="https://marccornelius.com/wp-content/uploads/2024/02/image-12-1.png"
alt="Marc Cornelius"
class="profile-img w-32 h-32 rounded-full object-cover mb-4">
<h1 class="text-3xl font-bold text-gray-800 mb-1">Marc Cornelius</h1>
<p class="text-gray-600">Digital Strategist & AI Consultant</p>
</div>
<!-- Links Section -->
<div class="space-y-4 mb-8">
<!-- Free AI Audit Link -->
<a href="https://marccornelius.com/ai-audit" target="_blank" class="block">
<div class="link-card ai-audit-card rounded-xl p-5 flex items-center shadow-lg relative overflow-hidden">
<div id="ai-sparkles-container" class="ai-sparkles"></div>
<div class="icon-bg p-4 rounded-xl mr-4">
<i class="fas fa-robot text-2xl"></i>
</div>
<div class="z-10">
<h3>🔍 Free AI Opportunity Audit</h3>
<p class="text-sm">Get your personalized AI assessment report at no cost</p>
</div>
<div class="ml-auto z-10">
<div class="bg-white bg-opacity-30 rounded-full p-1">
<i class="fas fa-chevron-right"></i>
</div>
</div>
</div>
</a>
<!-- Store Link -->
<a href="https://marccornelius.com/store/" target="_blank" class="block">
<div class="link-card rounded-xl p-5 flex items-center shadow-md hover:shadow-lg">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-shopping-bag text-indigo-600 text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">Store</h3>
<p class="text-sm text-gray-500">Digital products & resources</p>
</div>
<div class="ml-auto">
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</a>
<!-- Blog Link -->
<a href="https://marccornelius.com/blog" target="_blank" class="block">
<div class="link-card rounded-xl p-5 flex items-center shadow-md hover:shadow-lg">
<div class="bg-orange-100 p-3 rounded-lg mr-4">
<i class="fas fa-pen-fancy text-orange-600 text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">Blog</h3>
<p class="text-sm text-gray-500">Read my latest articles</p>
</div>
<div class="ml-auto">
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</a>
<!-- Website Link -->
<a href="https://marccornelius.com/" target="_blank" class="block">
<div class="link-card rounded-xl p-5 flex items-center shadow-md hover:shadow-lg">
<div class="bg-purple-100 p-3 rounded-lg mr-4">
<i class="fas fa-globe text-purple-600 text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">Website</h3>
<p class="text-sm text-gray-500">Visit my personal website</p>
</div>
<div class="ml-auto">
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</a>
<!-- LinkedIn Link -->
<a href="https://www.linkedin.com/in/marc-cornelius/" target="_blank" class="block">
<div class="link-card rounded-xl p-5 flex items-center shadow-md hover:shadow-lg">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fab fa-linkedin-in text-blue-700 text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">LinkedIn</h3>
<p class="text-sm text-gray-500">Connect with me professionally</p>
</div>
<div class="ml-auto">
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</a>
</div>
<!-- About Me Accordion -->
<div class="accordion bg-white rounded-xl shadow-md overflow-hidden">
<div class="accordion-header p-5 flex justify-between items-center cursor-pointer">
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i class="fas fa-user text-green-600 text-xl"></i>
</div>
<h3 class="font-semibold text-gray-800">About Me</h3>
</div>
<i class="accordion-icon fas fa-chevron-down text-gray-400"></i>
</div>
<div class="accordion-content">
<div class="px-5 pb-5 pt-2 border-t border-gray-100">
<div class="flex flex-col md:flex-row gap-4">
<div class="md:w-1/3">
<img src="https://marccornelius.com/wp-content/uploads/2024/02/image-12-1.png"
alt="Marc Cornelius"
class="rounded-lg w-full h-auto">
</div>
<div class="md:w-2/3">
<p class="text-gray-700 mb-3">
Hi, I'm Marc Cornelius, a digital strategist and AI consultant helping businesses leverage cutting-edge technologies.
</p>
<p class="text-gray-700 mb-3">
With over 10 years of experience in digital transformation, I specialize in AI implementation strategies that drive real business results.
</p>
<p class="text-gray-700">
When I'm not consulting, you can find me speaking at tech conferences or writing about the intersection of business and emerging technologies.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="mt-8 text-center text-gray-500 text-sm">
<p>© 2025 Marc Cornelius. All rights reserved.</p>
</div>
</div>
<script>
// Accordion functionality
document.addEventListener('DOMContentLoaded', function() {
const accordion = document.querySelector('.accordion');
accordion.addEventListener('click', function() {
this.classList.toggle('active');
});
// Create sparkles for AI Audit button
const container = document.getElementById('ai-sparkles-container');
const colors = ['#FFEB3B', '#4CAF50', '#2196F3', '#9C27B0', '#FF5722'];
for (let i = 0; i < 15; i++) {
setTimeout(() => {
const sparkle = document.createElement('div');
sparkle.classList.add('ai-sparkle');
sparkle.style.width = Math.random() * 8 + 2 + 'px';
sparkle.style.height = sparkle.style.width;
sparkle.style.left = Math.random() * 100 + '%';
sparkle.style.top = -10 + 'px';
sparkle.style.background = colors[Math.floor(MathRandom() * colors.length)];
sparkle.style.animationDuration = Math.random() * 3 + 1 + 's';
sparkle.style.animationDelay = Math.random() * 0.5 + 's';
container.appendChild(sparkle);
// Remove sparkle after animation completes
setTimeout(() => {
sparkle.remove();
}, 3000);
}, i * 200);
}
// Repeat sparkles
setInterval(() => {
const sparkle = document.createElement('div');
sparkle.classList.add('ai-sparkle');
sparkle.style.width = Math.random() * 8 + 2 + 'px';
sparkle.style
</html> |