Skip to content
AeroLaunch

Nerve

AI / Automation / B2B Pro

High-contrast Astro theme for AI platforms, automation studios, and operational technology. A strict editorial grid, live workflow simulator, use-case navigator, human-control trace, ROI calculator, flexible pricing, and one-file configuration.

$59 $49 launch sale
Read the Nerve docs Lifetime updates Personal & client use
A closer look

See Nerve in action

Every page and section is part of the download. Use these as launch-day templates - keep the structure, swap the copy.

Homepage hero - editorial grid, monochrome image, and automated signal carousels
Live workflow simulator with switchable operational scenarios
Department use-case navigator with synchronized image and metrics
Flexible pricing ledger for projects, recurring programs, and enterprise work
17
Generated routes
14
Homepage sections
5
Interactive systems
Astro 7
+ Tailwind v4

Nerve is a complete Astro website system for AI, automation, and operational technology businesses that need to look intelligent without falling into the usual gradient-heavy SaaS aesthetic. A strict four-column grid, oversized editorial typography, alternating near-black and warm-white environments, restrained red signals, monochrome photography, and deliberate motion give the theme a distinct point of view. The demo is written as an intelligent automation company, but the structure also works for AI agent platforms, automation consultancies, workflow software, operations studios, enterprise technology, data products, systems integrators, and productized services. It ships 17 generated static routes, a 14-section homepage, case studies and insight articles on Astro Content Collections, contact and waitlist flows, legal pages, and a section library. The live workflow simulator, department use-case navigator, human-control board, ROI calculator, and flexible pricing ledger make the business model tangible, while src/config/site.ts keeps shared copy, images, scenarios, metrics, assumptions, prices, forms, metadata, and SEO in one place.

Best Fit For

  • AI agent products and automation platforms
  • Workflow software and B2B operational tools
  • Automation consultancies and systems integrators
  • Enterprise technology and data products
  • Productized services selling projects, retainers, or custom programs
  • Internal AI and transformation initiatives

Full Page Set

Every page is real and editable - no placeholders, no "coming soon" stubs.

Home
About
Solutions
Case Studies
Case Study
Insights
Insight Article
Contact
Waitlist
Section Library
Privacy
Terms
404

18 Sections Included

Every section is a ready-to-use Astro component. Add it to any page, customize via config, or remove what you don't need.

Header / Nav
Theme-aware sticky header with sharp CTA, balanced desktop links, and a full-screen mobile menu
Hero
Full-bleed monochrome Unsplash image, oversized editorial headline, dual CTAs, vertical workflow carousel, and horizontal logo carousel
Positioning Statement
Wide scroll-linked statement that brightens as it enters the viewport
Solutions
Single-open service accordion with synchronized image replacement and configurable copy
Live Workflow Simulator
Switchable revenue, support, and finance scenarios with an automated five-step operational trace
Use-case Navigator
Department tabs that replace the image, workflows, supporting copy, and outcome metrics
Capabilities
Four grayscale image-led capability columns for workflow, agents, collaboration, and governance
Human Control
Confidence thresholds, approval policies, working approve / escalate actions, and an animated decision audit trail
Case Studies
Outcome-led editorial case-study cards sourced from Astro Content Collections
ROI Calculator
Interactive ranges for team size, repetitive work, and hourly cost with monthly and annual impact
Pricing Ledger
Horizontal pricing rows for fixed projects, recurring programs, and custom enterprise engagements
Testimonials
Static editorial quote grid with monochrome portraits and named operator roles
Insights
Article cards and full Markdown posts with image hover treatment
FAQ
Single-open FAQ accordion introduced by a continuous oversized marquee
Closing CTA
Full-bleed monochrome photo CTA with wide headline, waitlist action, and scroll-aware reveal
Contact + Waitlist
Configurable demo forms with production action URLs controlled from site.ts
Section Library
Standalone route that documents Nerve's reusable visual and content patterns
Footer
Focused navigation, legal links, example-domain contact details, and a continuous word marquee

