Skip to content
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
8 changes: 4 additions & 4 deletions src/app/(main)/community/events/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export const events: Event[] = [
{
name: "WG Day 2026",
slug: "wg-day-2026",
location: "Menlo Park, California",
date: "2026-05-08T16:30:00+00:00",
location: "Fremont, California",
date: "2026-05-21T16:30:00+00:00",
eventLink: "/conf/2026/wg-day",
host: "GraphQL Foundation",
},
Expand All @@ -59,8 +59,8 @@ export const events: Event[] = [
{
name: "GraphQLConf 2026",
slug: "graphql-conf-2026",
location: "Menlo Park, California",
date: "2026-05-06T16:00:00+00:00",
location: "Fremont, California",
date: "2026-05-19T16:00:00+00:00",
eventLink: "/conf/2026",
host: "GraphQL Foundation",
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useEffect, useState } from "react"
import { format } from "date-fns"

const CONFERENCE_START = new Date("2026-05-06T00:00:00")
const CONFERENCE_END = new Date("2026-05-07T23:59:59")
const CONFERENCE_START = new Date("2026-05-19T00:00:00")
const CONFERENCE_END = new Date("2026-05-20T23:59:59")

export function useCurrentTimeMarker() {
const [now, setNow] = useState<Date>(new Date())
Expand Down
Loading