Merge version_22_1777235822594 into main #19

Merged
bender merged 1 commits from version_22_1777235822594 into main 2026-04-26 20:38:51 +00:00
2 changed files with 39 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import ContactPage from "@/pages/ContactPage";
import TeamTestimonialsPage from "@/pages/TeamTestimonialsPage";
import PricingPage from "@/pages/PricingPage";
import PricingSimpleCards from "@/components/sections/pricing/PricingSimpleCards";
import { FaqSection } from "@/components/sections/faq/FaqSection";
export default function App() {
return (
@@ -52,6 +53,9 @@ export default function App() {
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqSection />
</div>
</>
);
}

View File

@@ -0,0 +1,35 @@
import FaqSimple from "@/components/sections/faq/FaqSimple";
const FaqSection = () => {
return (
<FaqSimple
tag="FAQ"
title="Frequently Asked Questions"
description="Find answers to common questions about our services and products."
items={[
{
question: "What is your return policy?",
answer: "We offer a 30-day money-back guarantee on all our plans. If you're not satisfied, simply contact our support team within 30 days of your purchase for a full refund."
},
{
question: "How long does setup take?",
answer: "Setup is instant. As soon as you complete your purchase, you'll receive an email with your login credentials and can start using the platform immediately."
},
{
question: "Do you offer custom enterprise plans?",
answer: "Yes, we offer custom enterprise plans tailored to your specific needs. Please contact our sales team to discuss your requirements and get a custom quote."
},
{
question: "Can I change my plan later?",
answer: "Absolutely. You can upgrade or downgrade your plan at any time from your account dashboard. Changes will be prorated and applied to your next billing cycle."
},
{
question: "What payment methods do you accept?",
answer: "We accept all major credit cards (Visa, Mastercard, American Express) as well as PayPal. For enterprise plans, we also support wire transfers and invoicing."
}
]}
/>
);
};
export default FaqSection;