From 487fea87f4466ddeb664c84fd7e25c8e50fcd6d6 Mon Sep 17 00:00:00 2001 From: ayush jaiswal Date: Fri, 1 Aug 2025 11:48:42 -0400 Subject: [PATCH 1/5] Add [Your City] event page --- src/routes/{example => atlanta}/+page.svelte | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/routes/{example => atlanta}/+page.svelte (100%) diff --git a/src/routes/example/+page.svelte b/src/routes/atlanta/+page.svelte similarity index 100% rename from src/routes/example/+page.svelte rename to src/routes/atlanta/+page.svelte From f6f31b6fdbdacff5c039bc792df32747b6e1f18d Mon Sep 17 00:00:00 2001 From: ayush jaiswal Date: Fri, 1 Aug 2025 11:49:00 -0400 Subject: [PATCH 2/5] Add [Your City] event page --- src/routes/atlanta/+page.svelte | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/src/routes/atlanta/+page.svelte b/src/routes/atlanta/+page.svelte index 43dbf3f..cc0ef27 100644 --- a/src/routes/atlanta/+page.svelte +++ b/src/routes/atlanta/+page.svelte @@ -4,9 +4,35 @@ import { ScrollTrigger } from "gsap/ScrollTrigger"; // Event Configuration - const EVENT_NAME = "Example"; - const EVENT_LOCATION = "Example City"; - + const eventName = "Daydream Atlanta"; + const eventLocation = "Atlanta"; + const eventAddress = "---"; + const directionsURL = "---" + const scheduleData = { + saturday: { + title: "Saturday, September 27th", + items: [ + { event: "Doors open", time: "11:00 AM" }, + { event: "Opening ceremony", time: "12:00 PM" }, + { event: "Lunch", time: "12:30 PM" }, + { event: "Start working on your project!", time: "1:00 PM" }, + { event: "Workshop 1", time: "2:00 PM" }, + { event: "Activity 1", time: "4:00 PM" }, + { event: "Workshop 2", time: "4:00 PM" }, + { event: "Dinner", time: "6:00 PM" }, + { event: "Lightning talks", time: "8:00 PM" }, + { event: "Midnight surprise", time: "12:00 AM" } + ] + }, + sunday: { + title: "Sunday, September 28th", + items: [ + { event: "Breakfast", time: "8:00 AM" }, + { event: "Demos!", time: "10:30 AM" }, + { event: "Closing ceremony", time: "12:00 PM" } + ] + } +}; // Cities where the game jam is happening const cities = `Columbus Lisbon From 495a892d3739c022202b54b58132a7699c934462 Mon Sep 17 00:00:00 2001 From: ayush jaiswal Date: Thu, 7 Aug 2025 12:26:25 -0400 Subject: [PATCH 3/5] Add Atlanta event page --- src/routes/atlanta/+page.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/routes/atlanta/+page.svelte b/src/routes/atlanta/+page.svelte index cc0ef27..8bbba12 100644 --- a/src/routes/atlanta/+page.svelte +++ b/src/routes/atlanta/+page.svelte @@ -8,6 +8,9 @@ const eventLocation = "Atlanta"; const eventAddress = "---"; const directionsURL = "---" + + const sponsorsEnabled = false; // for now + const scheduleData = { saturday: { title: "Saturday, September 27th", From 96c4c68034b8e8cd73323cca6406a8e3b84287a3 Mon Sep 17 00:00:00 2001 From: ayush jaiswal Date: Thu, 7 Aug 2025 12:27:31 -0400 Subject: [PATCH 4/5] uhhhh --- src/routes/atlanta/+page.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/atlanta/+page.svelte b/src/routes/atlanta/+page.svelte index 8bbba12..79d6ce0 100644 --- a/src/routes/atlanta/+page.svelte +++ b/src/routes/atlanta/+page.svelte @@ -11,6 +11,7 @@ const sponsorsEnabled = false; // for now + // schedule not final const scheduleData = { saturday: { title: "Saturday, September 27th", From 11df4607c4776b8ad255fb256a91623d8cae38ad Mon Sep 17 00:00:00 2001 From: Gus Ruben Date: Tue, 12 Aug 2025 17:43:59 -0400 Subject: [PATCH 5/5] Fix errors in Atlanta site --- src/routes/atlanta/+page.svelte | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/routes/atlanta/+page.svelte b/src/routes/atlanta/+page.svelte index ff2818c..859f29c 100644 --- a/src/routes/atlanta/+page.svelte +++ b/src/routes/atlanta/+page.svelte @@ -35,7 +35,6 @@ import ParticipantSignUp from "$lib/components/ParticipantSignUp.svelte"; import { page } from '$app/stores'; -======= /** @type {import('./$types').PageData} */ export let data; @@ -45,13 +44,10 @@ $: pageTitle = `Daydream ${eventName} - ${eventLocation} Game Jam`; $: pageDescription = `Join Daydream ${eventName} in ${eventLocation}! A teen-led game jam where you'll build amazing games with other high schoolers. Food, workshops, and prizes included!`; $: pageKeywords = `game jam, hackathon, teen coding, Hack Club, game development, ${eventLocation}, ${eventName}`; ->>>>>>> b072260b57270d28ada26123f7a7c73b5f81c085:src/routes/example/+page.svelte - - const sponsorsEnabled = false; // for now // schedule not final - const scheduleData = { - saturday: { + const scheduleData = [ + { title: "Saturday, September 27th", items: [ { event: "Doors open", time: "11:00 AM" }, @@ -66,7 +62,7 @@ { event: "Midnight surprise", time: "12:00 AM" } ] }, - sunday: { + { title: "Sunday, September 28th", items: [ { event: "Breakfast", time: "8:00 AM" }, @@ -74,7 +70,7 @@ { event: "Closing ceremony", time: "12:00 PM" } ] } -}; +]; // Cities where the game jam is happening const cities = `Columbus Lisbon