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