/* eslint-disable lingui/no-unlocalized-strings */ import { RocketLaunch } from "@phosphor-icons/react"; import dayjs from "dayjs"; import { motion } from "framer-motion"; export const ProductHuntBanner = () => { const timezonePST = "America/Los_Angeles"; const startTime = dayjs.tz("2023-11-24 00:01", timezonePST); const endTime = dayjs.tz("2023-11-25 00:00", timezonePST); const currentTime = dayjs().tz(timezonePST); const isLaunchDay = currentTime.isAfter(startTime) && currentTime.isBefore(endTime); if (!isLaunchDay) return null; return ( Support Reactive Resume on Product Hunt today! ); };