diff --git a/src/app/page.tsx b/src/app/page.tsx index 8bee5ab..5a9e611 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,6 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import TextAbout from '@/components/sections/about/TextAbout'; import FooterBase from '@/components/sections/footer/FooterBase'; import Link from "next/link"; -import { TrendingUp, ShoppingCart, Wallet, DollarSign } from 'lucide-react'; export default function HomePage() { const navItems = [ @@ -74,10 +73,10 @@ export default function HomePage() { title="Ringkasan Kinerja Voucher" description="Lihat statistik kunci distribusi dan penjualan voucher WiFi Anda secara real-time." metrics={[ - { value: "15,000", description: "Voucher Dibagikan", icon: TrendingUp }, - { value: "12,500", description: "Voucher Terjual", icon: ShoppingCart }, - { value: "2,500", description: "Voucher Tersisa", icon: Wallet }, - { value: "Rp 62,500,000", description: "Total Keuntungan (Bersih)", icon: DollarSign } + { value: "15,000", description: "Voucher Dibagikan" }, + { value: "12,500", description: "Voucher Terjual" }, + { value: "2,500", description: "Voucher Tersisa" }, + { value: "Rp 62,500,000", description: "Total Keuntungan (Bersih)" } ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -114,7 +113,6 @@ export default function HomePage() {