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

31
src/pages/Home.jsx Normal file
View File

@@ -0,0 +1,31 @@
import Header from "../components/beranda/Header"
import Hero from "../components/beranda/Hero"
import Solusi from "../components/beranda/Solusi"
import Banner from "../components/beranda/Banner"
import Kenapa from "../components/beranda/Kenapa"
import Mitra from '../components/beranda/Mitra'
import Mendukung from "../components/beranda/Mendukung"
import Footer from "../components/contact/Footer"
import MasaDepan from "../components/beranda/MasaDepan"
import WhatsAppButton from "../components/beranda/WhatsAppButon"
function Home() {
return (
<>
<Header />
<Hero />
<Solusi />
<Banner />
<Kenapa />
<Mitra />
<Mendukung />
<MasaDepan />
<Footer />
<WhatsAppButton />
</>
)
}
export default Home