diff --git a/public/img/header-worksheet.png b/public/img/header-worksheet.png deleted file mode 100755 index 8b728c4..0000000 Binary files a/public/img/header-worksheet.png and /dev/null differ diff --git a/public/img/homepage.jpg b/public/img/homepage.jpg deleted file mode 100755 index ae57118..0000000 Binary files a/public/img/homepage.jpg and /dev/null differ diff --git a/public/tb-logo.ico b/public/tb-logo.ico new file mode 100644 index 0000000..2c4e50a Binary files /dev/null and b/public/tb-logo.ico differ diff --git a/src/components/Educators.vue b/src/components/Educators.vue index af53793..c229ff1 100644 --- a/src/components/Educators.vue +++ b/src/components/Educators.vue @@ -279,9 +279,6 @@ details[open] summary { .body { font-family: 'Quicksand', sans-serif; } -.h2 { - font-size: 40px; -} .bg3 { background: linear-gradient(0deg, rgb(191, 219, 254, 1) 0%, rgba(255, 255, 255) 100%);} .h1-text { @@ -462,22 +459,36 @@ font-family: 'Quicksand', sans-serif; @media screen and (min-width: 1500px) { .hero-text { - font-size: 50px; - - + font-size: 50px; } } @media screen and (max-width: 1499px) { .hero-text { font-size: 40px; - } } @media screen and (max-width: 1199px) { .hero-text { font-size: 30px; - + } +} + + +@media screen and (min-width: 1500px) { + .h2 { + font-size: 40px; + } +} + +@media screen and (max-width: 1499px) { + .h2 { + font-size: 30px; + } +} +@media screen and (max-width: 1199px) { + .h2 { + font-size: 25px; } } @@ -552,7 +563,7 @@ export default { .then(resp => resp.json()) .then(data => { this.faqEducators=data.data - console.log(this.faqEducators) + // console.log(this.faqEducators) }) } diff --git a/src/components/HeroButton.vue b/src/components/HeroButton.vue new file mode 100644 index 0000000..a53f2a7 --- /dev/null +++ b/src/components/HeroButton.vue @@ -0,0 +1,143 @@ + + + + + + \ No newline at end of file diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 169052b..7e02985 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -12,7 +12,7 @@ const { title } = Astro.props; - +
Want your preschool curriculum to bring out the most learned and accomplished children? What is the delay then? With the right classroom curriculum, raise the elegance of teaching and set new levels for your competitors.
- + +Teach toddlers significant lessons which are necessary for their holistic development. Our preschool curriculum is instilled with essential lesson plans necessary for early childhood education.
- +Find relevant helpful articles for marketing preschool solutions below and get to know more about the same.
diff --git a/src/pages/themes/[id].astro b/src/pages/themes/[id].astro index 64ca9fe..ed0757b 100644 --- a/src/pages/themes/[id].astro +++ b/src/pages/themes/[id].astro @@ -40,7 +40,7 @@ const ytvResp = await fetch('https://curriculum-app-api.beanstalkedu.com/items/t 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://curriculum-app-api.beanstalkedu.com/items/themes?limit=3&filter[id][_neq]=' + thisThemesID); const allthemesRespJson = await allthemesResp.json(); const allthemesRespData = allthemesRespJson.data;