@@ -36,7 +44,7 @@ export function BecomeASpeakerSection({
{cfpDeadline && (
The CFP closes on {cfpDeadline}.
)}
-
+
)
diff --git a/src/app/day/events-data.ts b/src/app/day/events-data.ts
index 7d5222ee04..c1eada7d94 100644
--- a/src/app/day/events-data.ts
+++ b/src/app/day/events-data.ts
@@ -32,6 +32,14 @@ export const EVENTS: EventMapItem[] = [
lon: 4.9041,
lat: 52.3676,
},
+ {
+ id: "bengaluru",
+ city: "Bengaluru",
+ date: "Aug 19-20",
+ href: "/day/2026/bengaluru",
+ lon: 77.5946,
+ lat: 12.9716,
+ },
{
id: "melbourne",
city: "Melbourne",
diff --git a/src/app/day/page.tsx b/src/app/day/page.tsx
index 7dab3ed7b6..a94e4c77d0 100644
--- a/src/app/day/page.tsx
+++ b/src/app/day/page.tsx
@@ -14,11 +14,11 @@ import { NavbarPlaceholder } from "./2026/components/navbar"
import fostLogo from "./2026/assets/fost-logo.avif"
import { GallerySection } from "./gallery-section"
-const NUMBER_OF_CITIES_SPELLED_OUT = "four"
+const NUMBER_OF_CITIES_SPELLED_OUT = "six"
if (process.env.NODE_ENV === "development") {
- if (EVENTS.length !== 4)
+ if (EVENTS.length !== 6)
throw new Error(
- "EVENTS is expected to be 4, please update the NUMBER_OF_CITIES_SPELLED_OUT variable",
+ "EVENTS is expected to be 6, please update the NUMBER_OF_CITIES_SPELLED_OUT variable",
)
}