FT
FAQ Templates

ASSET_SPEC // PRODUCT_ONBOARDING_FAQ

Product Onboarding FAQFAQ template

A card-based FAQ layout designed to guide new users through their first steps and common setup hurdles.

Live_Preview_Environment

Getting Started

New here? Here are the most common questions from our new community members.

How do I start my first project?

Click the "New Project" button in your dashboard and choose a template to begin immediately.

How do integrations work?

Open the integrations directory to review supported tools and setup instructions.

Can I customize the experience?

Tailor every aspect to match your brand's identity through the settings panel.

When_to_Use

Use the product onboarding FAQ for new-user setup flows. The card-based grid with icons walks users through account setup, team invites, and their first project.

Source_Manifest

Source_Inspector // TAILWIND
<section class="mx-auto max-w-7xl px-4 py-16 sm:px-6 lg:px-8">
  <div class="max-w-3xl">
    <h2 class="text-3xl font-bold tracking-tight text-gray-900">Step-by-Step Guide</h2>
    <p class="mt-4 text-lg text-gray-600">New here? Here are the most common questions from our new community members.</p>
  </div>
  <div class="mt-12 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
    <div class="relative flex flex-col rounded-2xl border border-gray-200 p-8 hover:shadow-lg transition-shadow">
      <div class="flex h-12 w-12 items-center justify-center rounded-xl bg-blue-100 text-blue-600 mb-6">
        <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
          <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
        </svg>
      </div>
      <h3 class="text-xl font-bold text-gray-900">Step 1: Account Setup</h3>
      <p class="mt-4 text-gray-600">Complete the required profile fields before creating your first project.</p>
    </div>
    <div class="relative flex flex-col rounded-2xl border border-gray-200 p-8 hover:shadow-lg transition-shadow">
      <div class="flex h-12 w-12 items-center justify-center rounded-xl bg-blue-100 text-blue-600 mb-6">
        <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
          <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
        </svg>
      </div>
      <h3 class="text-xl font-bold text-gray-900">Step 2: Team Invite</h3>
      <p class="mt-4 text-gray-600">Add your teammates from the dashboard to start collaborating immediately.</p>
    </div>
  </div>
</section>
READ_ONLY