8-Figure Advisory Board

April 24, 2026

lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum

HTML Box 1Live

lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum

HTML Box 2Code
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Board of Advisors Prompt</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
  :root {
    --navy: #1a2e44;
    --navy-soft: #243a56;
    --cream: #f5f2e8;
    --blue: #6b9bc9;
    --blue-light: #8cb4d9;
    --muted: #6b7a8a;
    --border: rgba(26, 46, 68, 0.12);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.5;
    padding: 48px 32px;
    min-height: 100vh;
  }

  .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .eyebrow {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }

  h1 .accent {
    color: var(--blue);
  }

  .description {
    color: var(--navy);
    opacity: 0.75;
    font-size: 17px;
    line-height: 1.6;
    margin: 24px 0 40px;
    max-width: 720px;
  }

  .board-list {
    background: var(--navy);
    color: var(--cream);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 40px;
  }

  .board-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
  }

  .board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 24px;
    font-size: 15px;
    font-weight: 500;
  }

  .board-members div {
    padding-left: 14px;
    position: relative;
  }

  .board-members div::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-weight: 700;
  }

  .input-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
  }

  textarea {
    width: 100%;
    min-height: 180px;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 12px;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(107, 155, 201, 0.15);
  }

  textarea::placeholder {
    color: var(--muted);
    font-weight: 400;
  }

  .copy-btn {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }

  .copy-btn:hover {
    background: var(--navy);
  }

  .copy-btn:active {
    transform: scale(0.99);
  }

  .copy-btn.copied {
    background: #2d7a4f;
  }

  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0 24px;
  }

  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .divider span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
  }

  .ai-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .ai-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
  }

  .ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }

  .ai-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 18px;
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
  }

  .ai-btn:hover {
    border-color: var(--blue);
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
  }

  .toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
  }

  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  @media (max-width: 600px) {
    body { padding: 32px 20px; }
    .board-list { padding: 24px; }
    .ai-grid { grid-template-columns: repeat(2, 1fr); }
  }
</style>
</head>
<body>
<div class="container">

  <div class="eyebrow">8-Figure Advisory Board</div>
  <h1>Get business advice from<br>the <span class="accent">best in the game.</span></h1>

  <p class="description">
    Paste your business situation below and get a tailored response from an AI acting as a panel of 8 legendary operators — Alex Hormozi, Grant Cardone, Seth Godin, Gary Vaynerchuk, Jordan Belfort, Russell Brunson, Dan Kennedy, and Tony Robbins. Each gives you their take based on their unique playbook, then the AI synthesizes it all into clear next steps.
  </p>

  <div class="board-list">
    <div class="board-title">Who's On The Board</div>
    <div class="board-members">
      <div>Alex Hormozi</div>
      <div>Grant Cardone</div>
      <div>Seth Godin</div>
      <div>Gary Vaynerchuk</div>
      <div>Jordan Belfort</div>
      <div>Russell Brunson</div>
      <div>Dan Kennedy</div>
      <div>Tony Robbins</div>
    </div>
  </div>

  <label class="input-label" for="situation">Your Business Situation</label>
  <textarea
    id="situation"
    placeholder="Describe your business, the challenge or opportunity you're facing, and what you're trying to figure out. The more context, the better the advice..."></textarea>

  <button class="copy-btn" id="copyBtn" onclick="copyPrompt()">Copy Prompt</button>

  <div class="divider"><span>Paste It Into Any AI</span></div>

  <div class="ai-heading">Launch an AI chat</div>
  <div class="ai-sub">Opens in a new tab — just paste your prompt and go.</div>

  <div class="ai-grid">
    <a class="ai-btn" href="https://claude.ai/new" target="_blank" rel="noopener">Claude</a>
    <a class="ai-btn" href="https://chat.openai.com" target="_blank" rel="noopener">ChatGPT</a>
    <a class="ai-btn" href="https://gemini.google.com/app" target="_blank" rel="noopener">Gemini</a>
    <a class="ai-btn" href="https://grok.com" target="_blank" rel="noopener">Grok</a>
    <a class="ai-btn" href="https://www.perplexity.ai" target="_blank" rel="noopener">Perplexity</a>
    <a class="ai-btn" href="https://chat.deepseek.com" target="_blank" rel="noopener">DeepSeek</a>
    <a class="ai-btn" href="https://chat.mistral.ai/chat" target="_blank" rel="noopener">Mistral</a>
    <a class="ai-btn" href="https://copilot.microsoft.com" target="_blank" rel="noopener">Copilot</a>
  </div>

