1 Commits

Author SHA1 Message Date
ffc95e56c5 Update src/app/page.tsx 2026-05-28 10:51:02 +00:00

View File

@@ -9,7 +9,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -274,17 +274,22 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Visit Us"
title="Come Experience Papadaan Coffee"
description="We invite you to relax, connect, and savor the flavors at our cozy spot in Martapura. Enjoy our unique brews and famous noodles. Open until 11 PM daily."
buttons={[
{ text: "Get Directions", href: "https://maps.app.goo.gl/3Q8Y3Y4Y3Y4Y3Y4Y3" },
{ text: "Call Us", href: "tel:+628115175353" }
<ContactSplitForm
title="Hubungi Kami"
description="Kami senang mendengar dari Anda. Isi formulir di bawah ini atau hubungi kami langsung."
inputs={[
{ name: "name", type: "text", placeholder: "Nama Lengkap Anda", required: true },
{ name: "email", type: "email", placeholder: "Alamat Email Anda", required: true },
{ name: "subject", type: "text", placeholder: "Subjek Pesan", required: true }
]}
background={{
variant: "plain"
textarea={{
name: "message", placeholder: "Pesan Anda", rows: 5,
required: true
}}
buttonText="Kirim Pesan"
imageSrc={getAssetUrl("faq-media")}
imageAlt={getAssetAlt("faq-media", "Seseorang memegang cangkir kopi di kafe")}
mediaPosition="right"
useInvertedBackground={true}
/>
</div>
@@ -292,16 +297,16 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoSrc={getAssetUrl("footer-logo")}
logoAlt={getAssetAlt("footer-logo", "Papadaan Coffee Logo")}
logoAlt={getAssetAlt("footer-logo", "Logo Papadaan Coffee")}
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "About Us", href: "#about" }, { label: "Our Menu", href: "#menu" }] },
{ items: [{ label: "Testimonials", href: "#testimonials" }, { label: "FAQ", href: "#faq" }, { label: "Blog", href: "#blog" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "Get Directions", href: "https://maps.app.goo.gl/3Q8Y3Y4Y3Y4Y3Y4Y3" }, { label: "Call Us", href: "tel:+628115175353" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
{ items: [{ label: "Beranda", href: "#hero" }, { label: "Tentang Kami", href: "#about" }, { label: "Menu Kami", href: "#menu" }] },
{ items: [{ label: "Testimoni", href: "#testimonials" }, { label: "FAQ", href: "#faq" }, { label: "Blog", href: "#blog" }] },
{ items: [{ label: "Kontak", href: "#contact" }, { label: "Dapatkan Petunjuk Arah", href: "https://maps.app.goo.gl/3Q8Y3Y4Y3Y4Y3Y4Y3" }, { label: "Hubungi Kami", href: "tel:+628115175353" }] },
{ items: [{ label: "Kebijakan Privasi", href: "#" }, { label: "Syarat dan Ketentuan", href: "#" }] }
]}
logoText="Papadaan Coffee - Your local favorite."
logoText="Papadaan Coffee - Favorit lokal Anda."
/>
</div>
</ThemeProvider>
);
}
}