Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: .NET Conf countdown #103

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion app/Components/Components/Countdown.razor
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
updateCountdown();
}

const eventDate = `@DueDate.ToString("MM/dd/yyyy")`;
const eventDate = `@DueDate.ToString("O")`;
startCountdown(eventDate);
</script>

Expand Down
4 changes: 2 additions & 2 deletions app/Components/Pages/NET.Conf/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<li class="font-bold link"><a target="_blank" href="https://maps.app.goo.gl/QDVsEbBKf1NAPL7j7"><i class="fa-regular fa-map"></i> Google Maps Location</a></li>
</ul>
</div>
<Countdown DueDate="new DateTime(2025, 1, 11)" CountDownName="dotnet-conf-2024" />
<Countdown DueDate="new DateTime(2025, 1, 11, 8, 0, 0)" CountDownName="dotnet-conf-2024" />
<div>
<p class="text-white mb-6">Get ready to expand your skills, meet fellow developers, and dive into the latest trends in .NET at this year’s event! Here’s what awaits you</p>
<ul class="text-white">
Expand Down Expand Up @@ -133,7 +133,7 @@
</section>

<!-- Agenda -->
<section>
<section id="agenda">
<div class="section container mx-auto p-4">
<h1 class="heading heading-1 text-center">Take a look at our Agenda</h1>
<p>
Expand Down
Loading