@@ -151,7 +151,7 @@ import Footer from "../../components/Footer.vue";
-

+
{data.about_the_video}
@@ -166,7 +166,7 @@ import Footer from "../../components/Footer.vue";
{allthemesRespData.map((data: { theme_slug: string | undefined; theme_icon: string | undefined; }) =>
)}
diff --git a/src/pages/themes/index.astro b/src/pages/themes/index.astro
index 4febb9d..382a8b9 100644
--- a/src/pages/themes/index.astro
+++ b/src/pages/themes/index.astro
@@ -2,17 +2,17 @@
import Layout from "../../layouts/Layout.astro";
import Menu from "../../components/Menu.astro";
-const response = await fetch('https://curriculum-app-api.beanstalkedu.com/items/themes?filter[status][_eq]=published');
+const response = await fetch('https://management.beanstalkedu.com/items/themes?filter[status][_eq]=published');
const data = await response.json();
const themes = data.data;
const thisThemesID = data.data[0].id;
-const tciResp = await fetch('https://curriculum-app-api.beanstalkedu.com/items/theme_celebration_ideas?filter[theme_key][_in]=' + thisThemesID );
+const tciResp = await fetch('https://management.beanstalkedu.com/items/theme_celebration_ideas?filter[theme_key][_in]=' + thisThemesID );
const tciRespJson = await tciResp.json();
const tciRespData = tciRespJson.data.reverse().slice(0, 4);
-const twsResp = await fetch('https://curriculum-app-api.beanstalkedu.com/items/theme_workshets?filter[theme_key][_in]=' + thisThemesID);
+const twsResp = await fetch('https://management.beanstalkedu.com/items/theme_workshets?filter[theme_key][_in]=' + thisThemesID);
const twsRespJson = await twsResp.json();
const twsRespData = twsRespJson.data.reverse().slice(0, 3);
const twsRespData2 = twsRespJson.data[3];
@@ -20,17 +20,17 @@ const twsRespData2 = twsRespJson.data[3];
import ThemesVideos from "../../components/ThemesVideos.vue";
import ThemesAudioBook from "../../components/ThemesAudioBook.vue";
-const tcsResp = await fetch('https://curriculum-app-api.beanstalkedu.com/items/theme_celebration_stories?filter[theme_key][_in]=' + thisThemesID);
+const tcsResp = await fetch('https://management.beanstalkedu.com/items/theme_celebration_stories?filter[theme_key][_in]=' + thisThemesID);
const tcsRespJson = await tcsResp.json();
const tcsRespData = tcsRespJson.data.reverse().slice(0, 4);
import SubmitCelebration from "../../components/SubmitCelebration.vue";
-const ytvResp = await fetch('https://curriculum-app-api.beanstalkedu.com/items/theme_youtube_videos?filter[theme_key][_in]=' + thisThemesID);
+const ytvResp = await fetch('https://management.beanstalkedu.com/items/theme_youtube_videos?filter[theme_key][_in]=' + thisThemesID);
const ytvRespJson = await ytvResp.json();
const ytvRespData = ytvRespJson.data.reverse();
-const allthemesResp = await fetch('https://curriculum-app-api.beanstalkedu.com/items/themes?filter[status][_eq]=draft&limit=3');
+const allthemesResp = await fetch('https://management.beanstalkedu.com/items/themes?filter[status][_eq]=draft&limit=3');
const allthemesRespJson = await allthemesResp.json();
const allthemesRespData = allthemesRespJson.data;
@@ -43,7 +43,7 @@ import Footer from "../../components/Footer.vue";
@@ -59,7 +59,7 @@ import Footer from "../../components/Footer.vue";