export type Breakpoint = "sm" | "md" | "lg" | "xl" | "xxl";

export const breakpoints: Breakpoint[] = ["sm", "md", "lg", "xl", "xxl"];
