Appearance
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
php
<x-blocks.faq-accordion variant="outlined" :faqs="[
[
"question" => 'What is Jetship? Why do I need a Jetship Starter Kit?',
"answer" => 'Jetship is a Laravel Starter Kit 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.'
]
]"
> </x-blocks.faq-accordion>
2. FAQ Accordion
php
<x-blocks.faq-accordion :faqs="[
[
"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.'
]
]"> </x-blocks.faq-accordion>
3. FAQ Accordion Split
php
<x-blocks.faq-accordion variant="split" :faqs="[
[
"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.'
]
]"> </x-blocks.faq-accordion>