diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
index cf3e6fc..e60be93 100644
--- a/src/components/Header/Header.tsx
+++ b/src/components/Header/Header.tsx
@@ -17,6 +17,7 @@ const Header: FC<{
const onAnchorClick = () => {
setSideNav(false);
+ setActive(false);
};
return (
@@ -119,7 +120,7 @@ const Header: FC<{
* responsive
*/}
-
+
boolean)) => {
setSideNav(!showSideNav);
+ setActive(false);
}}
/>
diff --git a/src/components/SideNav/SideNav.tsx b/src/components/SideNav/SideNav.tsx
index 4c389d9..2e09e66 100644
--- a/src/components/SideNav/SideNav.tsx
+++ b/src/components/SideNav/SideNav.tsx
@@ -1,8 +1,9 @@
import { menuList } from '@/components/Menu/Product';
-import { faGreaterThan } from '@fortawesome/free-solid-svg-icons';
+import { faChevronDown } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Menu, Transition } from '@headlessui/react';
import { animated, useSpring, useSpringRef, useTrail } from '@react-spring/web';
+import Link from 'next/link';
import { FC, useEffect, useState } from 'react';
const SideNav: FC<{
@@ -22,7 +23,7 @@ const SideNav: FC<{
const items = ['Product', 'Solutions', 'Pricing', 'Docs', 'Blogs'];
const trail = useTrail(5, {
- config: { mass: 5, tension: 2000, friction: 200 },
+ config: { mass: 5, tension: 1000, friction: 200 },
delay: 450,
opacity: isOpen ? 1 : 0,
x: isOpen ? 0 : 20,
@@ -42,20 +43,24 @@ const SideNav: FC<{
-
+

-
+
{trail.map(({ height, ...style }, index) => (
@@ -66,17 +71,17 @@ const SideNav: FC<{
key={index}
className={`
- ${items[index] === 'Product' && active ? `h-[460px]` : `h-full`}
+
w-full overflow-hidden pl-10 text-[3em] font-[700] leading-[80px] tracking-[-0.05em] text-white transition-all will-change-[transform,opacity]`}
style={style}
>
{items[index] === 'Product' ? (
- <>
+
{
@@ -85,14 +90,19 @@ const SideNav: FC<{
>
{items[index]}{' '}
{
{
+ setActive(!active);
+ }}
className={` mr-4 mt-2 transition-all ${
- active ? `h-full` : `h-[0px]`
+ active ? ` scale-y-[100%]` : `scale-y-0`
} `}
>