diff --git a/src/pages/occasion/index.astro b/src/pages/occasion/index.astro index f93766d..034c974 100644 --- a/src/pages/occasion/index.astro +++ b/src/pages/occasion/index.astro @@ -52,12 +52,12 @@ import Footer from "../../components/Footer.vue"; {occassion[0].occassion_text - +

Check Out Our Occasion Blog

Find relevant helpful articles for marketing preschool solutions below and get to know more about the same.

- {blogRespData.map((data) => + {blogRespData.map((data: { title: string | undefined; date: string | undefined; slug: string | undefined; img: string | undefined; }) =>
@@ -81,7 +81,7 @@ import Footer from "../../components/Footer.vue";
Worksheets

{occassion[0].worksheets_text}

- {wkstRespData.map((data) => + {wkstRespData.map((data: { occassion_worksheets_img: string | undefined; file: string | undefined; }) =>
@@ -112,7 +112,7 @@ import Footer from "../../components/Footer.vue";

Celebretion stories

{occassion[0].celebretion_stories_text}

- {csRespData.map((data) => + {csRespData.map((data: { img: string | undefined; title: string | undefined; text: string | undefined; }) =>
{data.title}
@@ -128,7 +128,7 @@ import Footer from "../../components/Footer.vue";
YouTube Videos for your reference

{occassion[0].youtube_text}

- {ytRespData.map((data) => + {ytRespData.map((data: { youtube_id: string | undefined; youtube_thumbnail: string | undefined; about_the_video: string | undefined; }) =>
@@ -144,7 +144,7 @@ import Footer from "../../components/Footer.vue";

Frequently Asked Questions

- {faqRespData.map((data) => + {faqRespData.map((data: { title: string | undefined; youtube_thumbnail: string | undefined; about_the_video: string | undefined; }) =>
{data.title}
@@ -161,7 +161,7 @@ import Footer from "../../components/Footer.vue";