-
- Agents
-
diff --git a/src/components/drawer.tsx b/src/components/drawer.tsx
index bb6bc71..0cc3757 100644
--- a/src/components/drawer.tsx
+++ b/src/components/drawer.tsx
@@ -10,16 +10,104 @@ import {
import { siteConfig } from "@/lib/config";
import { cn } from "@/lib/utils";
import { LoginModalOptions } from "@privy-io/react-auth";
+import Image from "next/image";
import Link from "next/link";
+import { usePathname } from "next/navigation";
+import React from "react";
import { IoMenuSharp } from "react-icons/io5";
-export default function drawerDemo({
+const headerLinks = [
+ // {
+ // trigger: "Features",
+ // content: {
+ // main: {
+ // icon:
,
+ // title: "AI-Powered Automation",
+ // description: "Streamline your workflow with intelligent automation.",
+ // href: "#",
+ // },
+ // items: [
+ // {
+ // href: "#",
+ // title: "Task Automation",
+ // description: "Automate repetitive tasks and save time.",
+ // },
+ // {
+ // href: "#",
+ // title: "Workflow Optimization",
+ // description: "Optimize your processes with AI-driven insights.",
+ // },
+ // {
+ // href: "#",
+ // title: "Intelligent Scheduling",
+ // description: "AI-powered scheduling for maximum efficiency.",
+ // },
+ // ],
+ // },
+ // },
+ // {
+ // trigger: "Solutions",
+ // content: {
+ // items: [
+ // {
+ // title: "For Small Businesses",
+ // href: "#",
+ // description: "Tailored automation solutions for growing companies.",
+ // },
+ // {
+ // title: "Enterprise",
+ // href: "#",
+ // description: "Scalable AI automation for large organizations.",
+ // },
+ // {
+ // title: "Developers",
+ // href: "#",
+ // description: "API access and integration tools for developers.",
+ // },
+ // {
+ // title: "Healthcare",
+ // href: "#",
+ // description: "Specialized automation for healthcare workflows.",
+ // },
+ // {
+ // title: "Finance",
+ // href: "#",
+ // description: "AI-driven process automation for financial services.",
+ // },
+ // {
+ // title: "Education",
+ // href: "#",
+ // description:
+ // "Streamline administrative tasks in educational institutions.",
+ // },
+ // ],
+ // },
+ // },
+ {
+ href: "/explore",
+ label: "Agents",
+ },
+ {
+ href: "/faq",
+ label: "FAQ",
+ },
+ {
+ href: "/docs",
+ label: "Docs",
+ },
+];
+
+export default function DrawerDemo({
login,
}: {
login: (options?: LoginModalOptions | React.MouseEvent
) => void;
}) {
+ const pathName = usePathname();
+
+ const [open, setOpen] = React.useState(false);
+
return (
-
+ setOpen(val)}>
@@ -29,23 +117,32 @@ export default function drawerDemo({
-
+
{siteConfig.name}