rekan_ai/src/pages/Contact.jsx
2025-02-14 14:08:51 +07:00

23 lines
623 B
JavaScript

import Header from "../components/beranda/Header"
import CustomerService from "../components/contact/CustomerService"
import FormSection from "../components/contact/Form/FormSection"
import FAQSection from "../components/contact/FAQSection"
import BottomCTA from "../components/contact/BottomCTA"
import WhatsAppButton from "../components/beranda/WhatsAppButon"
import Footer from "../components/contact/Footer"
function Contact() {
return (
<>
<Header />
<CustomerService />
<FormSection />
<FAQSection />
<BottomCTA />
<Footer />
<WhatsAppButton />
</>
)
}
export default Contact