Copy (rewritten, crisp)

Step 1: Select a Logo
Choose a template. You can download the SVG for free, or become a member to open it in the Logo Composer and add custom text, shapes, and colors.

Title

Logo Templates — Add Step 1 header + instructions (top of page)

Prompt for Replit

On /business-assets/logo-templates, add a small step header at the top of the page (above the grid/list). Use the copy below and keep styling consistent with the dashboard.

Header: Step 1: Select a Logo
Subtitle: Choose a template. You can download the SVG for free, or become a member to open it in the Logo Composer and add custom text, shapes, and colors.

Place this inside the page container, before the templates count (“2 templates available”) and grid.

Mobile-friendly spacing; no layout shifts.

No route or paywall changes required.

Micro-diff (example)

File (adjust if different): client/src/pages/business-assets/LogoTemplates.tsx

--- a/client/src/pages/business-assets/LogoTemplates.tsx
+++ b/client/src/pages/business-assets/LogoTemplates.tsx
@@ -1,6 +1,16 @@
 export default function LogoTemplates() {
   return (
-    <div className="mx-auto max-w-6xl px-4">
+    <div className="mx-auto max-w-6xl px-4">
+      {/* Step header */}
+      <div className="mb-4">
+        <h2 className="text-xl font-semibold">Step 1: Select a Logo</h2>
+        <p className="text-sm text-gray-600">
+          Choose a template. You can <span className="font-medium">download the SVG for free</span>,
+          or <span className="font-medium">become a member to open it in the Logo Composer</span> and add
+          custom text, shapes, and colors.
+        </p>
+      </div>
+
       {/* existing: template count + grid */}
       {/* e.g., <div className="text-sm text-gray-500 mb-3">{templates.length} templates available</div> */}
       {/* e.g., <div className="grid md:grid-cols-2 lg:grid-cols-3 gap-4"> ... </div> */}

Notes

If your page file is named differently (e.g., LogoTemplatesPage.tsx), apply the same block above the list.

Keep existing “X templates available” line below this header.

Use your existing typography utilities; Tailwind shown for clarity.