389 lines
11 KiB
HTML
389 lines
11 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Jake Shore — AI & Full-Stack Case Studies</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
:root {
|
|
--bg-primary: #0a0a0a;
|
|
--bg-secondary: #111827;
|
|
--text-primary: #f1f5f9;
|
|
--text-secondary: #94a3b8;
|
|
--border-color: rgba(255,255,255,0.08);
|
|
--glass-bg: rgba(255,255,255,0.03);
|
|
--glass-border: rgba(255,255,255,0.06);
|
|
}
|
|
html { scroll-behavior: smooth; }
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #0d1520 100%);
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* Noise texture overlay */
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
|
|
|
|
/* Hero */
|
|
.hero {
|
|
text-align: center;
|
|
padding: 100px 0 60px;
|
|
animation: fadeInUp 0.8s ease-out;
|
|
}
|
|
.hero-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 20px;
|
|
border-radius: 100px;
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 32px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
.hero-badge .dot {
|
|
width: 8px; height: 8px;
|
|
border-radius: 50%;
|
|
background: #10b981;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
.hero h1 {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 20px;
|
|
}
|
|
.hero h1 span {
|
|
background: linear-gradient(135deg, #00d4ff, #8b5cf6, #ec4899);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
.hero p {
|
|
font-size: 1.15rem;
|
|
color: var(--text-secondary);
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* Grid */
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 24px;
|
|
padding: 40px 0 100px;
|
|
}
|
|
|
|
/* Card */
|
|
.card {
|
|
position: relative;
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
|
|
backdrop-filter: blur(10px);
|
|
animation: fadeInUp 0.6s ease-out both;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
}
|
|
.card:nth-child(1) { animation-delay: 0.1s; }
|
|
.card:nth-child(2) { animation-delay: 0.2s; }
|
|
.card:nth-child(3) { animation-delay: 0.3s; }
|
|
.card:nth-child(4) { animation-delay: 0.4s; }
|
|
.card:nth-child(5) { animation-delay: 0.5s; }
|
|
|
|
.card:hover {
|
|
transform: translateY(-6px);
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
|
|
}
|
|
.card:hover .card-stripe { opacity: 1; }
|
|
.card:hover .card-arrow { transform: translateX(4px); }
|
|
|
|
.card-stripe {
|
|
position: absolute;
|
|
top: 0; left: 0; right: 0;
|
|
height: 3px;
|
|
opacity: 0.7;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.card-body { padding: 32px; }
|
|
|
|
.card-icon {
|
|
width: 48px; height: 48px;
|
|
border-radius: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 22px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card h2 {
|
|
font-size: 1.35rem;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.card .hook {
|
|
font-size: 0.95rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 20px;
|
|
line-height: 1.6;
|
|
font-style: italic;
|
|
}
|
|
|
|
.card .tech-pills {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin-bottom: 24px;
|
|
}
|
|
.card .pill {
|
|
font-size: 11px;
|
|
padding: 4px 10px;
|
|
border-radius: 100px;
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.card-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 32px;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.card-link {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.card-arrow {
|
|
transition: transform 0.3s ease;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.card-metric {
|
|
font-size: 0.8rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* Card accent colors */
|
|
.card--cyan:hover { border-color: rgba(0,212,255,0.3); }
|
|
.card--cyan .card-stripe { background: linear-gradient(90deg, #00d4ff, #0099cc); }
|
|
.card--cyan .card-icon { background: rgba(0,212,255,0.1); color: #00d4ff; }
|
|
.card--cyan .card-link { color: #00d4ff; }
|
|
|
|
.card--purple:hover { border-color: rgba(139,92,246,0.3); }
|
|
.card--purple .card-stripe { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }
|
|
.card--purple .card-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }
|
|
.card--purple .card-link { color: #8b5cf6; }
|
|
|
|
.card--amber:hover { border-color: rgba(245,158,11,0.3); }
|
|
.card--amber .card-stripe { background: linear-gradient(90deg, #f59e0b, #d97706); }
|
|
.card--amber .card-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
|
|
.card--amber .card-link { color: #f59e0b; }
|
|
|
|
.card--pink:hover { border-color: rgba(236,72,153,0.3); }
|
|
.card--pink .card-stripe { background: linear-gradient(90deg, #ec4899, #be185d); }
|
|
.card--pink .card-icon { background: rgba(236,72,153,0.1); color: #ec4899; }
|
|
.card--pink .card-link { color: #ec4899; }
|
|
|
|
.card--emerald:hover { border-color: rgba(16,185,129,0.3); }
|
|
.card--emerald .card-stripe { background: linear-gradient(90deg, #10b981, #059669); }
|
|
.card--emerald .card-icon { background: rgba(16,185,129,0.1); color: #10b981; }
|
|
.card--emerald .card-link { color: #10b981; }
|
|
|
|
/* Footer */
|
|
.footer {
|
|
text-align: center;
|
|
padding: 60px 0 40px;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
.footer p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.85rem;
|
|
margin-bottom: 16px;
|
|
}
|
|
.footer .badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 14px;
|
|
border-radius: 8px;
|
|
background: rgba(255,255,255,0.03);
|
|
border: 1px solid rgba(255,255,255,0.06);
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
}
|
|
.footer .badge svg { width: 14px; height: 14px; }
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from { opacity: 0; transform: translateY(24px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: 0.5; transform: scale(0.8); }
|
|
}
|
|
|
|
/* Mobile */
|
|
@media (max-width: 768px) {
|
|
.hero { padding: 70px 0 40px; }
|
|
.grid { grid-template-columns: 1fr; gap: 16px; padding: 24px 0 60px; }
|
|
.card-body { padding: 24px; }
|
|
.card-footer { padding: 16px 24px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header class="hero">
|
|
<div class="hero-badge">
|
|
<span class="dot"></span>
|
|
Available for projects
|
|
</div>
|
|
<h1>AI-Powered Products,<br><span>Built at Speed</span></h1>
|
|
<p>Full-stack development meets AI engineering. From SaaS platforms to 3D visualizations — here's a selection of recent work.</p>
|
|
</header>
|
|
|
|
<div class="grid">
|
|
<!-- AI Ad Engine -->
|
|
<a href="ai-ad-engine.html" class="card card--cyan">
|
|
<div class="card-stripe"></div>
|
|
<div class="card-body">
|
|
<div class="card-icon">⚡</div>
|
|
<h2>AI Ad Creative Engine</h2>
|
|
<p class="hook">"From URL to 6 ad formats in 60 seconds"</p>
|
|
<div class="tech-pills">
|
|
<span class="pill">Claude API</span>
|
|
<span class="pill">Node.js</span>
|
|
<span class="pill">Web Scraping</span>
|
|
<span class="pill">HTML/CSS</span>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<span class="card-link">View Case Study <span class="card-arrow">→</span></span>
|
|
<span class="card-metric">60s generation</span>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- MCP Integrations -->
|
|
<a href="mcp-integrations.html" class="card card--purple">
|
|
<div class="card-stripe"></div>
|
|
<div class="card-body">
|
|
<div class="card-icon">🔗</div>
|
|
<h2>30+ Enterprise AI Integrations</h2>
|
|
<p class="hook">"Connecting AI to every tool your business already uses"</p>
|
|
<div class="tech-pills">
|
|
<span class="pill">TypeScript</span>
|
|
<span class="pill">MCP Protocol</span>
|
|
<span class="pill">REST APIs</span>
|
|
<span class="pill">OAuth2</span>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<span class="card-link">View Case Study <span class="card-arrow">→</span></span>
|
|
<span class="card-metric">1,500+ tools</span>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- NicheQuiz -->
|
|
<a href="nichequiz.html" class="card card--amber">
|
|
<div class="card-stripe"></div>
|
|
<div class="card-body">
|
|
<div class="card-icon">🧠</div>
|
|
<h2>TheNicheQuiz.com — AI Quiz Platform</h2>
|
|
<p class="hook">"Full SaaS product from idea to live in one session"</p>
|
|
<div class="tech-pills">
|
|
<span class="pill">Next.js</span>
|
|
<span class="pill">PostgreSQL</span>
|
|
<span class="pill">Stripe</span>
|
|
<span class="pill">Claude API</span>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<span class="card-link">View Case Study <span class="card-arrow">→</span></span>
|
|
<span class="card-metric">Idea → Live in 1 day</span>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Genre Universe -->
|
|
<a href="genre-universe.html" class="card card--pink">
|
|
<div class="card-stripe"></div>
|
|
<div class="card-body">
|
|
<div class="card-icon">🌌</div>
|
|
<h2>3D Genre Universe</h2>
|
|
<p class="hook">"56 artists mapped across 6 audio dimensions in 3D space"</p>
|
|
<div class="tech-pills">
|
|
<span class="pill">Three.js</span>
|
|
<span class="pill">Spotify API</span>
|
|
<span class="pill">Python</span>
|
|
<span class="pill">WebGL</span>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<span class="card-link">View Case Study <span class="card-arrow">→</span></span>
|
|
<span class="card-metric">56 artists, 6D</span>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- CREdispo -->
|
|
<a href="credispo.html" class="card card--emerald">
|
|
<div class="card-stripe"></div>
|
|
<div class="card-body">
|
|
<div class="card-icon">🏢</div>
|
|
<h2>CREdispo — CRE Lead Gen</h2>
|
|
<p class="hook">"Automated pipeline from property data to qualified leads"</p>
|
|
<div class="tech-pills">
|
|
<span class="pill">Next.js</span>
|
|
<span class="pill">PostgreSQL</span>
|
|
<span class="pill">Python</span>
|
|
<span class="pill">AI Scoring</span>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<span class="card-link">View Case Study <span class="card-arrow">→</span></span>
|
|
<span class="card-metric">20hrs → 2min</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<p>Want to see what I can build for you?</p>
|
|
<div class="badge">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
|
|
Built with Claude Code
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |