From aabf3e18eff2467674cc14d8cfebd6863760866b Mon Sep 17 00:00:00 2001 From: tapframe Date: Sun, 9 Nov 2025 11:55:14 +0530 Subject: [PATCH] hero height change --- src/constants/dimensions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/dimensions.ts b/src/constants/dimensions.ts index f515c391..10051cad 100644 --- a/src/constants/dimensions.ts +++ b/src/constants/dimensions.ts @@ -3,7 +3,7 @@ import { Dimensions } from 'react-native'; const { width, height } = Dimensions.get('window'); // Hero section height - 85% of screen height (matching Apple TV style) -export const HERO_HEIGHT = height * 0.70; +export const HERO_HEIGHT = height * 0.65; // Screen dimensions export const SCREEN_WIDTH = width;