35 lines
1.2 KiB
Text
35 lines
1.2 KiB
Text
<main>
|
|
<section class="page-hero">
|
|
<div class="container">
|
|
<h1>Company</h1>
|
|
<p class="lead"><%= config.brand.legalName %> is focused on improving emergency bleeding response through intuitive automation and practical deployment models.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section section-alt">
|
|
<div class="container">
|
|
<h2>Team</h2>
|
|
<div class="team-grid">
|
|
<% (config.team || []).forEach(member => { %>
|
|
<article class="glass-card team-card reveal" data-reveal>
|
|
<img src="<%= config.assets.images[member.image] %>" alt="<%= member.name %>" loading="lazy" />
|
|
<h3><%= member.name %></h3>
|
|
<p><%= member.role %></p>
|
|
<a class="text-link" href="/<%= member.slug %>">View profile →</a>
|
|
</article>
|
|
<% }) %>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<h2>Company Gallery</h2>
|
|
<div class="gallery-grid">
|
|
<% for (let i = 1; i <= 7; i++) { %>
|
|
<img class="reveal" data-reveal src="<%= config.assets.images[`company${i}`] %>" alt="AutoTQ company image <%= i %>" loading="lazy" />
|
|
<% } %>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|