What's Included

A strict four-column editorial system with alternating near-black and warm-white sections, oversized typography, and a restrained red signal color
A live workflow simulator with revenue, support, and finance scenarios moving through an automated five-step trace
A department use-case navigator with synchronized images, workflows, copy, and outcome metrics
A human-control board with confidence thresholds, policies, working approval actions, and an animated audit trail
An interactive ROI calculator with configurable ranges and assumptions for recovered time, monthly value, and annual value
A horizontal pricing ledger that supports fixed projects, recurring programs, subscriptions, retainers, and custom enterprise work
Case studies and insight articles on Astro Content Collections, plus contact, waitlist, legal, and section-library routes
One-file configuration for navigation, content, images, scenarios, metrics, ROI assumptions, prices, forms, metadata, and SEO

Operational Proof You Can Interact With

Nerve does more than describe automation. The workflow simulator, department navigator, human-control board, and ROI calculator let buyers see how work moves, where people stay in control, and what the operational value could look like.

One Structure, Several Business Models

The pricing ledger is designed for fixed-scope launches, recurring programs, subscriptions, retainers, and enterprise engagements. Pair it with the use-case navigator and Nerve can sell software, consulting, productized services, or an internal transformation program without changing the visual system.

A Technology Site With a Point of View

A strict grid, sharp controls, monochrome Unsplash photography, oversized editorial type, and a single muted-red signal replace the familiar blue-purple AI gradient. The result feels precise, sober, and recognizable from the first screen.

Set up in minutes

Forms, newsletter, and analytics - pre-wired

Nerve is ready to connect to your preferred providers. Pick from the options below, drop in a single API key, and your contact form, newsletter signup, and analytics are live - no backend, no JavaScript, no glue code.

Contact form

The Contact section's <form> renders with no JS. Set one provider in site.ts; the form action wires automatically.

  • Formspree
    50 free submissions / month, no domain restriction
  • FormSubmit
    Free, no signup - just an email confirmation
  • Netlify Forms
    Free 100/month - Netlify hosting only
Setup guide

Newsletter

The Newsletter form sends subscribers directly to your ESP. The email input name auto-adjusts per provider.

  • Mailchimp
    Standard EMAIL field; honeypot supported
  • ConvertKit (Kit)
    email_address field; works with any form ID
  • Buttondown
    email field; lightest, indie-friendly
Setup guide

Analytics

Layout.astro injects the right script tag based on the provider you choose. No client-side branching.

  • Google Analytics 4
    Paste your G-XXXXXXXXXX measurement ID
  • Plausible
    Privacy-friendly, ~1 KB script, no cookies
  • Umami
    Self-hostable, also cookie-free
Setup guide

Tech Stack

Astro 7 Tailwind v4 TypeScript Responsive SEO Ready Blog Ready

Config-Driven Setup

Every theme uses a single src/config/site.ts file for customization. Change your brand, navigation, form providers, analytics, and section content without touching component code.

Full site.ts reference in the docs

site.ts
// src/config/site.ts
export const siteConfig = {
  name: "Your Company",
  tagline: "Your tagline here",
  url: "https://yourdomain.com",

  navigation: { sticky: true, links: [...], cta: {...} },
  social:     { twitter: "...", github: "...", linkedin: "..." },
  seo:        { title: "...", description: "...", ogImage: "/og.png" },

  // ── Provider switches ────────────────────────────────
  contactForm: { provider: "formspree",  formspreeId: "your-id" },
  newsletter:  { provider: "convertkit", actionUrl: "https://..." },
  analytics:   { provider: "plausible",  plausibleDomain: "you.com" },

  // ── Section data ─────────────────────────────────────
  team, video, timeline, comparison, gallery,
  carousel, tabs, appDownload, map, footer,
} as const;

Full documentation, ready before you buy

Browse the install guide, the site.ts reference, provider setup, deploy instructions, and the Nerve-specific page - all live now.