|
| 1 | +<template> |
| 2 | + <section class="py-16"> |
| 3 | + <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"> |
| 4 | + <!-- Section Header --> |
| 5 | + <div class="text-center mb-12"> |
| 6 | + <h2 class="text-3xl sm:text-4xl font-bold text-gray-900 dark:text-white mb-4"> |
| 7 | + Frequently Asked <span class="bg-gradient-to-r from-blue-500 to-cyan-500 bg-clip-text text-transparent">Questions</span> |
| 8 | + </h2> |
| 9 | + <p class="text-gray-600 dark:text-gray-400"> |
| 10 | + Everything you need to know about our templates |
| 11 | + </p> |
| 12 | + </div> |
| 13 | + |
| 14 | + <!-- FAQ Accordion --> |
| 15 | + <div class="bg-white/50 dark:bg-gray-900/30 backdrop-blur-sm border border-gray-200 dark:border-gray-700/50 rounded-2xl p-6"> |
| 16 | + <UAccordion :items="faqItems" /> |
| 17 | + </div> |
| 18 | + |
| 19 | + <!-- Contact CTA --> |
| 20 | + <div class="mt-10 text-center"> |
| 21 | + <p class="text-gray-600 dark:text-gray-400 mb-4"> |
| 22 | + Still have questions? |
| 23 | + </p> |
| 24 | + <a |
| 25 | + href="https://github.com/BinarCode/laravel-restify/discussions" |
| 26 | + target="_blank" |
| 27 | + rel="noopener noreferrer" |
| 28 | + class="inline-flex items-center text-blue-500 hover:text-blue-600 font-medium transition-colors" |
| 29 | + > |
| 30 | + <ChatBubbleLeftRightIcon class="w-5 h-5 mr-2" /> |
| 31 | + Ask in GitHub Discussions |
| 32 | + <ArrowTopRightOnSquareIcon class="w-4 h-4 ml-1" /> |
| 33 | + </a> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + </section> |
| 37 | +</template> |
| 38 | + |
| 39 | +<script setup lang="ts"> |
| 40 | +import { |
| 41 | + ChatBubbleLeftRightIcon, |
| 42 | + ArrowTopRightOnSquareIcon |
| 43 | +} from '@heroicons/vue/24/outline' |
| 44 | +
|
| 45 | +const faqItems = [ |
| 46 | + { |
| 47 | + label: 'What happens after I purchase a template?', |
| 48 | + content: 'After purchase, you\'ll receive immediate access to download the template along with complete documentation. You\'ll also get access to our private Discord channel for support and future updates based on your plan\'s security update period.' |
| 49 | + }, |
| 50 | + { |
| 51 | + label: 'Can I use the template for multiple projects?', |
| 52 | + content: 'Yes! Each template license allows you to use it on unlimited personal projects. For commercial projects where you\'re building for clients, each client project requires a separate license. The Free Starter Kit can be used on unlimited projects without restrictions.' |
| 53 | + }, |
| 54 | + { |
| 55 | + label: 'Do I need Laravel Restify installed separately?', |
| 56 | + content: 'No, the templates come with Laravel Restify already integrated and configured. Everything is set up and ready to go. You just need to run the installation commands and you\'re ready to start building.' |
| 57 | + }, |
| 58 | + { |
| 59 | + label: 'What\'s included in the security updates?', |
| 60 | + content: 'Security updates include patches for any vulnerabilities discovered in the template code, dependency updates, and compatibility fixes for new Laravel and PHP versions. The duration varies by plan: 3 months for Starter, 6 months for Essential, 1 year for Pro, and lifetime for Premium.' |
| 61 | + }, |
| 62 | + { |
| 63 | + label: 'Can I request custom features or modifications?', |
| 64 | + content: 'Absolutely! We offer custom template development services. Click the "Get Custom Template" button to start a conversation about your specific requirements. We\'ve built enterprise-grade solutions for companies worldwide.' |
| 65 | + }, |
| 66 | + { |
| 67 | + label: 'Is there a refund policy?', |
| 68 | + content: 'Yes, we offer a 14-day money-back guarantee. If the template doesn\'t meet your expectations or doesn\'t work as documented, contact us for a full refund. The Free Starter Kit is, of course, always free.' |
| 69 | + }, |
| 70 | + { |
| 71 | + label: 'What\'s the difference between MCP Server and MCP Client?', |
| 72 | + content: 'The MCP Server exposes your Laravel data through the Model Context Protocol, allowing AI agents (like Claude) to interact with your application. The MCP Client is a pre-built chat interface that connects to AI models and can use your MCP tools to query and modify data intelligently.' |
| 73 | + } |
| 74 | +] |
| 75 | +</script> |
0 commit comments