44 lines
1.8 KiB
Text
44 lines
1.8 KiB
Text
<main>
|
||
<section class="page-hero">
|
||
<div class="container split split-visual">
|
||
<div>
|
||
<h1>Company</h1>
|
||
<p class="lead"><%= config.brand.legalName %> is focused on improving emergency bleeding response through intuitive automation and practical readiness programs.</p>
|
||
</div>
|
||
<div class="split-media reveal" data-reveal>
|
||
<img src="<%= config.assets.images.company4 %>" alt="AutoTQ team collaboration" loading="lazy" />
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section">
|
||
<div class="container split split-reverse">
|
||
<article class="split-copy reveal" data-reveal>
|
||
<h2>Operating mission</h2>
|
||
<p>The team’s work centers on a clear goal: improve readiness for severe bleeding incidents by making intervention more practical for people who may be under pressure and short on time.</p>
|
||
<p>This includes product development, quality systems, operational planning, and education-oriented resources for real-world deployment settings.</p>
|
||
</article>
|
||
<div class="split-media reveal" data-reveal>
|
||
<img src="<%= config.assets.images.company5 %>" alt="AutoTQ operations and planning" loading="lazy" />
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section section-alt">
|
||
<div class="container">
|
||
<h2>Team</h2>
|
||
<div class="team-grid">
|
||
<% (config.team || []).forEach(member => { %>
|
||
<article class="team-card reveal" data-reveal>
|
||
<img src="<%= config.assets.images[member.image] %>" alt="<%= member.name %>" loading="lazy" />
|
||
<div>
|
||
<h3><%= member.name %></h3>
|
||
<p><%= member.role %></p>
|
||
<a class="text-link" href="/<%= member.slug %>">View profile →</a>
|
||
</div>
|
||
</article>
|
||
<% }) %>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</main>
|