"use client";
import * as React from "react";
import Link from "next/link";
import { cn } from "@/lib/utils";
import { Icons } from "@/components/icons";
import {
NavigationMenu,
NavigationMenuContent,
NavigationMenuItem,
NavigationMenuLink,
NavigationMenuList,
NavigationMenuTrigger,
navigationMenuTriggerStyle,
} from "@/components/ui/navigation-menu";
import ThemeToggle from "./layout/ThemeToggle/theme-toggle";
import { buttonVariants } from "./ui/button";
import {
Sheet,
SheetContent,
SheetDescription,
SheetHeader,
SheetTitle,
SheetTrigger,
} from "@/components/ui/sheet";
import { AlignRight } from "lucide-react";
import { NavItem } from "@/types";
import { MobileNav } from "./mobile-nav";
const careerPaths: { title: string; href: string; description: string }[] = [
{
title: "Frontend Developer",
href: "#",
description:
"Master frontend technologies like HTML, CSS, and JavaScript to build dynamic and user-friendly web interfaces.",
},
{
title: "Backend Developer",
href: "#",
description:
"Learn server-side programming languages and frameworks to create scalable and efficient web applications.",
},
{
title: "Full Stack Developer",
href: "#",
description:
"Combine frontend and backend development skills to build end-to-end web applications from scratch.",
},
{
title: "Mobile App Developer",
href: "#",
description:
"Specialize in mobile app development for iOS or Android platforms using Swift, Kotlin, or cross-platform frameworks.",
},
{
title: "Game Developer",
href: "#",
description:
"Dive into game development with Unity or Unreal Engine, creating immersive gaming experiences for various platforms.",
},
{
title: "Machine Learning Engineer",
href: "#",
description:
"Develop machine learning models and algorithms to solve complex problems and make predictions based on data.",
},
];
export default function Navbar() {
return (
Browse our extensive catalog of courses covering a
wide range of topics in software engineering, from
programming languages to advanced technologies.
Skilld
{careerPaths.map((path) => (
{children}