8 Commits

Author SHA1 Message Date
6d288d9f87 Merge version_2 into main
Merge version_2 into main
2026-06-10 12:05:16 +00:00
02e1b76a1f Update src/app/page.tsx 2026-06-10 12:05:13 +00:00
789949dd45 Merge version_2 into main
Merge version_2 into main
2026-06-10 12:04:31 +00:00
f5089c3a6c Update src/app/page.tsx 2026-06-10 12:04:28 +00:00
dd733cc21c Merge version_2 into main
Merge version_2 into main
2026-06-10 12:03:47 +00:00
69aa3c0e30 Merge version_1 into main
Merge version_1 into main
2026-06-10 12:03:43 +00:00
dd0d695828 Update src/app/page.tsx 2026-06-10 12:03:41 +00:00
979960bc5a Merge version_1 into main
Merge version_1 into main
2026-06-10 12:02:59 +00:00

View File

@@ -5,6 +5,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
@@ -32,6 +33,7 @@ export default function LandingPage() {
{ name: "Beranda", id: "#hero" }, { name: "Beranda", id: "#hero" },
{ name: "Tentang", id: "#about" }, { name: "Tentang", id: "#about" },
{ name: "Produk", id: "#products" }, { name: "Produk", id: "#products" },
{ name: "Harga", id: "#pricing" },
{ name: "Testimoni", id: "#testimonials" }, { name: "Testimoni", id: "#testimonials" },
{ name: "FAQ", id: "#faq" } { name: "FAQ", id: "#faq" }
]} ]}
@@ -109,6 +111,35 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </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"
useInvertedBackground={true}
textboxLayout="default"
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"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTen <TestimonialCardTen
title="Apa Kata Mereka?" title="Apa Kata Mereka?"
@@ -161,7 +192,7 @@ export default function LandingPage() {
logoText="AFC Japan Supplements" logoText="AFC Japan Supplements"
copyrightText="© 2024 AFC Japan Supplements. All rights reserved." copyrightText="© 2024 AFC Japan Supplements. All rights reserved."
columns={[ 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: "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: "#" }] } { title: "Legalitas", items: [{ label: "Kebijakan Privasi", href: "#" }, { label: "Syarat & Ketentuan", href: "#" }] }
]} ]}