Skip to content

Commit a5d7087

Browse files
authored
Merge pull request #222 from jaydestro/v2-reorg
V2 reorg
2 parents 3922854 + eff599b commit a5d7087

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useEffect, useState } from "react";
2-
import agendaData from "./agenda.json";
2+
import agendaData from "../pages/conf/agenda.json";
33

44
// Videos become clickable on 2026-04-28 1:30 PM PDT (PDT = UTC-7 → 20:30 UTC).
55
export const VIDEO_RELEASE_TIMESTAMP = Date.UTC(2026, 3, 28, 20, 30, 0);

client/src/pages/conf/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AgendaSection from "./sections/AgendaSection";
1313
import NewsSection from "./sections/NewsSection";
1414
import FaqSection from "./sections/FaqSection";
1515
import SpeakersSection from "./sections/SpeakersSection";
16-
import { useStreamReleased } from "./videoRelease";
16+
import { useStreamReleased } from "../../conf/videoRelease";
1717

1818
const CONF_YEAR = "2026";
1919
const CONF_DATE_DISPLAY = "April 28 - 9:00 AM - 2:00 PM PDT";

client/src/pages/conf/sections/AgendaSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import useBaseUrl from "@docusaurus/useBaseUrl";
33
import styles from "../conf.module.css";
44
import agendaData from "../agenda.json";
5-
import { useVideoReleased } from "../videoRelease";
5+
import { useVideoReleased } from "../../../conf/videoRelease";
66

77
interface AgendaSectionProps {
88
confYear: string;

client/src/pages/conf/sections/SpeakersSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
getVideoUrlForSpeaker,
66
getYouTubeEmbedUrl,
77
useVideoReleased,
8-
} from "../videoRelease";
8+
} from "../../../conf/videoRelease";
99

1010
interface Session {
1111
title?: string;

0 commit comments

Comments
 (0)