From 1bf2a0505000fcbaa0cd68560f537e9602cfaf7f Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:02:06 -0700 Subject: [PATCH 01/28] Update index.html From 511fd776e329eaa29d93794334c85cad03b7f0f0 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:02:55 -0700 Subject: [PATCH 02/28] Update drivers.html --- drivers.html | 42 +++++------------------------------------- 1 file changed, 5 insertions(+), 37 deletions(-) diff --git a/drivers.html b/drivers.html index b9acecf..de8e4b3 100644 --- a/drivers.html +++ b/drivers.html @@ -3,32 +3,15 @@ - - Drivers - iMOB Racing + Drivers - - - - +
+

Meet Our Drivers

+
-
-

Meet the Drivers

+
Anthony Yorba @@ -52,20 +35,5 @@

Daniel Bertholf

- -
- -

© 2024 iMOB Racing. All rights reserved.

-

Contact: info@imobracingonline.com | Phone: (530) 420-5850

-
- - - - From 0010ee325559c650d7389ffa343ef227e963cfe7 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:03:49 -0700 Subject: [PATCH 03/28] Update styles.css From c62229799a620647e005cc5960c48674d9aa3c72 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:04:20 -0700 Subject: [PATCH 04/28] Create firebase.json --- firebase.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 firebase.json diff --git a/firebase.json b/firebase.json new file mode 100644 index 0000000..93fb369 --- /dev/null +++ b/firebase.json @@ -0,0 +1,16 @@ +{ + "hosting": { + "public": "public", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ] + } +} From 422b8d7c7feacbdf2086fc9423ced3f6f35a6d1a Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:04:51 -0700 Subject: [PATCH 05/28] Create .firebaserc --- .firebaserc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .firebaserc diff --git a/.firebaserc b/.firebaserc new file mode 100644 index 0000000..954c809 --- /dev/null +++ b/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "imob-racing-website" + } +} From 146abc4c9db9e0cc4674b9755c6ded3bb373e5a1 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:16:41 -0700 Subject: [PATCH 06/28] Create .gitignore --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b917edc --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/node_modules +/.firebase +/.firebaserc +/firebase-debug.log +/firebase-debug.*.log From e1273fa7f61eb6fdcfd59896b2306f2c1ec28da4 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:50:35 -0700 Subject: [PATCH 07/28] Update login.html --- login.html | 68 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 46 insertions(+), 22 deletions(-) diff --git a/login.html b/login.html index 4dc534d..d64a56b 100644 --- a/login.html +++ b/login.html @@ -9,56 +9,80 @@

Login

