From 551d526d96b83122ba2ec739ac18a2e43c71394a Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Thu, 29 May 2025 21:15:04 +0530 Subject: fix: fixed the typecheck error --- frontend/src/app/men/page.tsx | 8 ++++---- frontend/src/app/women/page.tsx | 8 ++++---- frontend/src/components/ui/navigation-menu.tsx | 4 ---- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/frontend/src/app/men/page.tsx b/frontend/src/app/men/page.tsx index 8c0dd51..1b43056 100644 --- a/frontend/src/app/men/page.tsx +++ b/frontend/src/app/men/page.tsx @@ -116,9 +116,9 @@ export default function MenPage() { {/* Hero Section */}
-

Men's Collection

+

Men's Collection

- Discover our latest men's fashion collection featuring premium quality pieces for the modern man + Discover our latest men's fashion collection featuring premium quality pieces for the modern man

@@ -172,7 +172,7 @@ export default function MenPage() { export async function generateMetadata() { return { - title: "Men's Fashion Collection | blcklst", - description: "Shop the latest men's fashion at blcklst. Premium quality clothing, shoes, and accessories for the modern man.", + title: "Men's Fashion Collection | blcklst", + description: "Shop the latest men's fashion at blcklst. Premium quality clothing, shoes, and accessories for the modern man.", }; } \ No newline at end of file diff --git a/frontend/src/app/women/page.tsx b/frontend/src/app/women/page.tsx index 6814760..cf74e5c 100644 --- a/frontend/src/app/women/page.tsx +++ b/frontend/src/app/women/page.tsx @@ -116,9 +116,9 @@ export default function WomenPage() { {/* Hero Section */}
-

Women's Collection

+

Women's Collection

- Embrace your style with our curated women's fashion collection featuring elegant and contemporary pieces + Embrace your style with our curated women's fashion collection featuring elegant and contemporary pieces

@@ -172,7 +172,7 @@ export default function WomenPage() { export async function generateMetadata() { return { - title: "Women's Fashion Collection | blcklst", - description: "Shop the latest women's fashion at blcklst. Elegant dresses, tops, accessories, and more for the modern woman.", + title: "Women's Fashion Collection | blcklst", + description: "Shop the latest women's fashion at blcklst. Elegant dresses, tops, accessories, and more for the modern woman.", }; } \ No newline at end of file diff --git a/frontend/src/components/ui/navigation-menu.tsx b/frontend/src/components/ui/navigation-menu.tsx index 65b5803..f73518a 100644 --- a/frontend/src/components/ui/navigation-menu.tsx +++ b/frontend/src/components/ui/navigation-menu.tsx @@ -69,14 +69,10 @@ function NavigationMenuTrigger({ children, ...props }: React.ComponentProps) { - const [isHovered, setIsHovered] = React.useState(false) - return ( setIsHovered(true)} - onMouseLeave={() => setIsHovered(false)} style={{ WebkitTapHighlightColor: 'transparent', touchAction: 'manipulation', -- cgit v1.2.3-59-g8ed1b