From c966f9302b6fa2f2c53a2b0bff56cecad0bba403 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Mon, 10 Nov 2025 01:08:36 -0800 Subject: [PATCH] Added YtVideo, set enables on site layout for first prod deploy --- src/components/YtVideo.astro | 9 +++++++++ src/data/site-layout.ts | 10 ++++++++++ 2 files changed, 19 insertions(+) create mode 100644 src/components/YtVideo.astro diff --git a/src/components/YtVideo.astro b/src/components/YtVideo.astro new file mode 100644 index 0000000..ca31301 --- /dev/null +++ b/src/components/YtVideo.astro @@ -0,0 +1,9 @@ +--- +import type {videoConfig} from "@interfaces/video.ts"; + +const config: videoConfig = Astro.props.videoConfig; +--- + \ No newline at end of file diff --git a/src/data/site-layout.ts b/src/data/site-layout.ts index 2b441cf..8f9b77d 100644 --- a/src/data/site-layout.ts +++ b/src/data/site-layout.ts @@ -4,28 +4,34 @@ export const siteLayout: navLink[] = [ {navText: "About", path: ""}, {navText: "Education", path: "education"}, { + enabled: false, navText: "Experiences", path: "experience", children: [ { + enabled: false, navText: "SpaceX", path: "spacex", children: [ { + enabled: false, navText: "Hardware Test Engineer I/II", path: "hardware-test-engineer-i-ii" }, { + enabled: false, navText: "Avionics Test Engineering Internship", path: "avionics-test-engineering-internship" } ] }, { + enabled: false, navText: "OSU CEOAS", path: "osu-ceoas-ocean-mixing-group", children: [ { + enabled: false, navText: "Robotics Oceanographic Surface Sampler", path: "robotic-oceanographic-surface-sampler", }, @@ -37,6 +43,7 @@ export const siteLayout: navLink[] = [ ] }, { + enabled: false, navText: "OSU SARL", path: "osu-sinnhuber-aquatic-research-laboratory", children: [ @@ -46,6 +53,7 @@ export const siteLayout: navLink[] = [ path: "team-lead", }, { + enabled: false, navText: "Zebrafish Embryo Pick and Plate", path: "zebrafish-embryo-pick-and-plate", }, @@ -72,10 +80,12 @@ export const siteLayout: navLink[] = [ ] }, { + enabled: false, navText: "OSU Robotics Club", path: "osu-robotics-club", children: [ { + enabled: false, navText: "Mars Rover Software Team Lead", path: "mars-rover-software-team-lead", },