import type { Breakpoint } from '@/lib/types'

export const BREAKPOINTS: Record<Breakpoint, string> = {
  lg: '1440px',
  md: '1024px',
  sm: '768px',
  xs: '480px',
  xxs: '0px',
}

export const CASE_STUDIES_PER_PAGE = 8

export const PROJECTS_PER_PAGE = 9

export const DEFAULT_SPRING_TRANSITION = {
  type: 'spring',
  duration: 0.35,
}
export const DEFAULT_DRAG_ELASTIC = 0.1
export const SWIPE_CONFIDENCE_THRESHOLD = 10000
