diff --git a/components/Recent_Design.tsx b/components/Recent_Design.tsx index 9d2adc9..13974e6 100644 --- a/components/Recent_Design.tsx +++ b/components/Recent_Design.tsx @@ -31,7 +31,7 @@ const recentDesigns = [ */ export default function RecentDesign() { return ( -
+
{/* Logo and Title Section */}
diff --git a/components/Side_bar.tsx b/components/Side_bar.tsx index 7097d18..cae68a7 100644 --- a/components/Side_bar.tsx +++ b/components/Side_bar.tsx @@ -2,6 +2,7 @@ import Image from "next/image"; import { usePathname } from "next/navigation"; +import { useState } from "react"; // Navigation links configuration const links = [ @@ -23,36 +24,46 @@ const links = [ */ export default function Sidebar() { const pathname = usePathname(); + const [isMenuOpen, setIsMenuOpen] = useState(false); return ( -
-
+
+
{/* Menu Icon */} - logo - - {/* Navigation Links */} -
+
+
setIsMenuOpen(!isMenuOpen)} + > + logo +
+ + {/* Navigation Links */} {links.map((link) => ( -
+
{/* Link Icon Container */} -
+
{link.label}
{/* Link Label */} -

{link.label}

+

+ {link.label} +

))}