import { RecursiveAllValues } from '../interfaces'

export type TRoutePath = RecursiveAllValues<typeof ROUTE_PATHS>

export const ROUTE_PATHS = {
  home: '/',
  about: '/about',
} as const
