add hubungi kami

This commit is contained in:
Yogamnan
2025-01-31 14:27:13 +07:00
parent c335fc05f8
commit 153214d438
43 changed files with 771 additions and 94 deletions

23
src/pages/Contact.jsx Normal file
View File

@@ -0,0 +1,23 @@
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/contact/Footer"
function Contact() {
return (
<>
<Header />
<CustomerService />
<FormSection />
<FAQSection />
<BottomCTA />
<Footer />
<WhatsAppButton />
</>
)
}
export default Contact