"use client"; import { Button } from "antd"; import DineInIcon from "components/Icons/DineInIcon"; import DownIcon from "components/Icons/DownIcon"; import PickupIcon from "components/Icons/PickupIcon"; import useBreakPoint from "hooks/useBreakPoint"; import styles from "../menu.module.css"; import { OrderType } from "pages/checkout/hooks/types.ts"; interface ResponsiveServicesProps { orderType: string; translations: { common: { dineIn: string; pickup: string; more: string; }; }; } export default function ResponsiveServices({ orderType, translations, }: ResponsiveServicesProps) { const { isMobile } = useBreakPoint(); // Hide pickup service if screen width is less than 400px (insufficient for 3 services) const shouldHidePickup = isMobile; return (