-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
186 lines (167 loc) · 7.98 KB
/
index.html
File metadata and controls
186 lines (167 loc) · 7.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' https://cdn.jsdelivr.net; style-src 'self' https://fonts.googleapis.com https://cdn.jsdelivr.net; style-src-attr 'unsafe-inline'; font-src https://fonts.gstatic.com https://cdn.jsdelivr.net; img-src 'self' data: https:; connect-src 'self' https://api.github.com;">
<title>Will Bracken | Engineering Hub</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600&family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #050810;
--surface: #0a0c14;
--surface-accent: #121620;
--text: #e6edf3;
--text-dim: #8b949e;
--primary: #2f81f7;
--secondary: #a78bfa;
--accent-orange: #f97316;
--accent-purple: #9333ea;
--border: #21262d;
--success: #3fb950;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
overflow-x: hidden;
line-height: 1.5;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
/* Animated Background */
.bg-grid {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background-image: radial-gradient(circle at 2px 2px, rgba(47, 129, 247, 0.05) 1px, transparent 0);
background-size: 40px 40px;
z-index: -1;
}
/* Nav */
nav {
padding: 30px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo { font-family: 'Fira Code', monospace; font-weight: 600; color: var(--primary); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
/* Hero */
.hero { padding: 120px 0 80px; }
.hero-label { font-family: 'Fira Code', monospace; color: var(--accent-orange); font-size: 0.8rem; margin-bottom: 20px; display: block; }
h1 { font-size: 4rem; font-weight: 700; tracking-tighter; margin-bottom: 20px; line-height: 1; }
.hero-desc { font-size: 1.25rem; color: var(--text-dim); max-width: 600px; margin-bottom: 40px; }
/* Grid */
.project-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 24px;
margin-bottom: 100px;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
padding: 40px;
text-decoration: none;
color: inherit;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.card:hover {
border-color: var(--primary);
transform: translateY(-8px);
background: var(--surface-accent);
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card-lg { grid-column: span 8; }
.card-md { grid-column: span 4; }
.card-sm { grid-column: span 6; }
.card i { font-size: 2rem; color: var(--accent-color, var(--primary)); margin-bottom: 30px; display: block; }
.card h3 { font-size: 1.8rem; margin-bottom: 16px; }
.card p { color: var(--text-dim); margin-bottom: 30px; }
.tags { display: flex; gap: 12px; flex-wrap: wrap; }
.tag { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: var(--text-dim); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 6px; }
/* Foot */
footer { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; color: var(--text-dim); }
.social { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }
.social a { color: var(--text-dim); font-size: 1.5rem; transition: color 0.2s; }
.social a:hover { color: var(--primary); }
.accent-orange { --accent-color: var(--accent-orange); }
.accent-purple { --accent-color: var(--accent-purple); }
</style>
</head>
<body>
<div class="bg-grid"></div>
<div class="container">
<nav>
<div class="logo">BRACKEN_ENGINEERING</div>
<div class="nav-links">
<a href="https://willbracken.com">Switchboard</a>
<a href="/projects.html">Archive</a>
<a href="https://github.com/BrackenW3">GitHub</a>
</div>
</nav>
<section class="hero">
<span class="hero-label">// EST. 2024</span>
<h1>Architecture & <br><span style="color: var(--primary)">Machine Intelligence</span></h1>
<p class="hero-desc">Advanced technical portfolio focusing on Edge Infrastructure, NLP Algorithms, and Autonomous Workflow Orchestration.</p>
</section>
<div class="project-grid">
<a href="/ms-teams-demo.html" class="card card-lg accent-purple">
<i class="bi bi-cpu"></i>
<h3>MS Teams Analytics</h3>
<p>Enterprise-grade dashboard suite featuring 15-domain NLP classification, D3.js scope-impact graphs, and LSTM forecasting for work delivery optimization.</p>
<div class="tags">
<span class="tag">NLP</span>
<span class="tag">PYTHON</span>
<span class="tag">D3.JS</span>
<span class="tag">DUCKDB</span>
</div>
</a>
<a href="https://willbracken.com/galaxy" class="card card-md">
<i class="bi bi-layers"></i>
<h3>Code Galaxy</h3>
<p>Highly interactive 3D visualization of 100+ repositories. Real-time language distribution analysis and monorepo topology.</p>
<div class="tags">
<span class="tag">THREE.JS</span>
<span class="tag">WEBGL</span>
</div>
</a>
<a href="https://n8n.willbracken.com" class="card card-sm accent-orange">
<i class="bi bi-robot"></i>
<h3>Autonomous n8n</h3>
<p>Dockerized workflow engine optimized for local bare-metal LLM execution. Orchestrating cross-platform task automation.</p>
<div class="tags">
<span class="tag">DOCKER</span>
<span class="tag">n8n</span>
<span class="tag">LLM_OPS</span>
</div>
</a>
<a href="/go-systems.html" class="card card-sm">
<i class="bi bi-command"></i>
<h3>Go-Convert Engine</h3>
<p>Universal data format converter compiled to CLI and WebAssembly. Features 100+ Lua template functions for complex schema mapping.</p>
<div class="tags">
<span class="tag">GOLANG</span>
<span class="tag">WASM</span>
<span class="tag">LUA</span>
</div>
</a>
</div>
<footer>
<div class="social">
<a href="https://github.com/BrackenW3"><i class="bi bi-github"></i></a>
<a href="https://willbracken.com"><i class="bi bi-globe"></i></a>
</div>
<p>© 2026 Will Bracken. Built with professional precision.</p>
</footer>
</div>
</body>
</html>