"use client"; import { motion } from "framer-motion"; import Link from "next/link"; interface MobileMenuProps { onClose: () => void; } export default function MobileMenu({ onClose }: MobileMenuProps) { const menuItems = [ { href: "/en", label: "Home" }, { href: "/en/products", label: "Products" }, { href: "/en/about", label: "About" }, { href: "/en/contact", label: "Contact" }, ]; return ( <>

ManoonOils

); }