- - - - - +
+ + + + + +
From fb046cb7e9613d7ddabbe66936bb3ab9029a7524 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:51:25 -0700 Subject: [PATCH 08/28] Update styles.css From 1f1b29d8681f5e62a6392130002dff8f6633ba30 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:51:44 -0700 Subject: [PATCH 09/28] Update scripts.js --- scripts.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts.js b/scripts.js index 09f7ea3..9c41358 100644 --- a/scripts.js +++ b/scripts.js @@ -56,7 +56,7 @@ document.addEventListener('DOMContentLoaded', () => { // Fetch YouTube videos function fetchYouTubeVideos() { - $.get(`https://www.googleapis.com/youtube/v3/search?key=${API_KEY}&channelId=${CHANNEL_ID}&part=snippet,id&order=date&maxResults=${MAX_RESULTS}`, function(data) { + return $.get(`https://www.googleapis.com/youtube/v3/search?key=${API_KEY}&channelId=${CHANNEL_ID}&part=snippet,id&order=date&maxResults=${MAX_RESULTS}`, function(data) { let videoItems = ''; data.items.forEach(item => { if (item.id.kind === "youtube#video") { @@ -69,6 +69,8 @@ document.addEventListener('DOMContentLoaded', () => { }); $('.media-carousel').html(videoItems); initializeCarousel(); + }).fail(function(error) { + console.error('Error fetching YouTube videos:', error); }); } @@ -149,8 +151,7 @@ document.addEventListener('DOMContentLoaded', () => { AOS.init(); // Initialize the media carousel - fetchYouTubeVideos(); - initializeCarousel(); + fetchYouTubeVideos().then(initializeCarousel); // Initialize Spotlight carousel initializeSpotlightCarousel(); From 0f288c2e1f42844e9fffad68a08e2c3c5d8264ef Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 02:52:57 -0700 Subject: [PATCH 10/28] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 51a945c..32a1abd 100644 --- a/index.html +++ b/index.html @@ -44,7 +44,7 @@

Welcome to iMOB Racing

-
-

Upcoming Events

-
-
    +
    +

    Upcoming Events

    +
    +
    +
    • TT Event 3

      Date: June 22, 2024

      @@ -165,11 +166,12 @@

      TT Event 4

      Location: Thunderhill, Willows, Ca

    -
    - -
    -
    +
    + +
    +
+

Media Gallery

From 04b3f296999e679e7c1b2c208154181cadfd7c7c Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:02:28 -0700 Subject: [PATCH 13/28] Update index.html --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f64fd6e..14ca58a 100644 --- a/index.html +++ b/index.html @@ -150,7 +150,7 @@

AI Integration

-
+

Upcoming Events

@@ -168,11 +168,12 @@

TT Event 4

- +
+

Media Gallery

-

Social Media & Polls

-
- -
- +

Social Media & Polls

+
+ -
+
+ +
+ +

AI Integration

From 513dfce7f764d3ca1d8a456bb45074724147a686 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:14:39 -0700 Subject: [PATCH 17/28] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 8e25a66..4c45471 100644 --- a/index.html +++ b/index.html @@ -180,7 +180,7 @@

TT Event 4

- +
From bcf44383a79586c03cfebdabcee9965b7ddfccb1 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:24:37 -0700 Subject: [PATCH 18/28] Update scripts.js --- scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts.js b/scripts.js index 0fc042d..24fb405 100644 --- a/scripts.js +++ b/scripts.js @@ -144,7 +144,7 @@ document.addEventListener('DOMContentLoaded', () => { })(); // Load Google Calendar - const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=YOUR_CALENDAR_ID&ctz=America%2FLos_Angeles`; + const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=GOOGLE_CALENDAR_ID&ctz=America%2FLos_Angeles`; document.getElementById('google-calendar').src = googleCalendarSrc; // Initialize AOS From 4a93e65e12efc51c5e8086e8667f201b09e66cd5 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:26:09 -0700 Subject: [PATCH 19/28] Update scripts.js --- scripts.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts.js b/scripts.js index 24fb405..3b42575 100644 --- a/scripts.js +++ b/scripts.js @@ -143,6 +143,8 @@ document.addEventListener('DOMContentLoaded', () => { (d.head || d.body).appendChild(s); })(); + const GOOGLE_CALENDAR_ID = CONFIG.GOOGLE_CALENDAR_ID; + // Load Google Calendar const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=GOOGLE_CALENDAR_ID&ctz=America%2FLos_Angeles`; document.getElementById('google-calendar').src = googleCalendarSrc; From ad79889c0f5ef44ea86ba0fe484f45bb9d695704 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:28:54 -0700 Subject: [PATCH 20/28] Update scripts.js --- scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts.js b/scripts.js index 3b42575..add5dd7 100644 --- a/scripts.js +++ b/scripts.js @@ -146,7 +146,7 @@ document.addEventListener('DOMContentLoaded', () => { const GOOGLE_CALENDAR_ID = CONFIG.GOOGLE_CALENDAR_ID; // Load Google Calendar - const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=GOOGLE_CALENDAR_ID&ctz=America%2FLos_Angeles`; + const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=${GOOGLE_CALENDAR_ID}&ctz=America%2FLos_Angeles`; document.getElementById('google-calendar').src = googleCalendarSrc; // Initialize AOS From 5d509c234d96b6c728fbd0994616cd33096e9b8a Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:38:13 -0700 Subject: [PATCH 21/28] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4c45471..2cc93ef 100644 --- a/index.html +++ b/index.html @@ -180,7 +180,7 @@

TT Event 4

- +
From 342d5fe68f95be8a7bfb9d5dcdcffc2531081e3f Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:39:22 -0700 Subject: [PATCH 22/28] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2cc93ef..8e25a66 100644 --- a/index.html +++ b/index.html @@ -180,7 +180,7 @@

TT Event 4

- +
From 55a531108b8158620dd2d0cb64449b1abbe380a6 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:42:31 -0700 Subject: [PATCH 23/28] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 8e25a66..807505c 100644 --- a/index.html +++ b/index.html @@ -180,8 +180,8 @@

TT Event 4

- -
+ + From c876acb6b9565258d25d1a95c3dbfb0b0eef1233 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:47:02 -0700 Subject: [PATCH 24/28] Update scripts.js --- scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts.js b/scripts.js index add5dd7..1297204 100644 --- a/scripts.js +++ b/scripts.js @@ -146,7 +146,7 @@ document.addEventListener('DOMContentLoaded', () => { const GOOGLE_CALENDAR_ID = CONFIG.GOOGLE_CALENDAR_ID; // Load Google Calendar - const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=${GOOGLE_CALENDAR_ID}&ctz=America%2FLos_Angeles`; + const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=${CONFIG.GOOGLE_CALENDAR_ID}&ctz=America%2FLos_Angeles`; document.getElementById('google-calendar').src = googleCalendarSrc; // Initialize AOS From 2d608f26b089f9a412841d23d11ae5cdf16d6a3f Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:48:31 -0700 Subject: [PATCH 25/28] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 807505c..fc79e7e 100644 --- a/index.html +++ b/index.html @@ -180,8 +180,8 @@

TT Event 4

- -
+ + From 17ffc51d34b9908e3f1fe68037e22aeba9f57447 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 03:49:41 -0700 Subject: [PATCH 26/28] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index fc79e7e..aa5e4ac 100644 --- a/index.html +++ b/index.html @@ -180,7 +180,7 @@

TT Event 4

- +
From 780fb61be95f2d2c4e0d37d6a4425545859b682f Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 05:09:11 -0700 Subject: [PATCH 27/28] Update scripts.js --- scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts.js b/scripts.js index 1297204..d1496aa 100644 --- a/scripts.js +++ b/scripts.js @@ -146,7 +146,7 @@ document.addEventListener('DOMContentLoaded', () => { const GOOGLE_CALENDAR_ID = CONFIG.GOOGLE_CALENDAR_ID; // Load Google Calendar - const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=${CONFIG.GOOGLE_CALENDAR_ID}&ctz=America%2FLos_Angeles`; + const googleCalendarSrc = `https://calendar.google.com/calendar/embed?src=${config.GOOGLE_CALENDAR_ID}&ctz=America%2FLos_Angeles`; document.getElementById('google-calendar').src = googleCalendarSrc; // Initialize AOS From aa1a5033122823fe0b87e15777fe6478f7130f08 Mon Sep 17 00:00:00 2001 From: sslinkyy Date: Wed, 12 Jun 2024 05:10:14 -0700 Subject: [PATCH 28/28] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index aa5e4ac..807505c 100644 --- a/index.html +++ b/index.html @@ -180,8 +180,8 @@

TT Event 4

- -
+ +