Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions client/src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,6 @@ const Home = () => {
return markAsReadMutation.mutateAsync(updateId);
};

const maintenanceBanner = useMemo(() => {
const start = new Date('2026-02-12T03:00:00Z'); // 10 PM ET = 03:00 UTC next day
const end = new Date('2026-02-12T05:00:00Z'); // 12 AM ET = 05:00 UTC

const fmt = new Intl.DateTimeFormat(undefined, {
month: 'numeric',
day: 'numeric',
year: 'numeric',
hour: 'numeric',
minute: '2-digit',
timeZoneName: 'short',
});

const startStr = fmt.format(start);
const endStr = fmt.format(end);

return `[IMPORTANT] As we prepare for a major upgrade on ${startStr} to ${endStr}, you are required to upgrade your Minecraft plugin to version 1.1.2 to avoid downtime.`;
}, []);

return (
<PageContainer>
<div className="flex flex-col space-y-4">
Expand Down