Initial commit: production-ready modern EJS site for AutoTQ
This commit is contained in:
parent
ce83cebdbb
commit
fa2ac66263
16 changed files with 564 additions and 0 deletions
115
public/css/style.css
Normal file
115
public/css/style.css
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
:root {
|
||||
--bg: #071225;
|
||||
--bg-alt: #0c1d39;
|
||||
--text: #e8eefc;
|
||||
--muted: #9eb0d3;
|
||||
--accent: #4cc9f0;
|
||||
--accent-2: #8b5cf6;
|
||||
--card: rgba(255, 255, 255, 0.06);
|
||||
--border: rgba(255, 255, 255, 0.14);
|
||||
--shadow: 0 20px 50px rgba(4, 10, 22, 0.45);
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; }
|
||||
html, body { margin: 0; padding: 0; }
|
||||
body {
|
||||
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
color: var(--text);
|
||||
background: radial-gradient(1000px 400px at 10% -10%, #1b3769, transparent), var(--bg);
|
||||
line-height: 1.6;
|
||||
}
|
||||
a { color: inherit; text-decoration: none; }
|
||||
img { max-width: 100%; height: auto; display: block; }
|
||||
.container { width: min(1200px, calc(100% - 2rem)); margin-inline: auto; }
|
||||
.section { padding: 4.5rem 0; }
|
||||
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005)); }
|
||||
|
||||
.site-header {
|
||||
position: sticky; top: 0; z-index: 999;
|
||||
backdrop-filter: blur(14px);
|
||||
background: rgba(7, 18, 37, 0.72);
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
|
||||
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 700; }
|
||||
.brand img { width: 44px; height: 44px; object-fit: contain; }
|
||||
.site-nav { display: flex; align-items: center; gap: .95rem; }
|
||||
.site-nav a { color: var(--muted); font-weight: 500; transition: .25s ease; }
|
||||
.site-nav a:hover, .site-nav a.active { color: var(--text); }
|
||||
.mobile-toggle { display: none; border: 0; background: transparent; padding: .25rem; }
|
||||
.mobile-toggle span { width: 22px; height: 2px; background: var(--text); display: block; margin: 5px 0; }
|
||||
|
||||
.hero { padding: 6rem 0 3.5rem; position: relative; overflow: clip; }
|
||||
.hero-bg {
|
||||
position: absolute; inset: 0;
|
||||
background: radial-gradient(700px 350px at 70% -30%, rgba(76,201,240,.35), transparent),
|
||||
radial-gradient(500px 280px at 20% 0%, rgba(139,92,246,.22), transparent);
|
||||
}
|
||||
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
|
||||
.eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: .82rem; }
|
||||
h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: .25rem 0 .75rem; line-height: 1.1; }
|
||||
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.2; margin-top: 0; }
|
||||
.lead { color: var(--muted); font-size: 1.1rem; max-width: 65ch; }
|
||||
.hero-actions { display: flex; gap: .8rem; margin-top: 1.5rem; flex-wrap: wrap; }
|
||||
|
||||
.btn {
|
||||
display: inline-flex; align-items: center; justify-content: center;
|
||||
padding: .75rem 1.1rem; border-radius: 999px; font-weight: 600;
|
||||
border: 1px solid transparent; transition: .25s ease;
|
||||
}
|
||||
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #061023; }
|
||||
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }
|
||||
.btn-ghost { border-color: var(--border); color: var(--text); }
|
||||
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
|
||||
|
||||
.glass-card {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 18px;
|
||||
padding: 1.2rem;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
.media-card { padding: .75rem; overflow: hidden; }
|
||||
.media-card img { border-radius: 12px; width: 100%; object-fit: cover; }
|
||||
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
|
||||
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
|
||||
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: center; }
|
||||
.feature-card, .literature-card, .quote-card { transition: transform .25s ease, border-color .25s ease; }
|
||||
.feature-card:hover, .literature-card:hover, .quote-card:hover { transform: translateY(-4px); border-color: rgba(76,201,240,.45); }
|
||||
.page-hero { padding: 5rem 0 1.5rem; }
|
||||
.text-link { color: var(--accent); font-weight: 600; }
|
||||
.checklist { padding-left: 1.1rem; }
|
||||
.checklist li { margin: .45rem 0; }
|
||||
|
||||
.inquiry-form label { display: block; font-weight: 500; margin-bottom: .8rem; }
|
||||
.inquiry-form input, .inquiry-form textarea {
|
||||
width: 100%; margin-top: .35rem; padding: .7rem .8rem;
|
||||
border-radius: 12px; border: 1px solid var(--border);
|
||||
background: rgba(7,18,37,.6); color: var(--text);
|
||||
}
|
||||
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
|
||||
.alert {
|
||||
margin-top: 1rem; padding: .8rem .9rem; border-radius: 12px;
|
||||
border: 1px solid rgba(255,130,130,.35); background: rgba(136,30,30,.2);
|
||||
color: #ffdede;
|
||||
}
|
||||
|
||||
.site-footer { border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 2.5rem; }
|
||||
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 1.2rem; }
|
||||
.footer-links { list-style: none; padding: 0; margin: 0; }
|
||||
.footer-links li { margin: .5rem 0; color: var(--muted); }
|
||||
.footer-bottom { padding: 1.25rem 0 1.8rem; color: var(--muted); }
|
||||
.legal { color: var(--muted); }
|
||||
|
||||
@media (max-width: 980px) {
|
||||
.hero-grid, .split, .grid-3 { grid-template-columns: 1fr; }
|
||||
.grid-2, .footer-grid, .form-grid { grid-template-columns: 1fr; }
|
||||
.mobile-toggle { display: inline-block; }
|
||||
.site-nav {
|
||||
position: absolute; top: 76px; right: 1rem; left: 1rem;
|
||||
background: rgba(7,18,37,.97); border: 1px solid var(--border);
|
||||
border-radius: 14px; padding: .9rem; flex-direction: column; align-items: stretch;
|
||||
transform-origin: top; transform: scaleY(0); opacity: 0; pointer-events: none;
|
||||
}
|
||||
.site-nav.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
|
||||
}
|
||||
19
public/js/main.js
Normal file
19
public/js/main.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
(() => {
|
||||
const toggle = document.getElementById('mobileToggle');
|
||||
const nav = document.getElementById('siteNav');
|
||||
|
||||
if (toggle && nav) {
|
||||
toggle.addEventListener('click', () => {
|
||||
const expanded = toggle.getAttribute('aria-expanded') === 'true';
|
||||
toggle.setAttribute('aria-expanded', String(!expanded));
|
||||
nav.classList.toggle('open');
|
||||
});
|
||||
|
||||
nav.querySelectorAll('a').forEach((link) => {
|
||||
link.addEventListener('click', () => {
|
||||
toggle.setAttribute('aria-expanded', 'false');
|
||||
nav.classList.remove('open');
|
||||
});
|
||||
});
|
||||
}
|
||||
})();
|
||||
75
site.config.js
Normal file
75
site.config.js
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
module.exports = {
|
||||
brand: {
|
||||
name: 'AutoTQ',
|
||||
legalName: 'Golden Hour Medical, Inc.',
|
||||
tagline:
|
||||
'Empowering anyone to stop the bleed with audio instructions and one-button activation.'
|
||||
},
|
||||
contact: {
|
||||
phoneDisplay: '+1 561-325-8758',
|
||||
phoneHref: 'tel:+15613258758',
|
||||
email: 'info@theautotq.com',
|
||||
addressLine1: '6590 W Rogers Circle Suite 5',
|
||||
addressLine2: 'Boca Raton, FL 33487'
|
||||
},
|
||||
assets: {
|
||||
logo: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/44ea0cbc-1d90-43ab-b2ca-38f9f2717c73/newlogooo.png?format=1500w',
|
||||
images: {
|
||||
hero: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/379c6058-a7a4-4af5-b379-fe86a13084b8/IMG_6201.JPG',
|
||||
product: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/38f01936-8f6b-439d-9fa1-5c9860745f16/DSC_7139+%281%29.jpg',
|
||||
videoThumb: 'https://img.youtube.com/vi/4PnhBm5WIg0/maxresdefault.jpg',
|
||||
hannah: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/27abd685-ee03-4aa7-915e-f297515184eb/Hannah+Headshot.jpg',
|
||||
team2: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/809cb685-0242-4d26-a5ec-55904d83d054/1666112743775.jpg',
|
||||
team3: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/d545653b-92ba-4db5-91a7-aec5e7e35b9f/IMG_2699.png',
|
||||
team4: 'https://images.squarespace-cdn.com/content/v1/6491d25fefa4aa7d4b856ce6/922b633d-e930-472e-bda6-da2c08eb6fb3/DSC_1584.jpg'
|
||||
}
|
||||
},
|
||||
literature: [
|
||||
{
|
||||
title: 'AutoTQ Booklet',
|
||||
url: 'https://theautotq.com/s/AutoTQ-Booklet.pdf'
|
||||
},
|
||||
{
|
||||
title: 'AutoTQ Flyer',
|
||||
url: 'https://theautotq.com/s/AutoTQ-Flyer.pdf'
|
||||
},
|
||||
{
|
||||
title: 'OSHA Whitepaper',
|
||||
url: 'https://theautotq.com/s/OSHA-Whitepaper.pdf'
|
||||
},
|
||||
{
|
||||
title: 'Relevant Industries AutoTQ',
|
||||
url: 'https://theautotq.com/s/Relevant-Industries-AutoTQ.pdf'
|
||||
}
|
||||
],
|
||||
nav: [
|
||||
{ label: 'Home', href: '/' },
|
||||
{ label: 'About', href: '/about' },
|
||||
{ label: 'Company', href: '/company' },
|
||||
{ label: 'Research', href: '/research' },
|
||||
{ label: 'Training', href: '/training' },
|
||||
{ label: 'Literature', href: '/literature' },
|
||||
{ label: 'News', href: '/news' },
|
||||
{ label: 'Testimonials', href: '/testimonials' },
|
||||
{ label: 'Articles', href: '/articles' },
|
||||
{ label: 'Contact', href: '/contact' }
|
||||
],
|
||||
theme: {
|
||||
colors: {
|
||||
bg: '#071225',
|
||||
bgAlt: '#0b1a33',
|
||||
text: '#e8eefc',
|
||||
muted: '#9eb0d3',
|
||||
accent: '#4cc9f0',
|
||||
accent2: '#8b5cf6',
|
||||
card: 'rgba(255, 255, 255, 0.06)',
|
||||
border: 'rgba(255, 255, 255, 0.12)'
|
||||
},
|
||||
radius: {
|
||||
sm: '10px',
|
||||
md: '16px',
|
||||
lg: '24px'
|
||||
},
|
||||
maxWidth: '1200px'
|
||||
}
|
||||
};
|
||||
25
views/about.ejs
Normal file
25
views/about.ejs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<%- include('partials/header', { config, pageName: 'about' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>About <%= config.brand.name %></h1>
|
||||
<p class="lead"><%= config.brand.tagline %></p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container split">
|
||||
<div>
|
||||
<h2>Mission-driven innovation</h2>
|
||||
<p>
|
||||
AutoTQ exists to make life-saving hemorrhage control accessible to more people in more settings.
|
||||
The product combines simple operation with guided support for fast adoption.
|
||||
</p>
|
||||
<p><strong>Legal entity:</strong> <%= config.brand.legalName %></p>
|
||||
</div>
|
||||
<div class="glass-card media-card">
|
||||
<img src="<%= config.assets.images.videoThumb %>" alt="AutoTQ training video preview" loading="lazy" />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
22
views/articles.ejs
Normal file
22
views/articles.ejs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<%- include('partials/header', { config, pageName: 'articles' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Articles</h1>
|
||||
<p class="lead">Insights on bleeding control readiness, implementation, and training strategy.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container grid-2">
|
||||
<article class="glass-card">
|
||||
<h3>Designing for high-stress usability</h3>
|
||||
<p>Why intuitive controls and guided audio matter in critical response workflows.</p>
|
||||
</article>
|
||||
<article class="glass-card">
|
||||
<h3>Bringing preparedness into daily operations</h3>
|
||||
<p>Practical steps for integrating modern tourniquet tools into organizational safety programs.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
26
views/company.ejs
Normal file
26
views/company.ejs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<%- include('partials/header', { config, pageName: 'company' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Company</h1>
|
||||
<p class="lead">Focused on scalable emergency response readiness.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container grid-3">
|
||||
<article class="glass-card">
|
||||
<h3>Who We Are</h3>
|
||||
<p><%= config.brand.legalName %> develops practical medical response technology for real-world deployment.</p>
|
||||
</article>
|
||||
<article class="glass-card">
|
||||
<h3>What We Build</h3>
|
||||
<p>FDA-registered and patented automatic pneumatic tourniquet systems with two-step operation.</p>
|
||||
</article>
|
||||
<article class="glass-card">
|
||||
<h3>How We Support</h3>
|
||||
<p>Training resources, literature, and responsive communication for partners and buyers.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
38
views/contact.ejs
Normal file
38
views/contact.ejs
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<%- include('partials/header', { config, pageName: 'contact' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Contact</h1>
|
||||
<p class="lead">Connect with the AutoTQ team.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<div class="container split">
|
||||
<div class="glass-card contact-panel">
|
||||
<h2>Get in touch</h2>
|
||||
<p><strong>Phone:</strong> <a href="<%= config.contact.phoneHref %>"><%= config.contact.phoneDisplay %></a></p>
|
||||
<p><strong>Email:</strong> <a href="mailto:<%= config.contact.email %>"><%= config.contact.email %></a></p>
|
||||
<p><strong>Address:</strong><br /><%= config.contact.addressLine1 %><br /><%= config.contact.addressLine2 %></p>
|
||||
<div class="alert">
|
||||
<strong>Medical Emergency Notice:</strong>
|
||||
<span>If this is an active medical emergency, call 911 immediately.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form class="glass-card inquiry-form" action="#" method="post" novalidate>
|
||||
<h2>Inquiry Form</h2>
|
||||
<div class="form-grid">
|
||||
<label>First Name<input type="text" name="firstName" autocomplete="given-name" required /></label>
|
||||
<label>Last Name<input type="text" name="lastName" autocomplete="family-name" required /></label>
|
||||
<label>Email<input type="email" name="email" autocomplete="email" required /></label>
|
||||
<label>Phone<input type="tel" name="phone" autocomplete="tel" /></label>
|
||||
</div>
|
||||
<label>Organization<input type="text" name="organization" /></label>
|
||||
<label>Message<textarea name="message" rows="5" required></textarea></label>
|
||||
<button type="submit" class="btn btn-primary">Send Inquiry</button>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
55
views/index.ejs
Normal file
55
views/index.ejs
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<%- include('partials/header', { config, pageName: 'home' }) %>
|
||||
|
||||
<main>
|
||||
<section class="hero">
|
||||
<div class="hero-bg"></div>
|
||||
<div class="container hero-grid">
|
||||
<div>
|
||||
<p class="eyebrow">FDA-Registered • Patented</p>
|
||||
<h1><%= config.brand.name %></h1>
|
||||
<p class="lead"><%= config.brand.tagline %></p>
|
||||
<div class="hero-actions">
|
||||
<a href="/contact" class="btn btn-primary">Request Information</a>
|
||||
<a href="/training" class="btn btn-ghost">View Training</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="glass-card media-card">
|
||||
<img src="<%= config.assets.images.hero %>" alt="AutoTQ team and product demonstration" loading="eager" />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<div class="container grid-3">
|
||||
<article class="glass-card feature-card">
|
||||
<h3>Two-Step Operation</h3>
|
||||
<p>Tighten and inflate for intuitive, high-confidence use during critical events.</p>
|
||||
</article>
|
||||
<article class="glass-card feature-card">
|
||||
<h3>Audio Guidance</h3>
|
||||
<p>Designed with clear spoken instructions and one-button activation to support users under stress.</p>
|
||||
</article>
|
||||
<article class="glass-card feature-card">
|
||||
<h3>Reusable + Disposable</h3>
|
||||
<p>Reusable inflator with disposable cuffs for practical readiness and efficient replenishment.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section section-alt">
|
||||
<div class="container split">
|
||||
<div>
|
||||
<h2>Built for preparedness where seconds matter</h2>
|
||||
<p>
|
||||
<%= config.brand.name %> helps organizations improve emergency response posture with a modern automatic pneumatic tourniquet platform focused on simplicity and reliability.
|
||||
</p>
|
||||
<a href="/research" class="text-link">Explore research insights →</a>
|
||||
</div>
|
||||
<div class="glass-card media-card">
|
||||
<img src="<%= config.assets.images.product %>" alt="AutoTQ automatic pneumatic tourniquet" loading="lazy" />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<%- include('partials/footer', { config }) %>
|
||||
21
views/layout.ejs
Normal file
21
views/layout.ejs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title><%= pageTitle ? `${pageTitle} | ${config.brand.name}` : config.brand.name %></title>
|
||||
<meta
|
||||
name="description"
|
||||
content="<%= metaDescription || config.brand.tagline %>"
|
||||
/>
|
||||
<link rel="preconnect" href="https://images.squarespace-cdn.com" />
|
||||
<link rel="preconnect" href="https://img.youtube.com" />
|
||||
<link rel="stylesheet" href="/css/style.css" />
|
||||
</head>
|
||||
<body class="page-<%= pageName || 'default' %>">
|
||||
<%- include('partials/header', { config, pageName }) %>
|
||||
<main><%- body %></main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
<script src="/js/main.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
21
views/literature.ejs
Normal file
21
views/literature.ejs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<%- include('partials/header', { config, pageName: 'literature' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Literature</h1>
|
||||
<p class="lead">Download product and research materials.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container grid-2">
|
||||
<% config.literature.forEach((doc) => { %>
|
||||
<article class="glass-card literature-card">
|
||||
<h3><%= doc.title %></h3>
|
||||
<p>Official AutoTQ document (PDF).</p>
|
||||
<a href="<%= doc.url %>" target="_blank" rel="noopener noreferrer" class="btn btn-primary">Open PDF</a>
|
||||
</article>
|
||||
<% }) %>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
22
views/news.ejs
Normal file
22
views/news.ejs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<%- include('partials/header', { config, pageName: 'news' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>News</h1>
|
||||
<p class="lead">Latest updates from AutoTQ.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container grid-2">
|
||||
<article class="glass-card">
|
||||
<h3>Product awareness initiatives</h3>
|
||||
<p>AutoTQ continues outreach with organizations focused on emergency preparedness.</p>
|
||||
</article>
|
||||
<article class="glass-card">
|
||||
<h3>Training-first communication</h3>
|
||||
<p>Updated guidance materials support faster onboarding and field confidence.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
33
views/partials/footer.ejs
Normal file
33
views/partials/footer.ejs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<footer class="site-footer">
|
||||
<div class="container footer-grid">
|
||||
<div>
|
||||
<a href="/" class="brand brand-footer">
|
||||
<img src="<%= config.assets.logo %>" alt="<%= config.brand.name %> logo" loading="lazy" />
|
||||
<span><%= config.brand.name %></span>
|
||||
</a>
|
||||
<p><%= config.brand.tagline %></p>
|
||||
<p class="legal"><%= config.brand.legalName %></p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4>Explore</h4>
|
||||
<ul class="footer-links">
|
||||
<% config.nav.forEach(item => { %>
|
||||
<li><a href="<%= item.href %>"><%= item.label %></a></li>
|
||||
<% }) %>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4>Contact</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="<%= config.contact.phoneHref %>"><%= config.contact.phoneDisplay %></a></li>
|
||||
<li><a href="mailto:<%= config.contact.email %>"><%= config.contact.email %></a></li>
|
||||
<li><%= config.contact.addressLine1 %><br /><%= config.contact.addressLine2 %></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container footer-bottom">
|
||||
<small>© <%= new Date().getFullYear() %> <%= config.brand.name %>. All rights reserved.</small>
|
||||
</div>
|
||||
</footer>
|
||||
27
views/partials/header.ejs
Normal file
27
views/partials/header.ejs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<header class="site-header" id="siteHeader">
|
||||
<div class="container nav-wrap">
|
||||
<a href="/" class="brand" aria-label="<%= config.brand.name %> home">
|
||||
<img src="<%= config.assets.logo %>" alt="<%= config.brand.name %> logo" loading="eager" />
|
||||
<span><%= config.brand.name %></span>
|
||||
</a>
|
||||
|
||||
<button
|
||||
class="mobile-toggle"
|
||||
id="mobileToggle"
|
||||
aria-label="Toggle navigation"
|
||||
aria-controls="siteNav"
|
||||
aria-expanded="false"
|
||||
>
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
|
||||
<nav class="site-nav" id="siteNav" aria-label="Primary navigation">
|
||||
<% config.nav.forEach(item => { %>
|
||||
<a href="<%= item.href %>" class="<%= pageName === item.label.toLowerCase() || (pageName === 'home' && item.href === '/') ? 'active' : '' %>">
|
||||
<%= item.label %>
|
||||
</a>
|
||||
<% }) %>
|
||||
<a href="/contact" class="btn btn-primary">Contact</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
22
views/research.ejs
Normal file
22
views/research.ejs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<%- include('partials/header', { config, pageName: 'research' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Research</h1>
|
||||
<p class="lead">Evidence-oriented design and usability are central to AutoTQ.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container grid-2">
|
||||
<article class="glass-card">
|
||||
<h3>Human-Centered Response</h3>
|
||||
<p>Audio prompts and one-button activation support decision-making during high-stress scenarios.</p>
|
||||
</article>
|
||||
<article class="glass-card">
|
||||
<h3>Operational Simplicity</h3>
|
||||
<p>Two-step workflow (tighten + inflate) is designed for clarity and rapid execution.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
17
views/testimonials.ejs
Normal file
17
views/testimonials.ejs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<%- include('partials/header', { config, pageName: 'testimonials' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Testimonials</h1>
|
||||
<p class="lead">Feedback centered on ease-of-use and confidence in urgent situations.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container grid-3">
|
||||
<article class="glass-card quote-card"><p>“The guided flow helps users stay calm and focused.”</p><span>— Training Partner</span></article>
|
||||
<article class="glass-card quote-card"><p>“Straightforward setup and clear operation are major strengths.”</p><span>— Safety Coordinator</span></article>
|
||||
<article class="glass-card quote-card"><p>“A compelling approach for high-readiness environments.”</p><span>— Program Lead</span></article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
26
views/training.ejs
Normal file
26
views/training.ejs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<%- include('partials/header', { config, pageName: 'training' }) %>
|
||||
<main>
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>Training</h1>
|
||||
<p class="lead">Prepare teams to act confidently when every second counts.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container split">
|
||||
<div class="glass-card media-card">
|
||||
<img src="<%= config.assets.images.videoThumb %>" alt="Training resources thumbnail" loading="lazy" />
|
||||
</div>
|
||||
<div>
|
||||
<h2>Core training flow</h2>
|
||||
<ul class="checklist">
|
||||
<li>Recognize severe bleeding scenarios</li>
|
||||
<li>Apply cuff and tighten</li>
|
||||
<li>Activate inflation and follow audio instructions</li>
|
||||
<li>Escalate to emergency services and advanced care</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<%- include('partials/footer', { config }) %>
|
||||
Loading…
Reference in a new issue