From 386bae398e5b328ea9ded6039077a19db9909088 Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Sun, 22 Mar 2026 17:36:20 +0000 Subject: [PATCH 01/14] refactor(SplashViz): migrate from SCSS to Tailwind CSS --- src/components/SplashViz/SplashViz.jsx | 14 +++-- src/components/SplashViz/SplashViz.scss | 74 ------------------------- 2 files changed, 9 insertions(+), 79 deletions(-) delete mode 100644 src/components/SplashViz/SplashViz.scss diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 5427b5602f1b..4680de497c31 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -9,13 +9,16 @@ import TextRotator from "../TextRotater/TextRotater.jsx"; import HomeSVG from "./SplashVizSVG.mjs"; // Load Styling -import "./SplashViz.scss"; +// Tailwind CSS is now used for styling. Custom SCSS removed. export default class SplashViz extends Component { render() { return ( -
-

+
+

bundle your assets @@ -25,11 +28,12 @@ export default class SplashViz extends Component {

Date: Mon, 23 Mar 2026 13:51:49 +0000 Subject: [PATCH 02/14] fix(SplashViz): improve heading spacing by adjusting section padding --- src/components/SplashViz/SplashViz.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 4680de497c31..360ad99a32a0 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -14,7 +14,7 @@ import HomeSVG from "./SplashVizSVG.mjs"; export default class SplashViz extends Component { render() { return ( -
+

Date: Mon, 23 Mar 2026 14:04:15 +0000 Subject: [PATCH 03/14] fix(SplashViz): adjust spacing from navbar using section padding --- src/components/SplashViz/SplashViz.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 360ad99a32a0..d6d5f28f05ab 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -14,9 +14,9 @@ import HomeSVG from "./SplashVizSVG.mjs"; export default class SplashViz extends Component { render() { return ( -
+

bundle your @@ -27,11 +27,13 @@ export default class SplashViz extends Component { styles

+
+ Date: Mon, 23 Mar 2026 14:33:19 +0000 Subject: [PATCH 04/14] fix(SplashViz): match original SCSS spacing using heading margin --- src/components/SplashViz/SplashViz.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index d6d5f28f05ab..9e07df93763a 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -14,9 +14,9 @@ import HomeSVG from "./SplashVizSVG.mjs"; export default class SplashViz extends Component { render() { return ( -
+

bundle your From 98371f381312b3e4b526eb7fe162915bf15a386b Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Mon, 23 Mar 2026 16:20:43 +0000 Subject: [PATCH 05/14] fix(SplashViz): match exact heading font size from original site --- src/components/SplashViz/SplashViz.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 9e07df93763a..cbc8bf3a5bc6 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -16,7 +16,7 @@ export default class SplashViz extends Component { return (

bundle your From 7970f44bd78865041cbb068d7b2557f27b0d8456 Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Wed, 25 Mar 2026 19:06:34 +0000 Subject: [PATCH 06/14] fix(SplashViz): refine heading structure and spacing for improved readability --- src/components/SplashViz/SplashViz.jsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index cbc8bf3a5bc6..79613d5663a2 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -15,19 +15,15 @@ export default class SplashViz extends Component { render() { return (
-

- bundle your - - assets - scripts - images - styles - +

+ bundle your + + assets + scripts + images + styles +

-
Date: Thu, 26 Mar 2026 10:06:59 +0000 Subject: [PATCH 07/14] fix(SplashViz): align typography, font weight and spacing with webpack design --- src/components/SplashViz/SplashViz.jsx | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 79613d5663a2..9c9215a65931 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -1,11 +1,14 @@ // Import External Dependencies import { Component } from "react"; +// Global styles / fonts +import "@fontsource/source-sans-pro/300.css"; + // Load Images // Import Components import Cube from "../Cube/Cube.jsx"; -import TextRotator from "../TextRotater/TextRotater.jsx"; +import TextRotater from "../TextRotater/TextRotater.jsx"; import HomeSVG from "./SplashVizSVG.mjs"; // Load Styling @@ -15,14 +18,16 @@ export default class SplashViz extends Component { render() { return (
-

- bundle your - - assets - scripts - images - styles - +

+ bundle your + + + assets + scripts + images + styles + +

Date: Thu, 26 Mar 2026 10:10:52 +0000 Subject: [PATCH 08/14] fix(SplashViz): remove unused font dependency and rely on existing font setup --- src/components/SplashViz/SplashViz.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 9c9215a65931..38c58ff63ec0 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -1,9 +1,6 @@ // Import External Dependencies import { Component } from "react"; -// Global styles / fonts -import "@fontsource/source-sans-pro/300.css"; - // Load Images // Import Components From 176b7948704f0d7ca04034883bf27cdca1a6ca16 Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Thu, 26 Mar 2026 14:35:24 +0000 Subject: [PATCH 09/14] refactor(SplashViz): use clsx for better class management and readability --- src/components/SplashViz/SplashViz.jsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 38c58ff63ec0..63429ffe4d05 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -1,5 +1,6 @@ // Import External Dependencies import { Component } from "react"; +import clsx from "clsx"; // Load Images @@ -14,7 +15,15 @@ import HomeSVG from "./SplashVizSVG.mjs"; export default class SplashViz extends Component { render() { return ( -
+

bundle your From 655d10fbc851d050f21bdf241a050e6befd71c62 Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Thu, 26 Mar 2026 14:38:05 +0000 Subject: [PATCH 10/14] fix(SplashViz): resolve import order and named import lint issues --- src/components/SplashViz/SplashViz.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 63429ffe4d05..5a9e3b78aaca 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -1,6 +1,6 @@ // Import External Dependencies +import { clsx } from "clsx"; import { Component } from "react"; -import clsx from "clsx"; // Load Images From 884487fef7e392f23d6876a59a6ec660d099d54c Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Thu, 26 Mar 2026 16:04:31 +0000 Subject: [PATCH 11/14] refactor(SplashViz): remove clsx and revert to standard --- src/components/SplashViz/SplashViz.jsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 5a9e3b78aaca..38c58ff63ec0 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -1,5 +1,4 @@ // Import External Dependencies -import { clsx } from "clsx"; import { Component } from "react"; // Load Images @@ -15,15 +14,7 @@ import HomeSVG from "./SplashVizSVG.mjs"; export default class SplashViz extends Component { render() { return ( -
+

bundle your From b8f43e4c7f65158d46319f102bba97576d048008 Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:10:16 +0000 Subject: [PATCH 12/14] fix(SplashViz): center cube relative to SVG container --- src/components/SplashViz/SplashViz.jsx | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 38c58ff63ec0..0502243b3b6b 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -26,18 +26,16 @@ export default class SplashViz extends Component {

-
+
+
- + +
); } From 59075010691eafb1215a9ccd7b97e08e30886297 Mon Sep 17 00:00:00 2001 From: Vishal Baraiya <142961593+mr-baraiya@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:33:29 +0000 Subject: [PATCH 13/14] fix(SplashViz): fine-tune section height and spacing to match original layout --- src/components/SplashViz/SplashViz.jsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 0502243b3b6b..e0064a751b10 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -14,9 +14,10 @@ import HomeSVG from "./SplashVizSVG.mjs"; export default class SplashViz extends Component { render() { return ( -
-

- bundle your +
+ {/* TOP TEXT */} +

+ bundle your assets @@ -26,7 +27,9 @@ export default class SplashViz extends Component {

-
+ + {/* CENTER GRAPHIC */} +
Date: Thu, 26 Mar 2026 18:40:32 +0000 Subject: [PATCH 14/14] fix(SplashViz): adjust text spacing to match original layout --- src/components/SplashViz/SplashViz.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index e0064a751b10..1fbd3d1c9063 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -17,7 +17,7 @@ export default class SplashViz extends Component {
{/* TOP TEXT */}

- bundle your + bundle your assets