task/1.13
1{{template "base" .}}
2
3{{define "main"}}
4<div class="hero">
5 <h1>Delay gratification, buy intentionally</h1>
6 <p class="hero-subtitle">Schedule email reminders for your purchases. Take time to think before you buy.</p>
7
8 <div class="cta-section">
9 <a href="/submit" class="cta-button">Schedule a Reminder</a>
10 <p class="cta-description">Submit a product URL and we'll remind you later via email</p>
11 </div>
12</div>
13
14<div class="features">
15 <div class="feature-grid">
16 <div class="feature">
17 <h3>🕒 Delay Purchases</h3>
18 <p>Schedule reminders for 3 days, 1 week, 2 weeks, or custom timeframes</p>
19 </div>
20 <div class="feature">
21 <h3>📧 Email Reminders</h3>
22 <p>Get a thoughtful email with your product link when the time is right</p>
23 </div>
24 <div class="feature">
25 <h3>🔒 Privacy First</h3>
26 <p>No passwords, no tracking, no data sales. Just helpful reminders.</p>
27 </div>
28 </div>
29</div>
30
31<div class="philosophy">
32 <h2>Why delay purchases?</h2>
33 <p>In our age of instant gratification, adding friction back to the buying process helps us make more intentional decisions. By scheduling purchase reminders, you give yourself time to consider whether you truly need or want an item.</p>
34
35 <blockquote>
36 "Buy less, buy better. Every delayed purchase is a victory over impulse."
37 </blockquote>
38</div>
39
40{{end}}