From 2116d0186bb9818dfdd7609463399d45bfc73f74 Mon Sep 17 00:00:00 2001 From: praveenzsp Date: Sun, 23 Nov 2025 16:08:47 +0530 Subject: [PATCH 1/3] bug-fix:navbar hides properly --- apps/web/src/app/(main)/(landing)/layout.tsx | 2 -- apps/web/src/components/landing-sections/navbar.tsx | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/web/src/app/(main)/(landing)/layout.tsx b/apps/web/src/app/(main)/(landing)/layout.tsx index 3a5bdbe5..1ca3e604 100644 --- a/apps/web/src/app/(main)/(landing)/layout.tsx +++ b/apps/web/src/app/(main)/(landing)/layout.tsx @@ -1,10 +1,8 @@ -import Navbar from '@/components/landing-sections/navbar' import React from 'react' const Layout = ({ children }: { children: React.ReactNode }) => { return (
- {children}
) diff --git a/apps/web/src/components/landing-sections/navbar.tsx b/apps/web/src/components/landing-sections/navbar.tsx index 8c3c6924..a38855cb 100644 --- a/apps/web/src/components/landing-sections/navbar.tsx +++ b/apps/web/src/components/landing-sections/navbar.tsx @@ -46,7 +46,7 @@ const Navbar = () => { return ( Date: Sun, 23 Nov 2025 23:21:16 +0530 Subject: [PATCH 2/3] added back navbar to layout file --- apps/web/src/app/(main)/(landing)/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/(main)/(landing)/layout.tsx b/apps/web/src/app/(main)/(landing)/layout.tsx index 1ca3e604..600f2a89 100644 --- a/apps/web/src/app/(main)/(landing)/layout.tsx +++ b/apps/web/src/app/(main)/(landing)/layout.tsx @@ -1,8 +1,10 @@ import React from 'react' +import Navbar from '@/components/landing-sections/navbar' const Layout = ({ children }: { children: React.ReactNode }) => { return (
+ {children}
) From 2f5e5363473dd48f24e493be33b514f43a82cac8 Mon Sep 17 00:00:00 2001 From: praveenzsp Date: Sun, 23 Nov 2025 23:22:43 +0530 Subject: [PATCH 3/3] lint fix --- apps/web/src/app/(main)/(landing)/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/(main)/(landing)/layout.tsx b/apps/web/src/app/(main)/(landing)/layout.tsx index 600f2a89..3a5bdbe5 100644 --- a/apps/web/src/app/(main)/(landing)/layout.tsx +++ b/apps/web/src/app/(main)/(landing)/layout.tsx @@ -1,10 +1,10 @@ -import React from 'react' import Navbar from '@/components/landing-sections/navbar' +import React from 'react' const Layout = ({ children }: { children: React.ReactNode }) => { return (
- + {children}
)