export const weekFromNow = () => { const now = new Date() const weekFromNow = new Date(now.getTime() + 7 * 24 * 60 * 60 * 1000) return weekFromNow }