Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-06-10 12:03:47 +00:00

View File

@@ -5,6 +5,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactText from '@/components/sections/contact/ContactText';
@@ -32,6 +33,7 @@ export default function LandingPage() {
{ name: "Beranda", id: "#hero" },
{ name: "Tentang", id: "#about" },
{ name: "Produk", id: "#products" },
{ name: "Harga", id: "#pricing" },
{ name: "Testimoni", id: "#testimonials" },
{ name: "FAQ", id: "#faq" }
]}
@@ -109,6 +111,35 @@ export default function LandingPage() {
useInvertedBackground={false}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Paket Harga Terbaik"
description="Pilih paket yang paling sesuai dengan kebutuhan kesehatan dan kecantikan Anda."
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
plans={[
{
id: "plan-sop-subarashi", badge: "Basic", price: "Rp. 1.850.000", subtitle: "Perbaikan Sirkulasi & Regenerasi Sel", buttons: [{ text: "Pesan Sekarang", href: "#contact" }],
features: [
"Regenerasi Sel Optimal", "Sirkulasi Darah Lancar", "Kesehatan Kardiovaskular", "Kulit Lebih Kencang & Cerah"
]
},
{
id: "plan-utsukushhii", badge: "Standard", price: "Rp. 1.850.000", subtitle: "Imunitas Kuat & Kecantikan Kulit", buttons: [{ text: "Pesan Sekarang", href: "#contact" }],
features: [
"Imunitas Tubuh Unggul", "Kesehatan Pencernaan", "Kulit Cerah Bercahaya", "Efek Anti-Aging Alami"
]
},
{
id: "plan-combo-premium", badge: "Premium", price: "Rp. 3.600.000", subtitle: "Kesehatan Menyeluruh Maksimal", buttons: [{ text: "Pesan Sekarang", href: "#contact" }],
features: [
"Semua manfaat SOP Subarashi", "Semua manfaat Utsukushhii", "Dukungan Seluler Total", "Vitalitas & Kecantikan Premium"
]
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Apa Kata Mereka?"
@@ -161,7 +192,7 @@ export default function LandingPage() {
logoText="AFC Japan Supplements"
copyrightText="© 2024 AFC Japan Supplements. All rights reserved."
columns={[
{ title: "Navigasi", items: [{ label: "Beranda", href: "#hero" }, { label: "Tentang", href: "#about" }, { label: "Produk", href: "#products" }, { label: "FAQ", href: "#faq" }] },
{ title: "Navigasi", items: [{ label: "Beranda", href: "#hero" }, { label: "Tentang", href: "#about" }, { label: "Produk", href: "#products" }, { label: "Harga", href: "#pricing" }, { label: "FAQ", href: "#faq" }] },
{ title: "Kontak", items: [{ label: "WhatsApp", href: "https://wa.me/6282144003278" }, { label: "Email", href: "mailto:info@afcjapansupplements.com" }] },
{ title: "Legalitas", items: [{ label: "Kebijakan Privasi", href: "#" }, { label: "Syarat & Ketentuan", href: "#" }] }
]}