[object Object]

← back to Ventura Claw

teaser: gold-accent CTA card linking to /services hub + footer links

4c50012c35fff8db1ee81ee6052a6025da6e6f17 · 2026-05-06 14:30:13 -0700 · Steve

Files touched

Diff

commit 4c50012c35fff8db1ee81ee6052a6025da6e6f17
Author: Steve <steve@designerwallcoverings.com>
Date:   Wed May 6 14:30:13 2026 -0700

    teaser: gold-accent CTA card linking to /services hub + footer links
---
 server/public/coming-soon.html | 59 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/server/public/coming-soon.html b/server/public/coming-soon.html
index 4bb9473..dd4099c 100644
--- a/server/public/coming-soon.html
+++ b/server/public/coming-soon.html
@@ -133,6 +133,54 @@
     margin-top: 18px; font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em;
   }
 
+  /* services CTA — links to live /services hub */
+  .services-cta {
+    display: block;
+    max-width: 640px;
+    margin: 28px 0 0;
+    padding: 24px 28px;
+    background: linear-gradient(135deg, rgba(212,160,74,0.10) 0%, rgba(212,160,74,0.02) 100%);
+    border: 1px solid var(--gold);
+    border-left: 3px solid var(--gold);
+    color: var(--ink);
+    text-decoration: none;
+    transition: background 200ms ease, transform 200ms ease;
+    position: relative;
+    overflow: hidden;
+  }
+  .services-cta:hover {
+    background: linear-gradient(135deg, rgba(212,160,74,0.18) 0%, rgba(212,160,74,0.04) 100%);
+    transform: translateX(2px);
+  }
+  .services-cta::after {
+    content: ""; position: absolute; right: -40px; top: -40px;
+    width: 120px; height: 120px; border-radius: 50%;
+    background: radial-gradient(circle, rgba(212,160,74,0.18), transparent 60%);
+    pointer-events: none;
+  }
+  .services-cta-tag {
+    display: inline-block;
+    font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
+    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
+    color: var(--good); border: 1px solid var(--good); border-radius: 999px;
+    padding: 4px 10px; margin-bottom: 12px;
+  }
+  .services-cta-title {
+    display: block;
+    font-family: var(--serif); font-weight: 500; font-size: 24px;
+    letter-spacing: -0.005em; color: var(--ink); margin-bottom: 8px;
+  }
+  .services-cta-body {
+    display: block;
+    font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 14px;
+  }
+  .services-cta-arrow {
+    display: inline-flex; align-items: center; gap: 6px;
+    font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
+    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
+    color: var(--gold);
+  }
+
   /* connectors strip — purely visual, no backend */
   .connectors {
     max-width: var(--max); margin: 0 auto 80px; padding: 0 28px;
@@ -216,6 +264,13 @@
       <div class="ack" id="ack" role="status" aria-live="polite">Thanks — we'll be in touch.</div>
       <p class="alt">Or email <a href="mailto:info@venturaclaw.com">info@venturaclaw.com</a> with "early access" in the subject.</p>
     </div>
+
+    <a href="/services" class="services-cta">
+      <span class="services-cta-tag">Live now · free</span>
+      <span class="services-cta-title">📋 Small-Business Services Hub</span>
+      <span class="services-cta-body">LLC formation. DBA. EIN. BOI filing. Sales tax permits. Trademark search. 30 services across 6 categories — most free, the rest a small flat fee. Plus an AI assistant that answers anything about starting your business.</span>
+      <span class="services-cta-arrow">Open the hub →</span>
+    </a>
   </section>
 
   <section class="connectors">
@@ -306,6 +361,10 @@
 <footer>
   <span>© 2026 VenturaClaw · Steve Abrams</span>
   <span>
+    <a href="/services">Services</a> ·
+    <a href="/legal-notice">Legal</a> ·
+    <a href="/privacy">Privacy</a> ·
+    <a href="/terms">Terms</a> ·
     <a href="mailto:info@venturaclaw.com">info@venturaclaw.com</a>
   </span>
 </footer>

← 39390b0 /services: per-card 'Not legal advice' badge; /legal-notice:  ·  back to Ventura Claw  ·  /services lead capture: modal form + /api/services-lead JSON 49f1891 →