Update src/app/contact/page.tsx

This commit is contained in:
2026-03-16 02:15:20 +00:00
parent ce9b5b8f8b
commit 7a6111477b

View File

@@ -5,7 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function ContactPage() {
@@ -94,20 +94,22 @@ export default function ContactPage() {
</div>
<div id="contact-faq" data-section="contact-faq">
<FeatureCardEight
title="Common Questions"
description="Here are answers to questions we frequently receive from potential clients."
features={[
<FaqSplitMedia
title="Contact Support"
description="Get answers to frequently asked questions about our services and support."
faqs={[
{
id: 1,
title: "How quickly can you build my website?", description: "Most websites are built and launched within 48 hours. We prioritize speed without compromising quality.", imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=5", imageAlt: "Quick delivery"},
id: "1", title: "How quickly can you build my website?", content: "Most websites are built and launched within 48 hours. We prioritize speed without compromising quality. Our experienced team works efficiently to get your site online fast."},
{
id: 2,
title: "What if I need changes after launch?", description: "We offer flexible payment plans that include ongoing support and updates. You can make changes anytime based on your plan.", imageSrc: "http://img.b2bpic.net/free-vector/team-work-background-flat-style_23-2147763073.jpg", imageAlt: "Ongoing support"},
id: "2", title: "What if I need changes after launch?", content: "We offer flexible payment plans that include ongoing support and updates. You can make changes anytime based on your plan. Our support team is always available to assist you."},
{
id: 3,
title: "Do you work with small businesses?", description: "Yes! We specialize in working with small and medium-sized businesses. Our flexible pricing works for any budget.", imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=3", imageAlt: "Small business support"},
id: "3", title: "Do you work with small businesses?", content: "Yes! We specialize in working with small and medium-sized businesses. Our flexible pricing works for any budget. We understand your unique challenges and provide tailored solutions."},
]}
imageSrc="http://img.b2bpic.net/free-vector/team-work-background-flat-style_23-2147763073.jpg"
imageAlt="Support illustration"
mediaAnimation="slide-up"
mediaPosition="left"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
@@ -122,4 +124,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}