Files
rekan_ai_fe/src/pages/Contact.jsx
2025-02-17 09:28:35 +07:00

23 lines
618 B
JavaScript

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