Dragon. I see both templates:

TemplatePage.tsx (public site wrapper with HeaderNav + Footer)

DashboardTemplatePage.tsx (dashboard wrapper with Sidebar + TopBar + Footer)

Plus the IBrandBiz palette (💚 #00CB51, 🧡 #FF8B00, etc.)

What to hand Replit (exact files to create/update on WHMCS)

Have Replit build a child theme called ibrandbiz that inherits from six and skins the Client Area + Order Forms to look like your Dashboard/site.

Create these files/folders in WHMCS:

/portal/templates/ibrandbiz/
  theme.yaml
  header.tpl
  footer.tpl
  includes/navbar.tpl
  css/custom.css

1) theme.yaml

Minimal, safe inheritance:

name: IBrandBiz
author: IBrandBiz
parent: six

2) header.tpl

Convert your public site header from TemplatePage.tsx into static HTML here (logo, top bar, any utility strip).

DO include WHMCS’ standard placeholders:

Alerts: {$systemAlert|default:''}

Breadcrumbs: {include file="$template/includes/breadcrumb.tpl"}

Keep a container for page content start.

3) includes/navbar.tpl

Convert your site/Dashboard nav to this file (links like Home, Pricing, Order, Client Login).

Use WHMCS links with {$WEB_ROOT} where appropriate:

Order: {$WEB_ROOT}/cart.php

Client Area: {$WEB_ROOT}/clientarea.php

Login: {$WEB_ROOT}/clientarea.php

Support/Tickets: {$WEB_ROOT}/submitticket.php

4) footer.tpl

Convert your Footer from either template (public site or dashboard) to match your brand.

Keep WHMCS footer hooks at the end:

{include file="$template/includes/generate-password.tpl"}
{include file="$template/includes/linkedjs.tpl"}

5) css/custom.css

Drop your brand system here (variables + overrides).

Map the palette you sent:

:root{
  --ibb-green:#00CB51;
  --ibb-orange:#FF8B00;
  --ibb-dark-green:#30342d;
  --ibb-dark-gray:#231f20;
  --ibb-blue:#274b9b;
  --ibb-olive:#978752;
  --ibb-light:#6dc282;
  --ibb-white:#ffffff;
}

/* Global chrome */
.navbar,.topbar, header.site-header { background: var(--ibb-dark-gray); }
.navbar a, .navbar .dropdown-menu a { color: var(--ibb-white); }

/* Primary actions */
.btn-primary, .badge-primary,
.panel-sidebar .list-group-item.active,
a.link-color {
  background: var(--ibb-green)!important;
  border-color: var(--ibb-green)!important;
  color:#fff!important;
}
.btn-primary:hover { filter: brightness(0.92); }

/* Cards / panels / tables */
.panel, .product, .order-summary, .panel-default { border-radius:14px; }
.table>thead>tr>th { background:#f7f8fa; }

/* Inputs */
input, select, textarea { border-radius:10px; }

/* Pricing emphasis */
.product .price, .product .pricing { font-weight:700; }

/* Footer */
footer.site-footer{ background:#0f0f10; color:#d0d0d0; }


If you use a specific font in your Dashboard, add its @import or <link> in header.tpl or via custom.css, then apply to body.

Order Form Template (no extra files unless needed)

Pick Premium Comparison (or Boxes) in:

System Settings → General Settings → Ordering → Default Order Form Template

Do not fork the orderform. Use custom.css to restyle its cards/buttons so updates don’t break.

The Replit brief (paste this as instructions)

Project: Skin WHMCS to match IBrandBiz Dashboard
Goal: Create /portal/templates/ibrandbiz/ theme that inherits from six, uses our site/Dashboard header, navbar, and footer, and applies IBrandBiz palette/spacing via css/custom.css.
Files to deliver: theme.yaml, header.tpl, includes/navbar.tpl, footer.tpl, css/custom.css.
Sources to convert:

Header/footer markup from TemplatePage.tsx (public site wrapper)

Nav (and optionally header/footer structure) can reference DashboardTemplatePage.tsx for spacing and classes.
Don’ts: Don’t edit /templates/six or orderform core; don’t hardcode absolute URLs for WHMCS pages (use {$WEB_ROOT}).
After upload (we’ll do in admin): Switch theme to IBrandBiz, set order form to premium_comparison, clear template cache.

After Replit uploads

WHMCS Admin → System Settings → General → Template → select IBrandBiz

General → Ordering → Default Order Form Template → premium_comparison

Utilities → System → System Cleanup → Empty Template Cache

Check:

https://portal.ibrandbiz.com/cart.php

https://portal.ibrandbiz.com/clientarea.php