diff --git a/lib/presentation/pages/main/pages/home/home_page.dart b/lib/presentation/pages/main/pages/home/home_page.dart index aa7eb2a..7f8db99 100644 --- a/lib/presentation/pages/main/pages/home/home_page.dart +++ b/lib/presentation/pages/main/pages/home/home_page.dart @@ -40,7 +40,7 @@ class _HomePageState extends State { _buildHeaderSection(), const SizedBox(height: 70), HomeFeatureSection(), - HomeLotteryBanner(), + HomeLotteryBanner(onTap: () => context.router.push(DrawRoute())), HomePopularMerchantSection(), ], ), diff --git a/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart b/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart index f77d1c6..e516087 100644 --- a/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart +++ b/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart @@ -8,7 +8,7 @@ class HomeLotteryBanner extends StatefulWidget { this.title = "🎰 UNDIAN BERHADIAH", this.subtitle = "Kumpulkan voucher untuk menang hadiah menarik!", this.showAnimation = true, - this.actionText = "MAIN SEKARANG", + this.actionText = "IKUTI SEKARANG", }); final VoidCallback? onTap;