order: add recurring missions (frequency dropdown + examples)

This commit is contained in:
Bernt
2026-07-14 14:42:49 +00:00
parent 48ea61cdcc
commit 3c522e39f0
+19 -3
View File
@@ -176,7 +176,8 @@
<h2>What can you order?</h2>
<p>Any visual documentation task that can be completed with a smartphone camera on location.</p>
</div>
<div class="examples-grid">
<div class="examples-grid" style="grid-template-columns:repeat(4,1fr)">
<style>.examples-grid{grid-template-columns:repeat(4,1fr)!important}@media(max-width:1100px){.examples-grid{grid-template-columns:repeat(2,1fr)!important}}@media(max-width:600px){.examples-grid{grid-template-columns:1fr!important}}</style>
<div class="example-card">
<div class="example-count">50</div>
<h3>Storefronts</h3>
@@ -207,6 +208,11 @@
<h3>Rapid Turnaround</h3>
<p>Time-sensitive documentation? Surge missions activate multiple Zoomers simultaneously. Results in hours, not weeks.</p>
</div>
<div class="example-card">
<div class="example-count"></div>
<h3>Recurring Missions</h3>
<p>Monthly storefront audits? Quarterly property inspections? Set up repeating missions with the same parameters. Consistent data over time.</p>
</div>
</div>
</div>
</section>
@@ -319,11 +325,11 @@
</div>
<div class="form-row">
<label for="locations">Number of Locations / Photos</label>
<input type="text" id="locations" name="locations" placeholder="e.g. 50 storefronts, 200 road signs, 10 bridges">
<input type="text" id="locations" name="locations" placeholder="e.g. 50 storefronts on Götgatan, all ST1 flags in Sweden, 10 bridges in Oslo">
</div>
<div class="form-row">
<label for="description">What do you need photographed?</label>
<textarea id="description" name="description" placeholder="Describe the mission: what subjects, angles, locations, and any specific requirements..."></textarea>
<textarea id="description" name="description" placeholder="Describe the mission: what subjects, angles, locations, and any specific requirements.&#10;&#10;Examples:&#10;• All storefronts on Götgatan, Stockholm — once per month&#10;• All ST1 flags in Sweden — every other month&#10;• Bridge condition photos — quarterly&#10;• Road signs in downtown Oslo — one-time, 200 locations"></textarea>
</div>
<div class="form-row">
<label for="timeline">Desired Timeline</label>
@@ -335,6 +341,16 @@
<option value="flexible">Flexible</option>
</select>
</div>
<div class="form-row">
<label for="frequency">Frequency</label>
<select id="frequency" name="frequency">
<option value="">One-time only</option>
<option value="weekly">Weekly</option>
<option value="monthly">Monthly</option>
<option value="quarterly">Quarterly</option>
<option value="custom">Custom schedule — describe below</option>
</select>
</div>
<button type="submit" class="form-submit">Request Quote →</button>
<p style="text-align:center;margin-top:16px;font-size:var(--text-sm);color:var(--text-muted)">Or email us directly at <a href="mailto:hello@quixzoom.com" style="color:var(--blue);font-weight:600">hello@quixzoom.com</a></p>
</form>