From 8999774f06d7c51b8714a3d98cc81d2d4ced7bce Mon Sep 17 00:00:00 2001 From: Subham Mondal Date: Wed, 11 Feb 2026 15:24:43 +0530 Subject: [PATCH] User can scroll to top by clicking in the logo in landing page --- apps/web/src/components/landing-sections/navbar.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/landing-sections/navbar.tsx b/apps/web/src/components/landing-sections/navbar.tsx index 8fc44cd..3a2e595 100644 --- a/apps/web/src/components/landing-sections/navbar.tsx +++ b/apps/web/src/components/landing-sections/navbar.tsx @@ -48,6 +48,13 @@ const Navbar = () => { } }); + const scrollToTop = () => { + window.scrollTo({ + top: 0, + behavior: "smooth" + }) + } + const links = [ { name: "Pricing", href: "/pricing" }, { name: "Testimonials", href: "/testimonials" }, @@ -78,7 +85,7 @@ const Navbar = () => { > {isOpen ? : } -
+