diff --git a/README.md b/README.md index ea341aed2..03eeef286 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,16 @@ Other ways to support: - Improve documentation - Help with translations +## Star History + + + + + + Star History Chart + + + ## Contributing Contributions make open-source thrive. Whether fixing a typo or adding a feature, all contributions are welcome. diff --git a/compose.yml b/compose.yml index c0f627f1d..0d4a9ae57 100644 --- a/compose.yml +++ b/compose.yml @@ -25,7 +25,6 @@ services: - HEALTH=true - CONCURRENT=20 - TOKEN=1234567890 - - EXTERNAL=http://localhost:4000 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3000/pressure?token=1234567890"] diff --git a/src/routes/_home/-sections/product-hunt-banner.tsx b/src/routes/_home/-sections/product-hunt-banner.tsx index 990544842..fc7bc7a57 100644 --- a/src/routes/_home/-sections/product-hunt-banner.tsx +++ b/src/routes/_home/-sections/product-hunt-banner.tsx @@ -2,8 +2,8 @@ import { Trans } from "@lingui/react/macro"; import { HeartIcon } from "@phosphor-icons/react"; import { useEffect, useState } from "react"; -const PH_LAUNCH_START = Date.UTC(2026, 1, 1, 8, 1, 0); -const PH_LAUNCH_END = Date.UTC(2026, 1, 2, 8, 1, 0); +const PH_LAUNCH_START = Date.UTC(2026, 0, 26, 8, 1, 0); +const PH_LAUNCH_END = Date.UTC(2026, 0, 27, 8, 0, 0); function isWithinProductHuntLaunchWindow() { const nowUtc = Date.now();