// Older phones const XS = 360 // Tablets const M = 768 // Desktops const XL = 1200 export const viewports = { single: [XL], all: [XS, M, XL], XS, M, XL, } as const