Merge version_1 into main #2

Merged
bender merged 3 commits from version_1 into main 2026-03-10 13:07:17 +00:00
3 changed files with 95 additions and 342 deletions

View File

@@ -12,17 +12,15 @@ import { Star, Factory, Truck } from "lucide-react";
export default function AboutPage() {
const footerColumns = [
{
title: "Perusahaan",
items: [
title: "Perusahaan", items: [
{ label: "Tentang Kami", href: "/about" },
{ label: "Produk", href: "/" },
{ label: "Produk", href: "/products" },
{ label: "Proyek", href: "/" },
{ label: "Program Distributor", href: "/" },
],
},
{
title: "Kontak",
items: [
title: "Kontak", items: [
{ label: "📞 (0267) 437304", href: "tel:+62267437304" },
{ label: "💬 WhatsApp", href: "https://wa.me/+6287771234567" },
{ label: "📍 Jl. Raya Klari No.35, Karawang", href: "https://maps.google.com/?q=Jl.+Raya+Klari+No.35+Gintungkerta+Klari+Karawang" },
@@ -30,8 +28,7 @@ export default function AboutPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Kebijakan Privasi", href: "#" },
{ label: "Syarat & Ketentuan", href: "#" },
{ label: "Kebijakan Pengembalian", href: "#" },
@@ -58,14 +55,12 @@ export default function AboutPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Products", id: "products" },
{ name: "Products", id: "/products" },
{ name: "Why Tanal", id: "why-tanal" },
{ name: "Contact", id: "contact" },
]}
button={{
text: "Call Now",
href: "tel:+62267437304",
}}
text: "Call Now", href: "tel:+62267437304"}}
/>
</div>
@@ -75,15 +70,11 @@ export default function AboutPage() {
description="Kami adalah produsen cat terpercaya yang telah melayani ribuan pelanggan di Jawa Barat. Dengan pabrik modern di Karawang, kami berkomitmen memberikan produk berkualitas dengan harga kompetitif."
buttons={[
{
text: "🏭 Kunjungi Pabrik",
href: "tel:+62267437304",
},
text: "🏭 Kunjungi Pabrik", href: "tel:+62267437304"},
{
text: "📋 Minta Katalog",
href: "https://wa.me/+6287771234567",
},
text: "📋 Minta Katalog", href: "https://wa.me/+6287771234567"},
]}
imageSrc="http://img.b2bpic.net/free-photo/apricots-multiple-trays_417767-369.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/apricots-multiple-trays_417767-369.jpg"
imageAlt="Pabrik Cat Tanal Paint Karawang"
showDimOverlay={true}
/>
@@ -93,22 +84,17 @@ export default function AboutPage() {
<AboutMetric
title="Pencapaian Kami dalam Melayani Industri Konstruksi dan Distribusi di Jawa Barat"
useInvertedBackground={false}
metricsAnimation="none"
metrics={[
{
icon: Star,
label: "Rating Google",
value: "4.3/5",
},
label: "Rating Google", value: "4.3/5"},
{
icon: Factory,
label: "Tahun Berpengalaman",
value: "15+",
},
label: "Tahun Berpengalaman", value: "15+"},
{
icon: Truck,
label: "Proyek Selesai",
value: "1000+",
},
label: "Proyek Selesai", value: "1000+"},
]}
/>
</div>
@@ -119,24 +105,19 @@ export default function AboutPage() {
animationType="reveal-blur"
buttons={[
{
text: "📄 Daftar Distributor Sekarang",
href: "https://wa.me/+6287771234567?text=Saya%20ingin%20menjadi%20distributor%20Tanal%20Paint",
},
text: "📄 Daftar Distributor Sekarang", href: "https://wa.me/+6287771234567?text=Saya%20ingin%20menjadi%20distributor%20Tanal%20Paint"},
{
text: "💬 Hubungi Tim Kami",
href: "tel:+62267437304",
},
text: "💬 Hubungi Tim Kami", href: "tel:+62267437304"},
]}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487042.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487042.jpg"
imageAlt="Pabrik Cat Tanal Paint Karawang"
logoText="Tanal Paint"
copyrightText="© 2025 PT Tanu Alvindo Perkasa. Semua hak dilindungi."

