1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 13:22:38 +02:00

Add roadmap chat in top nav

This commit is contained in:
Kamran Ahmed
2025-07-04 01:33:13 +01:00
parent 7c9cd39002
commit 2142409fb4

View File

@@ -1,12 +1,12 @@
import { ChevronDown, MessageCircle, Plus } from 'lucide-react';
import { useStore } from '@nanostores/react';
import { ChevronDown, Map, MessageCircle, Plus } from 'lucide-react';
import { useEffect } from 'react';
import { NavigationDropdownMenu } from '../NavigationDropdownMenu.tsx';
import {
navigationDropdownOpen,
aiDropdownOpen,
navigationDropdownOpen,
roadmapsDropdownOpen,
} from '../../stores/page.ts';
import { useStore } from '@nanostores/react';
import { NavigationDropdownMenu } from '../NavigationDropdownMenu.tsx';
const links = [
{
@@ -21,6 +21,12 @@ const links = [
description: 'Career, resume guidance, and more',
Icon: MessageCircle,
},
{
link: '/ai/roadmap-chat',
label: 'Roadmap Chat',
description: 'Chat with AI Tutor about a roadmap',
Icon: Map,
},
];
export function AIDropdownMenu() {