</div>

<div class="toast" id="toast">Prompt copied to clipboard</div>

<script>
  const PROMPT_TEMPLATE = `Imagine you are seeking business advice from a board of highly successful entrepreneurs and business leaders:

- Alex Hormozi — Acquisition.com founder known for scaling businesses
- Grant Cardone — Real estate investor, sales trainer, and author of The 10X Rule
- Seth Godin — Bestselling author, entrepreneur, and marketing expert
- Gary Vaynerchuk — Serial entrepreneur, investor, and internet personality
- Jordan Belfort — Former stockbroker and subject of The Wolf of Wall Street
- Russell Brunson — ClickFunnels co-founder and expert in sales funnels
- Dan Kennedy — Influential direct marketing expert and copywriter
- Tony Robbins — Renowned motivational speaker, author, and life coach

You are presenting your current business challenge or opportunity to this esteemed group to get their insights and recommendations.

MY BUSINESS SITUATION:
{{SITUATION}}

What advice would each of these successful figures likely give based on their unique expertise and perspective? How would they recommend approaching this situation to maximize results? Respond as if they were reacting to my case at a boardroom table.

- Alex Hormozi would suggest...
- Grant Cardone would recommend...
- Seth Godin's perspective would be...
- Gary Vaynerchuk would likely say...
- Jordan Belfort's thoughts on this would be...
- Russell Brunson would advise...
- Dan Kennedy would propose...
- Tony Robbins would encourage...

Provide a detailed response from each individual's point of view, shaped by their business philosophies, areas of expertise, communication styles, and personalities. Where would their advice converge and diverge? Then synthesize their various insights into key takeaways and actionable next steps I can take this week.`;

  function copyPrompt() {
    const situation = document.getElementById('situation').value.trim();
    const btn = document.getElementById('copyBtn');
    const toast = document.getElementById('toast');

    const finalText = situation
      ? PROMPT_TEMPLATE.replace('{{SITUATION}}', situation)
      : PROMPT_TEMPLATE.replace('{{SITUATION}}', '[Paste your business situation, question, or topic here]');

    navigator.clipboard.writeText(finalText).then(() => {
      btn.textContent = '✓ Copied';
      btn.classList.add('copied');
      toast.classList.add('show');

      setTimeout(() => {
        btn.textContent = 'Copy Prompt';
        btn.classList.remove('copied');
        toast.classList.remove('show');
      }, 2200);
    }).catch(() => {
      // Fallback for older browsers
      const ta = document.createElement('textarea');
      ta.value = finalText;
      document.body.appendChild(ta);
      ta.select();
      document.execCommand('copy');
      document.body.removeChild(ta);
      btn.textContent = '✓ Copied';
      btn.classList.add('copied');
      toast.classList.add('show');
      setTimeout(() => {
        btn.textContent = 'Copy Prompt';
        btn.classList.remove('copied');
        toast.classList.remove('show');
      }, 2200);
    });
  }
</script>

</body>
</html>
Related Prompts

Free vs Upgraded

Start simple.
Grow with help.

Free gives you easy tools and prompts for daily life. The Vault gives you the full premium library plus member-only help while you learn AI.

Access The Vault

Upgraded membership

  • Premium app code ready to copy and use yourself
  • Premium prompts ready to copy and use yourself
  • Full apps + prompts library in one place
  • Member support while you learn and build (Vault only)
  • Private group access
  • More apps and prompts every month
Access The Vault

Get a Custom App Built

No set price - talk with me

  • Tell me what app you want built
  • We plan features and timeline together
  • Best if you want it done for you
Talk About My App