import nuxtStorage from 'nuxt-storage'

export const showPopupOffre = (value: string) => {
    if (nuxtStorage.localStorage.getData(value)) {
        return false
    }

    nuxtStorage.localStorage.setData(value, true, 1, 'd')
    return true
}