View File

@@ -15,24 +15,22 @@ export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Products", id: "products" },
{ name: "Products", id: "/products" },
{ name: "Why Tanal", id: "why-tanal" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Perusahaan",
items: [
title: "Perusahaan", items: [
{ label: "Tentang Kami", href: "/about" },
{ label: "Produk", href: "/" },
{ label: "Produk", href: "/products" },
{ label: "Proyek", href: "/" },
{ label: "Program Distributor", href: "/" },
],
},
{
title: "Kontak",
items: [
title: "Kontak", items: [
{ label: "📞 (0267) 437304", href: "tel:+62267437304" },
{ label: "💬 WhatsApp", href: "https://wa.me/+6287771234567" },
{ label: "📍 Jl. Raya Klari No.35, Karawang", href: "https://maps.google.com/?q=Jl.+Raya+Klari+No.35+Gintungkerta+Klari+Karawang" },
@@ -40,8 +38,7 @@ export default function HomePage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Kebijakan Privasi", href: "#" },
{ label: "Syarat & Ketentuan", href: "#" },
{ label: "Kebijakan Pengembalian", href: "#" },
@@ -68,14 +65,12 @@ export default function HomePage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Products", id: "products" },
{ name: "Products", id: "/products" },
{ name: "Why Tanal", id: "why-tanal" },
{ name: "Contact", id: "contact" },
]}
button={{
text: "Call Now",
href: "tel:+62267437304",
}}
text: "Call Now", href: "tel:+62267437304"}}
/>
</div>
@@ -85,15 +80,11 @@ export default function HomePage() {
description="Produsen Cat Berkualitas untuk Proyek & Distribusi. Diproduksi langsung di Karawang dengan standar kualitas terpercaya untuk kontraktor, proyek pembangunan, dan jaringan distributor di Jawa Barat."
buttons={[
{
text: "📞 Hubungi Sekarang",
href: "tel:+62267437304",
},
text: "📞 Hubungi Sekarang", href: "tel:+62267437304"},
{
text: "💬 WhatsApp",
href: "https://wa.me/+6287771234567",
},
text: "💬 WhatsApp", href: "https://wa.me/+6287771234567"},
]}
imageSrc="http://img.b2bpic.net/free-photo/apricots-multiple-trays_417767-369.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/apricots-multiple-trays_417767-369.jpg"
imageAlt="Pabrik Cat Tanal Paint Karawang"
showDimOverlay={true}
/>
@@ -103,27 +94,20 @@ export default function HomePage() {
<AboutMetric
title="Dipercaya oleh Ribuan Pelanggan di Jawa Barat"
useInvertedBackground={false}
metricsAnimation="none"
metrics={[
{
icon: Star,
label: "Google Reviews",
value: "4,330+",
},
label: "Google Reviews", value: "4,330+"},
{
icon: Factory,
label: "Pabrik Lokal",
value: "Karawang",
},
label: "Pabrik Lokal", value: "Karawang"},
{
icon: Truck,
label: "Area Layanan",
value: "Jawa Barat",
},
label: "Area Layanan", value: "Jawa Barat"},
{
icon: Award,
label: "Kualitas",
value: "Terjamin",
},
label: "Kualitas", value: "Terjamin"},
]}
/>
</div>
@@ -134,59 +118,27 @@ export default function HomePage() {
description="Kami menyediakan berbagai jenis cat berkualitas tinggi untuk kebutuhan proyek dan distribusi"
features={[
{
id: "cat-tembok",
title: "Cat Tembok",
description: "Cat dinding berkualitas premium dengan daya sebar luas dan hasil finishing sempurna untuk interior dan eksterior",
tag: "Populer",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-colorful-paint-cans-arrangement_23-2149601074.jpg?_wi=1",
imageAlt: "cat tembok kaleng besar warna",
buttons: [
id: "cat-tembok", title: "Cat Tembok", description: "Cat dinding berkualitas premium dengan daya sebar luas dan hasil finishing sempurna untuk interior dan eksterior", tag: "Populer", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-colorful-paint-cans-arrangement_23-2149601074.jpg", imageAlt: "cat tembok kaleng besar warna", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
{
id: "cat-industrial",
title: "Cat Industrial",
description: "Coating industrial dengan proteksi korosi tinggi untuk baja, mesin, dan struktur bangunan komersial",
tag: "Profesional",
imageSrc: "http://img.b2bpic.net/free-photo/male-painter-dressed-hazmat-suit-inside-car-shop_23-2149750022.jpg?_wi=1",
imageAlt: "cat industrial coating baja struktur",
buttons: [
id: "cat-industrial", title: "Cat Industrial", description: "Coating industrial dengan proteksi korosi tinggi untuk baja, mesin, dan struktur bangunan komersial", tag: "Profesional", imageSrc: "http://img.b2bpic.net/free-photo/male-painter-dressed-hazmat-suit-inside-car-shop_23-2149750022.jpg", imageAlt: "cat industrial coating baja struktur", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
{
id: "primer",
title: "Primer",
description: "Primer berkualitas untuk persiapan permukaan optimal sebelum aplikasi cat utama",
tag: "Dasar",
imageSrc: "http://img.b2bpic.net/free-photo/cans-with-orange-yellow-paint-high-angle_23-2149601024.jpg?_wi=1",
imageAlt: "primer cat dasar persiapan permukaan",
buttons: [
id: "primer", title: "Primer", description: "Primer berkualitas untuk persiapan permukaan optimal sebelum aplikasi cat utama", tag: "Dasar", imageSrc: "http://img.b2bpic.net/free-photo/cans-with-orange-yellow-paint-high-angle_23-2149601024.jpg", imageAlt: "primer cat dasar persiapan permukaan", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
{
id: "protective",
title: "Protective Coating",
description: "Lapisan pelindung khusus untuk perlindungan maksimal terhadap cuaca dan keausan",
tag: "Perlindungan",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-with-paint_23-2149714283.jpg?_wi=1",
imageAlt: "protective coating weather resistant paint",
buttons: [
id: "protective", title: "Protective Coating", description: "Lapisan pelindung khusus untuk perlindungan maksimal terhadap cuaca dan keausan", tag: "Perlindungan", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-with-paint_23-2149714283.jpg", imageAlt: "protective coating weather resistant paint", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
]}
@@ -202,58 +154,22 @@ export default function HomePage() {
description="Kami adalah produsen cat terpercaya dengan komitmen terhadap kualitas, harga kompetitif, dan layanan terbaik"
features={[
{
id: "direct-production",
title: "Produksi Langsung",
description: "Diproduksi langsung oleh pabrik kami di Karawang dengan kontrol kualitas ketat",
tag: "Terpercaya",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-frit-glass-plastic-container_107420-74211.jpg?_wi=1",
imageAlt: "pabrik produksi langsung cat manufacturing",
buttons: [],
id: "direct-production", title: "Produksi Langsung", description: "Diproduksi langsung oleh pabrik kami di Karawang dengan kontrol kualitas ketat", tag: "Terpercaya", imageSrc: "http://img.b2bpic.net/free-photo/close-up-frit-glass-plastic-container_107420-74211.jpg", imageAlt: "pabrik produksi langsung cat manufacturing", buttons: [],
},
{
id: "quality-assured",
title: "Kualitas Terjamin",
description: "Standar kualitas internasional dengan material premium dan hasil finishing sempurna",
tag: "Premium",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-floor_23-2149930983.jpg?_wi=1",
imageAlt: "quality control testing cat paint standard",
buttons: [],
id: "quality-assured", title: "Kualitas Terjamin", description: "Standar kualitas internasional dengan material premium dan hasil finishing sempurna", tag: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-floor_23-2149930983.jpg", imageAlt: "quality control testing cat paint standard", buttons: [],
},
{
id: "wide-coverage",
title: "Daya Sebar Luas",
description: "Efisiensi tinggi menghemat biaya proyek dengan hasil maksimal per liter",
tag: "Efisien",
imageSrc: "http://img.b2bpic.net/free-photo/man-painting-car-door-side-view_23-2149714298.jpg?_wi=1",
imageAlt: "cat application dinding coverage hasil maksimal",
buttons: [],
id: "wide-coverage", title: "Daya Sebar Luas", description: "Efisiensi tinggi menghemat biaya proyek dengan hasil maksimal per liter", tag: "Efisien", imageSrc: "http://img.b2bpic.net/free-photo/man-painting-car-door-side-view_23-2149714298.jpg", imageAlt: "cat application dinding coverage hasil maksimal", buttons: [],
},
{
id: "competitive-price",
title: "Harga Kompetitif",
description: "Harga terbaik di pasaran tanpa mengorbankan kualitas untuk proyek dan distributor",
tag: "Hemat",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-minded-man-pointing-his-mind-about-money_176420-2954.jpg?_wi=1",
imageAlt: "harga kompetitif affordable pricing value",
buttons: [],
id: "competitive-price", title: "Harga Kompetitif", description: "Harga terbaik di pasaran tanpa mengorbankan kualitas untuk proyek dan distributor", tag: "Hemat", imageSrc: "http://img.b2bpic.net/free-photo/portrait-minded-man-pointing-his-mind-about-money_176420-2954.jpg", imageAlt: "harga kompetitif affordable pricing value", buttons: [],
},
{
id: "project-support",
title: "Support Proyek",
description: "Tim profesional siap memberikan konsultasi dan dukungan supply untuk kebutuhan proyek besar",
tag: "Dukungan",
imageSrc: "http://img.b2bpic.net/free-photo/sales-assistant-being-employed-customer-care-support-job-working-telemarketing-call-center-helpdesk-female-receptionist-with-helpline-service-helping-clients-remote-communication_482257-43021.jpg?_wi=1",
imageAlt: "project support team konsultasi profesional",
buttons: [],
id: "project-support", title: "Support Proyek", description: "Tim profesional siap memberikan konsultasi dan dukungan supply untuk kebutuhan proyek besar", tag: "Dukungan", imageSrc: "http://img.b2bpic.net/free-photo/sales-assistant-being-employed-customer-care-support-job-working-telemarketing-call-center-helpdesk-female-receptionist-with-helpline-service-helping-clients-remote-communication_482257-43021.jpg", imageAlt: "project support team konsultasi profesional", buttons: [],
},
{
id: "distributor-friendly",
title: "Ramah Distributor",
description: "Program khusus distributor dengan harga menarik, training, dan dukungan pemasaran penuh",
tag: "Kerjasama",
imageSrc: "http://img.b2bpic.net/free-photo/project-manager-sharing-insight-about-new-strategy-with-new-employee_482257-90815.jpg?_wi=1",
imageAlt: "distributor network kerjasama bisnis",
buttons: [],
id: "distributor-friendly", title: "Ramah Distributor", description: "Program khusus distributor dengan harga menarik, training, dan dukungan pemasaran penuh", tag: "Kerjasama", imageSrc: "http://img.b2bpic.net/free-photo/project-manager-sharing-insight-about-new-strategy-with-new-employee_482257-90815.jpg", imageAlt: "distributor network kerjasama bisnis", buttons: [],
},
]}
animationType="slide-up"
@@ -271,53 +187,17 @@ export default function HomePage() {
animationType="slide-up"
testimonials={[
{
id: "1",
name: "Ilfan Nugraha",
handle: "Kontraktor Proyek",
testimonial: "Untuk project di tempat saya, produknya bagus. Kualitas cat tembok Tanal Paint sangat memuaskan dan daya sebarnya luas.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-black-auto-mechanic-workshop_637285-9406.jpg?_wi=1",
imageAlt: "Ilfan Nugraha",
},
id: "1", name: "Ilfan Nugraha", handle: "Kontraktor Proyek", testimonial: "Untuk project di tempat saya, produknya bagus. Kualitas cat tembok Tanal Paint sangat memuaskan dan daya sebarnya luas.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-black-auto-mechanic-workshop_637285-9406.jpg", imageAlt: "Ilfan Nugraha"},
{
id: "2",
name: "Bento Harianja",
handle: "Distributor Bandung",
testimonial: "Beli ke salah satu toko bangunan karena referensi tukang di Gedebage Bandung. Pelanggan saya puas dengan kualitas dan harga Tanal Paint.",
imageSrc: "http://img.b2bpic.net/free-photo/serious-confident-entrepreneur-standing-front-colleagues_1262-15161.jpg?_wi=1",
imageAlt: "Bento Harianja",
},
id: "2", name: "Bento Harianja", handle: "Distributor Bandung", testimonial: "Beli ke salah satu toko bangunan karena referensi tukang di Gedebage Bandung. Pelanggan saya puas dengan kualitas dan harga Tanal Paint.", imageSrc: "http://img.b2bpic.net/free-photo/serious-confident-entrepreneur-standing-front-colleagues_1262-15161.jpg", imageAlt: "Bento Harianja"},
{
id: "3",
name: "Ahhmad",
handle: "Penggemar Produk",
testimonial: "Awalnya saya kira ini hanya kantor penjualan, rupanya pabrik juga. Senang menemukan produsen cat berkualitas langsung dari Karawang.",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-bearded-man-posing_176420-30293.jpg?_wi=1",
imageAlt: "Ahhmad",
},
id: "3", name: "Ahhmad", handle: "Penggemar Produk", testimonial: "Awalnya saya kira ini hanya kantor penjualan, rupanya pabrik juga. Senang menemukan produsen cat berkualitas langsung dari Karawang.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-bearded-man-posing_176420-30293.jpg", imageAlt: "Ahhmad"},
{
id: "4",
name: "Siti Rahmaniyah",
handle: "Pemilik Toko Material",
testimonial: "Cat Tanal Paint selalu habis di toko saya. Kualitas bagus, harga bersaing, dan customer service responsif. Rekomendasi terbaik!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1",
imageAlt: "Siti Rahmaniyah",
},
id: "4", name: "Siti Rahmaniyah", handle: "Pemilik Toko Material", testimonial: "Cat Tanal Paint selalu habis di toko saya. Kualitas bagus, harga bersaing, dan customer service responsif. Rekomendasi terbaik!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Siti Rahmaniyah"},
{
id: "5",
name: "Rudi Hermawan",
handle: "Tukang Cat Profesional",
testimonial: "Sudah 5 tahun menggunakan Tanal Paint. Konsisten kualitas, tahan lama, dan hasil finishing selalu rapi. Cat pilihan tukang terbaik.",
imageSrc: "http://img.b2bpic.net/free-photo/young-male-standing-with-crossed-arms-blue-shirt-cap-looking-confident-front-view_176474-57755.jpg?_wi=1",
imageAlt: "Rudi Hermawan",
},
id: "5", name: "Rudi Hermawan", handle: "Tukang Cat Profesional", testimonial: "Sudah 5 tahun menggunakan Tanal Paint. Konsisten kualitas, tahan lama, dan hasil finishing selalu rapi. Cat pilihan tukang terbaik.", imageSrc: "http://img.b2bpic.net/free-photo/young-male-standing-with-crossed-arms-blue-shirt-cap-looking-confident-front-view_176474-57755.jpg", imageAlt: "Rudi Hermawan"},
{
id: "6",
name: "Dewi Kusuma",
handle: "Developer Properti",
testimonial: "Untuk perumahan skala besar, kami percaya Tanal Paint. Supply terpercaya, kualitas konsisten, dan support tim sangat membantu.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-indoors_23-2149927558.jpg?_wi=1",
imageAlt: "Dewi Kusuma",
},
id: "6", name: "Dewi Kusuma", handle: "Developer Properti", testimonial: "Untuk perumahan skala besar, kami percaya Tanal Paint. Supply terpercaya, kualitas konsisten, dan support tim sangat membantu.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-indoors_23-2149927558.jpg", imageAlt: "Dewi Kusuma"},
]}
speed={35}
/>
@@ -329,24 +209,19 @@ export default function HomePage() {
animationType="reveal-blur"
buttons={[
{
text: "📄 Daftar Jadi Distributor",
href: "https://wa.me/+6287771234567?text=Saya%20tertarik%20menjadi%20distributor%20Tanal%20Paint",
},
text: "📄 Daftar Jadi Distributor", href: "https://wa.me/+6287771234567?text=Saya%20tertarik%20menjadi%20distributor%20Tanal%20Paint"},
{
text: "💼 Lihat Benefit Distributor",
href: "/about",
},
text: "💼 Lihat Benefit Distributor", href: "/about"},
]}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487042.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487042.jpg"
imageAlt="Pabrik Cat Tanal Paint Karawang"
logoText="Tanal Paint"
copyrightText="© 2025 PT Tanu Alvindo Perkasa. Semua hak dilindungi."

View File

@@ -41,9 +41,7 @@ export default function ProductsPage() {
id: item.id,
}))}
button={{
text: "Call Now",
href: "tel:+62267437304",
}}
text: "Call Now", href: "tel:+62267437304"}}
/>
</div>
@@ -53,15 +51,11 @@ export default function ProductsPage() {
description="Kategori lengkap cat berkualitas tinggi untuk setiap kebutuhan proyek dan distribusi di Jawa Barat"
buttons={[
{
text: "📞 Hubungi Sekarang",
href: "tel:+62267437304",
},
text: "📞 Hubungi Sekarang", href: "tel:+62267437304"},
{
text: "💬 WhatsApp",
href: "https://wa.me/+6287771234567",
},
text: "💬 WhatsApp", href: "https://wa.me/+6287771234567"},
]}
imageSrc="http://img.b2bpic.net/free-photo/apricots-multiple-trays_417767-369.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/apricots-multiple-trays_417767-369.jpg"
imageAlt="Pabrik Cat Tanal Paint Karawang"
showDimOverlay={true}
/>
@@ -76,45 +70,21 @@ export default function ProductsPage() {
useInvertedBackground={false}
features={[
{
id: "cat-tembok",
title: "Cat Tembok",
description: "Cat dinding berkualitas premium dengan daya sebar luas dan hasil finishing sempurna untuk interior dan eksterior",
tag: "Populer",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-colorful-paint-cans-arrangement_23-2149601074.jpg?_wi=2",
imageAlt: "cat tembok kaleng besar warna",
buttons: [
id: "cat-tembok", title: "Cat Tembok", description: "Cat dinding berkualitas premium dengan daya sebar luas dan hasil finishing sempurna untuk interior dan eksterior", tag: "Populer", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-colorful-paint-cans-arrangement_23-2149601074.jpg", imageAlt: "cat tembok kaleng besar warna", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
{
id: "cat-industrial",
title: "Cat Industrial",
description: "Coating industrial dengan proteksi korosi tinggi untuk baja, mesin, dan struktur bangunan komersial",
tag: "Profesional",
imageSrc: "http://img.b2bpic.net/free-photo/male-painter-dressed-hazmat-suit-inside-car-shop_23-2149750022.jpg?_wi=2",
imageAlt: "cat industrial coating baja struktur",
buttons: [
id: "cat-industrial", title: "Cat Industrial", description: "Coating industrial dengan proteksi korosi tinggi untuk baja, mesin, dan struktur bangunan komersial", tag: "Profesional", imageSrc: "http://img.b2bpic.net/free-photo/male-painter-dressed-hazmat-suit-inside-car-shop_23-2149750022.jpg", imageAlt: "cat industrial coating baja struktur", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
{
id: "primer",
title: "Primer",
description: "Primer berkualitas untuk persiapan permukaan optimal sebelum aplikasi cat utama",
tag: "Dasar",
imageSrc: "http://img.b2bpic.net/free-photo/cans-with-orange-yellow-paint-high-angle_23-2149601024.jpg?_wi=2",
imageAlt: "primer cat dasar persiapan permukaan",
buttons: [
id: "primer", title: "Primer", description: "Primer berkualitas untuk persiapan permukaan optimal sebelum aplikasi cat utama", tag: "Dasar", imageSrc: "http://img.b2bpic.net/free-photo/cans-with-orange-yellow-paint-high-angle_23-2149601024.jpg", imageAlt: "primer cat dasar persiapan permukaan", buttons: [
{
text: "Minta Harga",
href: "tel:+62267437304",
},
text: "Minta Harga", href: "tel:+62267437304"},
],
},
]}
@@ -125,27 +95,20 @@ export default function ProductsPage() {
<AboutMetric
title="Kualitas Produk Kami Dalam Angka"
useInvertedBackground={false}
metricsAnimation="none"
metrics={[
{
icon: Star,
label: "Rating Google",
value: "4.8/5",
},
label: "Rating Google", value: "4.8/5"},
{
icon: Truck,
label: "Pengiriman Cepat",
value: "1-2 Hari",
},
label: "Pengiriman Cepat", value: "1-2 Hari"},
{
icon: Factory,
label: "Pabrik Resmi",
value: "Karawang",
},
label: "Pabrik Resmi", value: "Karawang"},
{
icon: Award,
label: "Garansi Kualitas",
value: "100%",
},
label: "Garansi Kualitas", value: "100%"},
]}
/>
</div>
@@ -159,53 +122,17 @@ export default function ProductsPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Ilfan Nugraha",
handle: "Kontraktor Proyek",
testimonial: "Untuk project di tempat saya, produknya bagus. Kualitas cat tembok Tanal Paint sangat memuaskan dan daya sebarnya luas.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-black-auto-mechanic-workshop_637285-9406.jpg?_wi=2",
imageAlt: "Ilfan Nugraha",
},
id: "1", name: "Ilfan Nugraha", handle: "Kontraktor Proyek", testimonial: "Untuk project di tempat saya, produknya bagus. Kualitas cat tembok Tanal Paint sangat memuaskan dan daya sebarnya luas.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-black-auto-mechanic-workshop_637285-9406.jpg", imageAlt: "Ilfan Nugraha"},
{
id: "2",
name: "Bento Harianja",
handle: "Distributor Bandung",
testimonial: "Beli ke salah satu toko bangunan karena referensi tukang di Gedebage Bandung. Pelanggan saya puas dengan kualitas dan harga Tanal Paint.",
imageSrc: "http://img.b2bpic.net/free-photo/serious-confident-entrepreneur-standing-front-colleagues_1262-15161.jpg?_wi=2",
imageAlt: "Bento Harianja",
},
id: "2", name: "Bento Harianja", handle: "Distributor Bandung", testimonial: "Beli ke salah satu toko bangunan karena referensi tukang di Gedebage Bandung. Pelanggan saya puas dengan kualitas dan harga Tanal Paint.", imageSrc: "http://img.b2bpic.net/free-photo/serious-confident-entrepreneur-standing-front-colleagues_1262-15161.jpg", imageAlt: "Bento Harianja"},
{
id: "3",
name: "Ahhmad",
handle: "Penggemar Produk",
testimonial: "Awalnya saya kira ini hanya kantor penjualan, rupanya pabrik juga. Senang menemukan produsen cat berkualitas langsung dari Karawang.",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-bearded-man-posing_176420-30293.jpg?_wi=2",
imageAlt: "Ahhmad",
},
id: "3", name: "Ahhmad", handle: "Penggemar Produk", testimonial: "Awalnya saya kira ini hanya kantor penjualan, rupanya pabrik juga. Senang menemukan produsen cat berkualitas langsung dari Karawang.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-bearded-man-posing_176420-30293.jpg", imageAlt: "Ahhmad"},
{
id: "4",
name: "Siti Rahmaniyah",
handle: "Pemilik Toko Material",
testimonial: "Cat Tanal Paint selalu habis di toko saya. Kualitas bagus, harga bersaing, dan customer service responsif. Rekomendasi terbaik!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2",
imageAlt: "Siti Rahmaniyah",
},
id: "4", name: "Siti Rahmaniyah", handle: "Pemilik Toko Material", testimonial: "Cat Tanal Paint selalu habis di toko saya. Kualitas bagus, harga bersaing, dan customer service responsif. Rekomendasi terbaik!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Siti Rahmaniyah"},
{
id: "5",
name: "Rudi Hermawan",
handle: "Tukang Cat Profesional",
testimonial: "Sudah 5 tahun menggunakan Tanal Paint. Konsisten kualitas, tahan lama, dan hasil finishing selalu rapi. Cat pilihan tukang terbaik.",
imageSrc: "http://img.b2bpic.net/free-photo/young-male-standing-with-crossed-arms-blue-shirt-cap-looking-confident-front-view_176474-57755.jpg?_wi=2",
imageAlt: "Rudi Hermawan",
},
id: "5", name: "Rudi Hermawan", handle: "Tukang Cat Profesional", testimonial: "Sudah 5 tahun menggunakan Tanal Paint. Konsisten kualitas, tahan lama, dan hasil finishing selalu rapi. Cat pilihan tukang terbaik.", imageSrc: "http://img.b2bpic.net/free-photo/young-male-standing-with-crossed-arms-blue-shirt-cap-looking-confident-front-view_176474-57755.jpg", imageAlt: "Rudi Hermawan"},
{
id: "6",
name: "Dewi Kusuma",
handle: "Developer Properti",
testimonial: "Untuk perumahan skala besar, kami percaya Tanal Paint. Supply terpercaya, kualitas konsisten, dan support tim sangat membantu.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-indoors_23-2149927558.jpg?_wi=2",
imageAlt: "Dewi Kusuma",
},
id: "6", name: "Dewi Kusuma", handle: "Developer Properti", testimonial: "Untuk perumahan skala besar, kami percaya Tanal Paint. Supply terpercaya, kualitas konsisten, dan support tim sangat membantu.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-indoors_23-2149927558.jpg", imageAlt: "Dewi Kusuma"},
]}
speed={35}
/>
@@ -217,85 +144,55 @@ export default function ProductsPage() {
animationType="reveal-blur"
buttons={[
{
text: "📞 Hubungi Kami",
href: "tel:+62267437304",
},
text: "📞 Hubungi Kami", href: "tel:+62267437304"},
{
text: "💬 Chat WhatsApp",
href: "https://wa.me/+6287771234567",
},
text: "💬 Chat WhatsApp", href: "https://wa.me/+6287771234567"},
]}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487042.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487042.jpg"
imageAlt="Pabrik Cat Tanal Paint Karawang"
logoText="Tanal Paint"
copyrightText="© 2025 PT Tanu Alvindo Perkasa. Semua hak dilindungi."
columns={[
{
title: "Perusahaan",
items: [
title: "Perusahaan", items: [
{
label: "Tentang Kami",
href: "/about",
},
label: "Tentang Kami", href: "/about"},
{
label: "Produk",
href: "/products",
},
label: "Produk", href: "/products"},
{
label: "Proyek",
href: "/projects",
},
label: "Proyek", href: "/projects"},
{
label: "Program Distributor",
href: "/distributor",
},
label: "Program Distributor", href: "/distributor"},
],
},
{
title: "Kontak",
items: [
title: "Kontak", items: [
{
label: "📞 (0267) 437304",
href: "tel:+62267437304",
},
label: "📞 (0267) 437304", href: "tel:+62267437304"},
{
label: "💬 WhatsApp",
href: "https://wa.me/+6287771234567",
},
label: "💬 WhatsApp", href: "https://wa.me/+6287771234567"},
{
label: "📍 Jl. Raya Klari No.35, Karawang",
href: "https://maps.google.com/?q=Jl.+Raya+Klari+No.35+Gintungkerta+Klari+Karawang",
},
label: "📍 Jl. Raya Klari No.35, Karawang", href: "https://maps.google.com/?q=Jl.+Raya+Klari+No.35+Gintungkerta+Klari+Karawang"},
{
label: "✉️ info@tanalpaint.com",
href: "mailto:info@tanalpaint.com",
},
label: "✉️ info@tanalpaint.com", href: "mailto:info@tanalpaint.com"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Kebijakan Privasi",
href: "#",
},
label: "Kebijakan Privasi", href: "#"},
{
label: "Syarat & Ketentuan",
href: "#",
},
label: "Syarat & Ketentuan", href: "#"},
{
label: "Kebijakan Pengembalian",
href: "#",
},
label: "Kebijakan Pengembalian", href: "#"},
],
},
]}