"use client"; import Link from "next/link"; import { useTranslations } from "next-intl"; import { LayoutGrid } from "lucide-react"; import { IMAGE_MAKER_NAV, LEARN_NAV_ITEMS, VIDEO_MAKER_NAV, } from "@/lib/navbar-menu-data"; interface NavbarMobileMenuProps { onNavigate: () => void; } const linkClass = "flex min-h-11 items-center rounded-lg px-3 text-sm font-medium text-gray-700 hover:bg-gray-50 hover:text-gray-900"; export function NavbarMobileMenu({ onNavigate }: NavbarMobileMenuProps) { const t = useTranslations("auto.componentsLayoutNavbarMobileMenu"); return (
{t("videoMaker")}
{t("imageMaker")}
{t("learn")}