From 194ae7c4a12adac2993d6487dede01c759cae399 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 7 Feb 2026 13:09:07 +0100 Subject: [PATCH] Added comment --- src/App.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.jsx b/src/App.jsx index c83821a..e7454f8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -7,6 +7,7 @@ import {Team} from './sections/Team'; import Snowfall from 'react-snowfall' import { DateTime } from 'luxon'; +// Determines if the current date is within the snowfall season (November 15th to January 31st) function isSnowfallSeason(date = DateTime.now()) { const year = date.year; const start = DateTime.local(year, 11, 15);