17 lines
635 B
Text
17 lines
635 B
Text
<main>
|
|
<section class="page-hero">
|
|
<div class="container profile-card glass-card reveal" data-reveal>
|
|
<% const member = (config.team || []).find(t => t.slug === 'nick'); %>
|
|
<% if (member) { %>
|
|
<img src="<%= config.assets.images[member.image] %>" alt="<%= member.name %>" loading="lazy" />
|
|
<h1><%= member.name %></h1>
|
|
<p><strong><%= member.role %></strong></p>
|
|
<p><%= member.bio %></p>
|
|
<% } else { %>
|
|
<h1>Profile</h1>
|
|
<p>Profile not found.</p>
|
|
<% } %>
|
|
<p><a class="text-link" href="/company">← Back to Company</a></p>
|
|
</div>
|
|
</section>
|
|
</main>
|