Skip to content

FAQ Sections

JetShip offers three variants of fully customizable and beautifully crafted FAQ sections. You can easily modify these to meet your specific requirements. Below, you'll find a list of the available FAQ sections, along with their images and code snippets for direct use in your Blade components.

1. FAQ Accordion outlined

FAQ Accordion Outlined

php
  <x-blocks.faq-accordion-outlined :leftAccordionFaqs="[
        [
          "question" => 'What is Jetship? Why do I need a Jetship Boilerplate?',
          "answer" => 'Jetship is a Laravel boilerplate specifically designed to help you launch your SaaS application quickly and efficiently. It provides pre-built features for user management, subscriptions, payments, and more, saving you significant development time and effort.'
        ],
        [
          "question" => 'Is there a demo available?',
          "answer" => 'Absolutely! We recommend exploring the demo to experience Jetship\'s capabilities firsthand. (Link to Demo)'
        ],
        [
          "question" => 'Which payment providers are supported?',
          "answer" => 'Jetship integrates with popular payment gateways like Stripe and Lemon Squeezy for easy payment processing.'
        ],
        [
          "question" => 'How is the codebase distributed?',
          "answer" => 'Upon purchase, you\'ll receive the Jetship codebase through a secure download link or version control system (e.g., Git) access.'
        ],
        [
          "question" => 'I want to integrate Jetship into my existing project. Should I buy it?',
          "answer" => 'Jetship is designed as a foundation for a new SaaS application. Integrating it into an existing project might require additional development work.'
        ]
      ]"
      :rightAccordionFaqs="[
        [
          "question" => 'How many developers can access the product?',
          "answer" => 'Our licensing plans typically allow access for a certain number of developers. Check the specific plan details for this information.'
        ],
        [
          "question" => 'How can I upgrade the license?',
          "answer" => 'Upgrading your license is easy! We offer a clear upgrade path within your account dashboard.'
        ],
        [
          "question" => 'Can I transfer the license to another person?',
          "answer" => 'Our licenses are generally not transferable to maintain fair use and support.'
        ],
        [
          "question" => 'Can I get a refund?',
          "answer" => 'Due to the digital nature of the product, we are unable to offer refunds after download. We encourage you to carefully review the features and functionalities of Jetship before purchasing.'
        ],
        [
          "question" => 'Can I use Jetship Boilerplate in an open source project?',
          "answer" => 'Our license typically restricts use in open-source projects. These restrictions are put in place to protect our intellectual property, ensure compliance with our licensing terms, and maintain control over how our software is used and shared.'
        ],
      ]"
      > </x-blocks.faq-accordion-outlined>

2. FAQ Accordion

FAQ Accordion

php
  <x-blocks.faq-accordion :faqs="[
      'faqs' => [
              [
                  'id' => 1,
                  'question' => 'What is JetShip? Why do I need a JetShip Boilerplate?',
                  'answer' =>
                      'JetShip is a Laravel boilerplate specifically designed to help you launch your SaaS application quickly and efficiently. It provides pre-built features for user management, subscriptions, payments, and more, saving you significant development time and effort.',
              ],
              [
                  'id' => 2,
                  'question' => 'Is there a demo available?',
                  'answer' =>
                      'Absolutely! We recommend exploring the demo to experience JetShip\'s capabilities firsthand. (Link to Demo)',
              ],
              [
                  'id' => 3,
                  'question' => 'Which payment providers are supported?',
                  'answer' =>
                      'JetShip integrates with popular payment gateways like Stripe and Lemon Squeezy for easy payment processing.',
              ],
              [
                  'id' => 4,
                  'question' => 'How is the codebase distributed?',
                  'answer' =>
                      'Once you complete your purchase, you\'ll get access to the Jetship codebase via GitHub, and you can easily download the design files directly from customer portal.',
              ],
              [
                  'id' => 5,
                  'question' => 'I want to integrate JetShip into my existing project. Should I buy it?',
                  'answer' =>
                      'JetShip is designed as a foundation for a new SaaS application. Integrating it into an existing project might require additional development work.',
              ],
          ],
  ]"> </x-blocks.faq-accordion>

3. FAQ Accordion Split

FAQ Accordion Split

php
  <x-blocks.faq-accordion-split :faqs="[
      [
          'id' => 1,
          'question' => __('What is ChatFlow AI, and how does it benefit my business?'),
          'answer' => __(
              'ChatFlow AI is an AI-powered customer support chatbot that automates responses to common queries, provides personalized assistance, and enhances customer engagement, helping you save time and improve satisfaction.',
          ),
      ],
      [
          'id' => 2,
          'question' => __('Is there a demo available?'),
          'answer' => __(
              'Yes, you can experience a live demo of ChatFlow AI by clicking on the \'Live Demo\' button at the top of this page.',
          ),
      ],
      [
          'id' => 3,
          'question' => __('What platforms does ChatFlow AI support?'),
          'answer' => __(
              'ChatFlow AI integrates seamlessly with multiple platforms, including websites, mobile apps, and popular messaging services like WhatsApp, Facebook Messenger, and Slack.',
          ),
      ],
      [
          'id' => 4,
          'question' => __('How does the pricing work?'),
          'answer' => __(
              'Our pricing plans are flexible and designed to meet the needs of businesses of all sizes. You can choose from monthly or annual subscriptions, with special discounts for the first 100 customers.',
          ),
      ],
      [
          'id' => 5,
          'question' => __('Can I customize ChatFlow AI for my specific industry?'),
          'answer' => __(
              'Absolutely! ChatFlow AI allows you to train the chatbot on your unique data, ensuring it understands your specific industry needs and provides tailored responses.',
          ),
      ],
      [
          'id' => 6,
          'question' => __('Do I need technical expertise to set up ChatFlow AI?'),
          'answer' => __(
              'No, ChatFlow AI is designed to be easy to set up with minimal technical knowledge. Our user-friendly dashboard and comprehensive documentation guide you through every step.',
          ),
      ],
  ]"> </x-blocks.faq-accordion-split>