From 708bc179c9c46e07fa1a8536e62ed402d74a20e6 Mon Sep 17 00:00:00 2001
From: Pratiksha Khandagale <pratiksha_k@techjoomla.com>
Date: Thu, 29 Aug 2024 11:57:49 +0530
Subject: [PATCH] Chat bot icon changes

---
 .../bot-messages/bot-messages.component.ts    |  1 -
 .../qrcode-popup/qrcode-popup.component.ts    |  2 -
 src/app/config.ts                             |  1 -
 src/app/pages/player/player.page.ts           |  1 -
 .../qr-scan-result/qr-scan-result.page.ts     |  2 -
 src/app/pages/splash/splash.page.ts           |  2 -
 .../services/api/http.capacitor.adapter.ts    | 23 ---------
 .../services/app-update/app-update.service.ts |  3 +-
 src/app/services/recording.service.ts         |  2 -
 src/app/services/search.service.ts            |  1 -
 .../services/sources/preprocessor.service.ts  |  1 -
 .../telemetry/telemetry.auto.sync.service.ts  |  1 -
 src/app/tabs/tabs.page.ts                     |  1 -
 src/assets/icon/book.svg                      | 28 +++++-----
 src/assets/icon/parents.svg                   | 51 ++++++++++++-------
 src/assets/icon/teacher.svg                   | 27 ++++++++--
 www/assets/appConfig/learningresources.json   | 10 ++--
 www/assets/icon/book.svg                      | 28 +++++-----
 www/assets/icon/parents.svg                   | 51 ++++++++++++-------
 www/assets/icon/teacher.svg                   | 27 ++++++++--
 www/ngsw.json                                 | 10 ++--
 21 files changed, 151 insertions(+), 122 deletions(-)

diff --git a/src/app/components/bot-messages/bot-messages.component.ts b/src/app/components/bot-messages/bot-messages.component.ts
index 0bb0f714..5c546b19 100644
--- a/src/app/components/bot-messages/bot-messages.component.ts
+++ b/src/app/components/bot-messages/bot-messages.component.ts
@@ -411,7 +411,6 @@ export class BotMessagesComponent implements OnInit, AfterViewInit {
           }
         }
       });
-      console.log('result count ', result);
       this.botMessageEvent.emit({ audio: result.audio, text: result.text, duration: botDuration / 1000 })
     } else {
       this.botMessageEvent.emit({ audio: 0, text: 0, duration: botDuration / 1000 })
diff --git a/src/app/components/qrcode-popup/qrcode-popup.component.ts b/src/app/components/qrcode-popup/qrcode-popup.component.ts
index dafd7ec7..5603f9a7 100644
--- a/src/app/components/qrcode-popup/qrcode-popup.component.ts
+++ b/src/app/components/qrcode-popup/qrcode-popup.component.ts
@@ -114,8 +114,6 @@ export class QrcodePopupComponent  implements OnInit {
         const tracks = stream.getTracks();
         tracks.forEach(function(track: MediaStreamTrack) {
             track.stop();
-            console.log('Track stopped:', track.readyState);
-
         });
         this.videoElement.srcObject = null;
     }
diff --git a/src/app/config.ts b/src/app/config.ts
index be11a0cf..859d8879 100644
--- a/src/app/config.ts
+++ b/src/app/config.ts
@@ -2,7 +2,6 @@
 const urlObj = new URL(document.baseURI);
 const hostname = urlObj.hostname; // e.g., "subdomain.example.com"
 const domainParts = hostname.split('.');
-console.log(domainParts);
 const jsonFilename = domainParts[0] + '.json';
 const jsonUrl = `../assets/appConfig/${jsonFilename}`;
 export const ConfigVariables = fetch(jsonUrl)
diff --git a/src/app/pages/player/player.page.ts b/src/app/pages/player/player.page.ts
index b8ccc4c6..edfaf5f8 100644
--- a/src/app/pages/player/player.page.ts
+++ b/src/app/pages/player/player.page.ts
@@ -124,7 +124,6 @@ export class PlayerPage implements OnInit {
           this.playerEvents(event);
         });
         epubElement.addEventListener('telemetryEvent', (event) => {
-          console.log("On telemetryEvent", event);
           this.playerTelemetryEvents(event);
         });
         this.video.nativeElement.append(epubElement);
diff --git a/src/app/pages/qr-scan-result/qr-scan-result.page.ts b/src/app/pages/qr-scan-result/qr-scan-result.page.ts
index 9b23266c..f6bb31f2 100644
--- a/src/app/pages/qr-scan-result/qr-scan-result.page.ts
+++ b/src/app/pages/qr-scan-result/qr-scan-result.page.ts
@@ -36,7 +36,6 @@ export class QrScanResultPage implements OnInit, OnTabViewWillEnter {
     let extras = this.router.getCurrentNavigation()?.extras;
     if(extras) {
       this.scanText = extras.state?.['scannedData'];
-      console.log('scan text ', this.scanText);
     }
   }
 
@@ -62,7 +61,6 @@ export class QrScanResultPage implements OnInit, OnTabViewWillEnter {
     this.headerService.showStatusBar(false);
     this.contentService.getContents(this.scanText).then((result) => {
       this.showSheenAnimation = false;
-      console.log('Result: ', result);
       this.configContents = result;
     }).catch(err => {
       this.showSheenAnimation = false;
diff --git a/src/app/pages/splash/splash.page.ts b/src/app/pages/splash/splash.page.ts
index d008a9da..990fb430 100644
--- a/src/app/pages/splash/splash.page.ts
+++ b/src/app/pages/splash/splash.page.ts
@@ -34,9 +34,7 @@ export class SplashPage implements OnInit {
     
   async ngOnInit() {
     ConfigVariables.then(config => {
-      console.log('Configuration:', config);
       this.configVariables = config;
-      // Use the config data as needed
     }).catch(error => {
       console.error('Failed to load configuration:', error);
     });
diff --git a/src/app/services/api/http.capacitor.adapter.ts b/src/app/services/api/http.capacitor.adapter.ts
index 3c873aa2..c71fc6e4 100644
--- a/src/app/services/api/http.capacitor.adapter.ts
+++ b/src/app/services/api/http.capacitor.adapter.ts
@@ -165,29 +165,6 @@ export class HttpCapacitorAdapter implements HttpClient {
                 mappedContent.push(content);
             });
             }
-
-            // response.data.forEach((provider : any) => {
-            //     // Traverse through the items array of each provider
-            //     provider.items.forEach((item: any) => {
-            //         console.log("1");
-            //         // Map item properties to ContentMetaData interface format
-            //         const content: SearchContentMetaData = {
-            //             bpp_id: item.bpp_id,
-            //             bpp_uri: item.bpp_uri,
-            //             provider_id: item.provider_id,
-            //             provider_name: item.provider_name,
-            //             unique_id: item.unique_id,
-            //             id: item.id,
-            //             item_id: item.item_id,
-            //             title: item.title,
-            //             image_url: item?.image_url.length ? (item?.descriptor?.images[0].url.split("/"))[0] : '', // You can populate this based on item properties
-            //             description: item.description.long_desc || item.description.short_desc || ''
-            //         };
-            //         // Push the mapped object into the array
-            //         mappedContent.push(content);
-            //         console.log(mappedContent);
-            //     });
-            // });
             
             if(mappedContent){
                 let apiResponse: ApiResponse;
diff --git a/src/app/services/app-update/app-update.service.ts b/src/app/services/app-update/app-update.service.ts
index f6d71568..54cda49c 100644
--- a/src/app/services/app-update/app-update.service.ts
+++ b/src/app/services/app-update/app-update.service.ts
@@ -20,7 +20,6 @@ export class AppUpdateService {
     async checkForUpdate() {
         const result = await AppUpdate.getAppUpdateInfo();
         // const result = await this.simulateCheckForUpdate(); // for testing
-        console.log('Update available:', result.updateAvailability === AppUpdateAvailability.UPDATE_AVAILABLE);
 
         if (result.updateAvailability === AppUpdateAvailability.UPDATE_AVAILABLE) {
             if (this.platform.is('android')) {
@@ -57,4 +56,4 @@ export class AppUpdateService {
     //         availableVersion: '2.0.0'
     //     };
     // }
-}
\ No newline at end of file
+}
diff --git a/src/app/services/recording.service.ts b/src/app/services/recording.service.ts
index ee5a56fb..08979d87 100644
--- a/src/app/services/recording.service.ts
+++ b/src/app/services/recording.service.ts
@@ -32,7 +32,6 @@ export class RecordingService implements OnInit {
       gestureName: 'swipe',
       direction: 'x',
       onStart: (ev) => { 
-        console.log('swipe left start ', ev); 
         Haptics.impact({style: ImpactStyle.Light});
       },
       onMove: (ev) => { 
@@ -41,7 +40,6 @@ export class RecordingService implements OnInit {
         this.cancelRecording = true;
       },
       onEnd: ev => {
-        console.log('swipe left end ', ev);
         Haptics.impact({style: ImpactStyle.Light});
         this.recording = false;
         this.recordEvent.next(false);
diff --git a/src/app/services/search.service.ts b/src/app/services/search.service.ts
index a74325cc..55cdcf97 100644
--- a/src/app/services/search.service.ts
+++ b/src/app/services/search.service.ts
@@ -52,7 +52,6 @@ export class SearchService {
       }
     }
     let body = JSON.stringify(requestBody)
-    console.log("body ", body);
     const apiRequest = new ApiRequest.Builder()
       .withHost(config.api.BASE_URL)
       .withPath(config.api.CONTENT_SEARCH_API)
diff --git a/src/app/services/sources/preprocessor.service.ts b/src/app/services/sources/preprocessor.service.ts
index b0943083..07c26932 100644
--- a/src/app/services/sources/preprocessor.service.ts
+++ b/src/app/services/sources/preprocessor.service.ts
@@ -16,7 +16,6 @@ export class PreprocessorService {
     config.forEach(obj => {
       this.contentConfig.push(obj);
     })
-    console.log('contentconfig ', this.contentConfig);
     this.sourceEvent.next(this.contentConfig);
   }
 }
diff --git a/src/app/services/telemetry/telemetry.auto.sync.service.ts b/src/app/services/telemetry/telemetry.auto.sync.service.ts
index fd42bd18..f088032b 100644
--- a/src/app/services/telemetry/telemetry.auto.sync.service.ts
+++ b/src/app/services/telemetry/telemetry.auto.sync.service.ts
@@ -26,7 +26,6 @@ export class TelemetryAutoSyncService {
             filter(() => this.shouldSync),
             tap(() => this.telemetryService.sync().pipe(
                 tap((stat) => {
-                    // console.log('AUTO_SYNC_INVOKED_SYNC----------------------------------------------', stat);
                 }),
                 catchError((e) => {
                     console.error(e);
diff --git a/src/app/tabs/tabs.page.ts b/src/app/tabs/tabs.page.ts
index f799e0a0..990907b2 100644
--- a/src/app/tabs/tabs.page.ts
+++ b/src/app/tabs/tabs.page.ts
@@ -32,7 +32,6 @@ export class TabsPage implements OnTabViewWillEnter, OnInit{
     private storage : StorageService,
     private modalCtrl: ModalController) {
       ConfigVariables.then(config => {
-        console.log('Configuration:', config);
         this.configVariables = config;
         // Use the config data as needed
       }).catch(error => {
diff --git a/src/assets/icon/book.svg b/src/assets/icon/book.svg
index bef2aef6..2e3a4e07 100644
--- a/src/assets/icon/book.svg
+++ b/src/assets/icon/book.svg
@@ -1,14 +1,14 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="25" height="19" viewBox="0 0 25 19" fill="">
-    <path
-        d="M4.17143 6.10352e-05C4.17078 6.10352e-05 4.17006 6.10352e-05 4.16941 6.10352e-05C3.94242 6.10352e-05 3.72892 0.0885461 3.56771 0.249355C3.40472 0.411941 3.31494 0.628427 3.31494 0.858892V13.7369C3.31494 14.2092 3.70064 14.5943 4.17482 14.5955C6.17386 14.6003 9.52304 15.0169 11.8335 17.4348V3.95757C11.8335 3.79749 11.7926 3.6471 11.7155 3.52266C9.81913 0.468749 6.17499 0.00474792 4.17143 6.10352e-05Z"
-        fill="" />
-    <path
-        d="M21.6852 13.7369V0.858831C21.6852 0.628366 21.5955 0.41188 21.4325 0.249294C21.2713 0.0884851 21.0576 0 20.8309 0C20.8301 0 20.8294 0 20.8288 0C18.8253 0.00476769 15.1811 0.468769 13.2847 3.52268C13.2076 3.64712 13.1667 3.79751 13.1667 3.95759V17.4347C15.4772 15.0169 18.8264 14.6002 20.8254 14.5954C21.2995 14.5942 21.6852 14.2091 21.6852 13.7369Z"
-        fill="" />
-    <path
-        d="M23.6413 2.96991H23.0186V13.7369C23.0186 14.9426 22.0362 15.9258 20.8286 15.9288C19.133 15.9329 16.3372 16.2644 14.3572 18.1384C17.7817 17.3 21.3917 17.845 23.4491 18.3139C23.706 18.3724 23.9714 18.3119 24.1773 18.1479C24.3823 17.9843 24.5 17.7397 24.5 17.4771V3.82858C24.5001 3.35512 24.1148 2.96991 23.6413 2.96991Z"
-        fill="" />
-    <path
-        d="M1.98138 13.7369V2.96991H1.35867C0.885294 2.96991 0.5 3.35512 0.5 3.82858V17.4769C0.5 17.7395 0.617657 17.984 0.822749 18.1477C1.02841 18.3116 1.29362 18.3723 1.55091 18.3136C3.60829 17.8447 7.21841 17.2997 10.6427 18.1382C8.66277 16.2643 5.86697 15.9328 4.17137 15.9287C2.96385 15.9258 1.98138 14.9426 1.98138 13.7369Z"
-        fill="" />
-</svg>
\ No newline at end of file
+<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M486.4 460.8C491.111 460.8 494.934 456.977 494.934 452.267V187.733C494.934 183.023 491.111 179.2 486.4 179.2H477.867V418.133C477.867 432.247 466.381 443.733 452.267 443.733H298.667C282.07 443.733 267.631 455.228 264.354 471.066C263.527 475.025 260.037 477.867 256 477.867C251.964 477.867 248.465 475.025 247.646 471.066C244.369 455.228 229.939 443.733 213.334 443.733H59.7336C45.6194 443.733 34.1336 432.247 34.1336 418.133V179.2H25.6002C20.8898 179.2 17.0669 183.023 17.0669 187.733V452.267C17.0669 456.977 20.8898 460.8 25.6002 460.8H196.352C211.542 460.8 225.69 469.018 234.223 482.782C238.934 490.394 247.074 494.933 256.009 494.933C264.943 494.933 273.084 490.394 277.794 482.782C286.319 469.018 300.467 460.8 315.665 460.8H486.417H486.4Z" fill="white"/>
+<path d="M136.533 29.8667V70.9803C143.044 60.6891 151.552 52.3179 162.133 45.6704V29.8752C162.133 22.8181 156.39 17.0752 149.333 17.0752C142.276 17.0752 136.533 22.8096 136.533 29.8667Z" fill="white"/>
+<path d="M375.467 29.8667C375.467 22.8096 369.724 17.0667 362.667 17.0667C355.61 17.0667 349.867 22.8096 349.867 29.8667V45.6619C360.448 52.3093 368.956 60.6891 375.467 70.9717V29.8667Z" fill="white"/>
+<path d="M110.933 264.533V290.133H136.533V256C136.533 250.231 137.318 244.599 138.701 239.147C137.975 239.087 137.267 238.933 136.533 238.933C122.419 238.933 110.933 250.419 110.933 264.533Z" fill="white"/>
+<path d="M256 230.4C344.175 230.4 375.467 184.431 375.467 145.067C375.467 70.4171 343.091 42.6667 256 42.6667C168.909 42.6667 136.533 70.4171 136.533 145.067C136.533 184.431 167.825 230.4 256 230.4ZM256 68.2667C306.637 68.2667 358.4 75.8188 358.4 131.789C358.4 176.751 312.465 213.333 256 213.333C199.535 213.333 153.6 176.751 153.6 131.789C153.6 75.8102 205.363 68.2667 256 68.2667Z" fill="white"/>
+<path d="M59.7335 426.667H213.334C226.227 426.667 238.234 431.394 247.467 439.279V307.2H85.3335C80.6146 307.2 76.8002 303.386 76.8002 298.667C76.8002 293.948 80.6146 290.133 85.3335 290.133H93.8669V264.533C93.8669 241.007 113.007 221.867 136.534 221.867C139.469 221.867 142.353 222.191 145.178 222.788C146.867 219.767 148.804 216.866 150.963 214.11C130.91 196.548 119.467 172.919 119.467 145.067H59.7335C55.0231 145.067 51.2002 148.89 51.2002 153.6V418.133C51.2002 422.844 55.0231 426.667 59.7335 426.667ZM85.3335 332.8H213.334C218.052 332.8 221.867 336.614 221.867 341.333C221.867 346.052 218.052 349.867 213.334 349.867H85.3335C80.6146 349.867 76.8002 346.052 76.8002 341.333C76.8002 336.614 80.6146 332.8 85.3335 332.8ZM85.3335 375.467H170.667C175.386 375.467 179.2 379.281 179.2 384C179.2 388.719 175.386 392.533 170.667 392.533H85.3335C80.6146 392.533 76.8002 388.719 76.8002 384C76.8002 379.281 80.6146 375.467 85.3335 375.467Z" fill="white"/>
+<path d="M298.667 145.067C303.379 145.067 307.2 139.336 307.2 132.267C307.2 125.197 303.379 119.467 298.667 119.467C293.954 119.467 290.133 125.197 290.133 132.267C290.133 139.336 293.954 145.067 298.667 145.067Z" fill="white"/>
+<path d="M256 196.267C303.053 196.267 341.333 167.339 341.333 131.789C341.333 103.108 327.057 85.3333 256 85.3333C184.943 85.3333 170.667 103.108 170.667 131.789C170.667 167.339 208.947 196.267 256 196.267ZM298.667 102.4C312.781 102.4 324.267 115.797 324.267 132.267C324.267 148.736 312.781 162.133 298.667 162.133C284.552 162.133 273.067 148.736 273.067 132.267C273.067 115.797 284.552 102.4 298.667 102.4ZM247.467 162.133H264.533C269.252 162.133 273.067 165.948 273.067 170.667C273.067 175.386 269.252 179.2 264.533 179.2H247.467C242.748 179.2 238.933 175.386 238.933 170.667C238.933 165.948 242.748 162.133 247.467 162.133ZM213.333 102.4C227.447 102.4 238.933 115.797 238.933 132.267C238.933 148.736 227.447 162.133 213.333 162.133C199.219 162.133 187.733 148.736 187.733 132.267C187.733 115.797 199.219 102.4 213.333 102.4Z" fill="white"/>
+<path d="M213.333 145.067C218.046 145.067 221.866 139.336 221.866 132.267C221.866 125.197 218.046 119.467 213.333 119.467C208.62 119.467 204.8 125.197 204.8 132.267C204.8 139.336 208.62 145.067 213.333 145.067Z" fill="white"/>
+<path d="M401.067 290.133V264.533C401.067 250.419 389.581 238.933 375.467 238.933C374.733 238.933 374.025 239.087 373.299 239.147C374.682 244.599 375.467 250.231 375.467 256V290.133H401.067Z" fill="white"/>
+<path d="M358.4 256C358.4 244.343 354.5 233.301 347.375 224.299C324.036 239.061 292.77 247.467 256 247.467C219.23 247.467 187.964 239.061 164.625 224.299C157.5 233.301 153.6 244.343 153.6 256V290.133H358.4V256Z" fill="white"/>
+<path d="M452.267 426.667C456.977 426.667 460.8 422.844 460.8 418.133V153.6C460.8 148.89 456.977 145.067 452.267 145.067H392.533C392.533 172.919 381.09 196.548 361.037 214.11C363.196 216.875 365.133 219.767 366.822 222.788C369.647 222.199 372.531 221.867 375.467 221.867C398.993 221.867 418.133 241.007 418.133 264.533V290.133H426.667C431.385 290.133 435.2 293.948 435.2 298.667C435.2 303.386 431.385 307.2 426.667 307.2H264.533V439.279C273.766 431.394 285.773 426.667 298.667 426.667H452.267ZM298.667 332.8H426.667C431.385 332.8 435.2 336.614 435.2 341.333C435.2 346.052 431.385 349.867 426.667 349.867H298.667C293.948 349.867 290.133 346.052 290.133 341.333C290.133 336.614 293.948 332.8 298.667 332.8ZM290.133 384C290.133 379.281 293.948 375.467 298.667 375.467H384C388.719 375.467 392.533 379.281 392.533 384C392.533 388.719 388.719 392.533 384 392.533H298.667C293.948 392.533 290.133 388.719 290.133 384Z" fill="white"/>
+</svg>
diff --git a/src/assets/icon/parents.svg b/src/assets/icon/parents.svg
index d839f6e5..8bcc6cf8 100644
--- a/src/assets/icon/parents.svg
+++ b/src/assets/icon/parents.svg
@@ -1,17 +1,34 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 22 24" fill="">
-    <path
-        d="M4.94905 0C3.39773 0 2.13623 1.2615 2.13623 2.81282C2.13623 4.36414 3.39773 5.67252 4.94905 5.67252C6.50037 5.67252 7.76187 4.36414 7.76187 2.81282C7.76187 1.2615 6.50037 0 4.94905 0Z"
-        fill="" />
-    <path
-        d="M20.4196 2.81282C20.4196 1.2615 19.1581 0 17.6068 0C16.0554 0 14.7939 1.2615 14.7939 2.81282C14.7939 4.36414 16.0554 5.67252 17.6068 5.67252C19.1581 5.67252 20.4196 4.36414 20.4196 2.81282Z"
-        fill="" />
-    <path
-        d="M7.48975 21.3343C9.12657 22.7077 9.52951 23.0946 9.9676 23.4671C10.3851 23.8221 10.9063 24 11.4276 24C11.9536 24 12.4796 23.8187 12.8972 23.4575C13.66 22.7971 14.4866 22.0352 15.2301 21.3834C14.831 21.2493 14.4551 21.0353 14.1415 20.7214C13.3066 19.8875 13.0746 18.6241 13.6025 17.5184C12.1686 16.7593 10.3898 16.7613 8.95518 17.5216C9.48042 18.626 9.24893 19.8878 8.41362 20.7221C8.14274 20.9929 7.82752 21.1972 7.48975 21.3343Z"
-        fill="" />
-    <path
-        d="M11.278 14.111C12.0547 14.111 12.6844 13.4813 12.6844 12.7046C12.6844 11.9278 12.0547 11.2982 11.278 11.2982C10.5013 11.2982 9.87158 11.9278 9.87158 12.7046C9.87158 13.4813 10.5013 14.111 11.278 14.111Z"
-        fill="" />
-    <path
-        d="M11.2779 9.01275C10.3152 7.27809 8.65331 5.77623 6.29645 5.77623C3.0551 5.77623 0.611084 8.40364 0.611084 11.8874C0.611084 14.9647 2.70406 17.2211 6.01184 20.0757C6.49874 20.222 7.04442 20.1015 7.41998 19.727C7.99623 19.1522 7.94954 18.2163 7.36297 17.6833C4.83835 15.3895 3.78149 14.1213 3.50311 12.9312C3.41465 12.5531 3.73879 12.2342 4.12715 12.2342C4.51552 12.2342 4.83202 12.5577 4.98466 12.9149C5.32485 13.7107 6.25667 14.7563 8.06552 16.4163C10.0213 15.2687 12.5354 15.2711 14.4905 16.4164C16.2993 14.7564 17.2312 13.7108 17.5714 12.9149C17.724 12.5577 18.0405 12.2342 18.4289 12.2342C18.8173 12.2342 19.1414 12.5531 19.0529 12.9312C18.7745 14.1213 17.7176 15.3895 15.1931 17.6833C14.6098 18.2134 14.5571 19.1494 15.1354 19.7263C15.6096 20.1991 16.3477 20.2524 16.9034 19.8911C20.4206 16.6867 21.945 14.6988 21.945 11.8873C21.945 8.40354 19.5009 5.77618 16.2596 5.77618C13.9019 5.77623 12.2407 7.27809 11.2779 9.01275ZM14.0908 12.7046C14.0908 14.2559 12.8293 15.5174 11.2779 15.5174C9.72663 15.5174 8.46513 14.2559 8.46513 12.7046C8.46513 11.1533 9.72663 9.89176 11.2779 9.89176C12.8293 9.89176 14.0908 11.1533 14.0908 12.7046Z"
-        fill="" />
-</svg>
\ No newline at end of file
+<svg width="563" height="512" viewBox="0 0 563 512" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_400_71)">
+<path d="M554.748 158.75C554.748 242.28 496.941 309.99 425.621 309.99C399.285 309.99 374.797 300.75 354.377 284.9L296.482 309.99L297.505 306.74L317.87 242.13C304.367 218.22 296.482 189.57 296.482 158.75C296.482 85.62 340.808 24.62 399.703 10.57C408.082 8.57002 416.747 7.52002 425.621 7.52002C496.941 7.52002 554.748 75.23 554.748 158.75Z" fill="white"/>
+<path d="M554.748 158.75C554.748 242.28 496.941 309.99 425.621 309.99C399.285 309.99 374.797 300.75 354.377 284.9L296.482 309.99L297.505 306.74L341.28 268.23C346.603 263.3 354.861 261.51 361.667 264.56C369.189 267.93 385.804 281.28 402.166 283.66C470.452 293.55 526.543 233.41 526.543 154.03C526.543 77.32 470.397 14.7 399.703 10.57C408.082 8.57002 416.747 7.52002 425.621 7.52002C496.941 7.52002 554.748 75.23 554.748 158.75Z" fill="white"/>
+<path d="M281.611 361.46V504.5H8.24836V361.46C8.18238 348.78 18.6177 338.08 32.4618 336.65L120.54 328.46H169.33L257.398 336.65C271.242 338.08 281.688 348.78 281.611 361.46Z" fill="white"/>
+<path d="M281.611 361.46V504.5H8.24854V488.73H239.119C248.832 488.73 256.705 481.57 256.705 472.737V373.66C256.705 364.872 250.359 357.127 241.1 354.612L144.776 328.459H169.33L257.398 336.649C271.242 338.08 281.688 348.78 281.611 361.46Z" fill="white"/>
+<path d="M167.747 322.203C168.055 324.493 168.56 326.653 169.33 328.463C169.33 340.723 158.399 350.663 144.928 350.663C131.456 350.663 120.536 340.723 120.536 328.463C121.317 326.613 121.834 324.403 122.142 322.053C123.032 315.113 122.054 306.953 120.536 303.193H169.329C167.791 306.983 166.812 315.233 167.747 322.203Z" fill="white"/>
+<path d="M167.747 322.203C160.764 325.343 153.011 326.993 145.104 326.973C137.075 326.983 129.224 325.283 122.142 322.053C123.032 315.113 122.054 306.953 120.536 303.193H169.329C167.791 306.983 166.812 315.233 167.747 322.203Z" fill="white"/>
+<path d="M86.842 210.905H49.6675C38.6198 210.905 29.6646 202.755 29.6646 192.702C29.6646 182.649 38.6209 174.499 49.6675 174.499H86.9377L86.842 210.905Z" fill="white"/>
+<path d="M215.073 210.905H241.25C252.298 210.905 261.253 202.755 261.253 192.702C261.253 182.649 252.297 174.499 241.25 174.499H214.976L215.073 210.905Z" fill="white"/>
+<path d="M104.031 112.761H184.078V74.2991C184.078 54.1971 166.159 37.9011 144.055 37.9011C121.95 37.9011 104.031 54.1971 104.031 74.2991V112.761Z" fill="white"/>
+<path d="M225.498 123.293V165.304L145.304 206.742L145.271 206.762L64.8125 165.304V121.283C64.8125 101.614 82.2963 85.664 103.882 85.594H184.076C206.948 85.594 225.498 102.473 225.498 123.293Z" fill="white"/>
+<path d="M225.498 123.293V165.304L145.304 206.742V123.292C145.304 102.513 126.841 85.663 104.024 85.593H184.076C206.948 85.594 225.498 102.473 225.498 123.293Z" fill="white"/>
+<path d="M226.323 236.003C226.323 251.292 213.919 269.182 189.387 289.271C185.659 292.321 181.646 295.431 177.357 298.591C168.242 305.321 156.861 309 145.106 308.97C133.34 308.99 121.926 305.32 112.81 298.571C80.3388 274.672 63.8667 253.623 63.8667 236.003C63.8667 234.133 63.9437 232.263 64.1196 230.463C64.9553 222.713 65.2632 188.245 64.8124 165.316C70.5853 166.646 76.6332 167.356 82.8569 167.356C108.676 167.356 132.262 155.176 145.271 136.777C145.282 136.757 145.293 136.747 145.304 136.727C158.29 155.156 181.162 167.356 207.003 167.356C213.392 167.356 219.593 166.616 225.498 165.206C225.476 187.885 225.245 222.754 226.081 230.414C226.246 232.263 226.323 234.133 226.323 236.003Z" fill="white"/>
+<path d="M226.323 236.003C226.323 251.292 213.92 269.182 189.387 289.271C201.208 274.192 204.331 250.113 204.331 236.003C204.331 234.133 204.243 232.263 204.078 230.423C203.407 224.233 203.44 215.644 203.473 194.464C203.495 185.644 199.295 179.655 187.584 175.685C167.406 168.845 145.271 152.087 145.271 136.777C145.282 136.757 145.293 136.747 145.304 136.727C158.29 155.156 181.162 167.356 207.003 167.356C213.392 167.356 219.594 166.616 225.499 165.206C225.477 187.885 225.246 222.754 226.081 230.414C226.246 232.263 226.323 234.133 226.323 236.003Z" fill="white"/>
+<path d="M372.125 167.938H363.618C356.952 167.938 350.907 163.928 349.355 158.033C347.072 149.36 354.239 141.63 363.393 141.63H372.171L383.144 154.785L372.125 167.938Z" fill="white"/>
+<path d="M479.101 167.938H487.608C494.274 167.938 500.319 163.928 501.871 158.033C504.154 149.36 496.986 141.63 487.833 141.63H479.055L468.082 154.785L479.101 167.938Z" fill="white"/>
+<path d="M479.732 183.39C479.732 194.86 469.253 208.509 448.58 223.978C448.097 224.338 447.613 224.708 447.118 225.068C441.048 229.558 433.461 232.008 425.632 231.988C417.802 231.998 410.204 229.548 404.123 225.058C382.494 209.139 371.531 195.119 371.531 183.39C371.531 182.14 371.575 180.89 371.696 179.7C372.235 174.69 372.366 151.291 372.103 136.052C372.103 111.173 392.577 90.664 419.045 87.704C421.2 87.454 423.41 87.334 425.643 87.334C455.211 87.334 479.183 109.143 479.183 136.052C479.172 151.152 479.007 174.55 479.567 179.67C479.677 180.89 479.732 182.14 479.732 183.39Z" fill="white"/>
+<path d="M479.732 183.39C479.732 194.86 469.253 208.509 448.58 223.978C460.886 213.903 459.939 192.089 459.939 183.39C459.939 182.14 459.884 180.89 459.774 179.67C459.214 174.55 459.379 151.151 459.39 136.052C459.39 111.173 445.502 90.664 419.045 87.704C421.2 87.454 423.41 87.334 425.643 87.334C455.211 87.334 479.183 109.143 479.183 136.052C479.172 151.152 479.007 174.55 479.567 179.67C479.677 180.89 479.732 182.14 479.732 183.39Z" fill="white"/>
+<path d="M258.236 329.186L175.962 321.537C175.36 317.276 175.62 312.002 176.33 308.434C178.489 307.223 180.566 305.884 182.546 304.421C217.557 278.661 234.575 256.282 234.575 236.004C234.575 233.93 234.481 231.841 234.294 229.796C234.289 229.758 234.286 229.72 234.282 229.682C234.072 227.75 233.935 223.685 233.847 218.411H241.252C256.829 218.411 269.502 206.881 269.502 192.708C269.502 178.535 256.829 167.006 241.252 167.006H233.744V158.264C233.744 154.122 230.053 150.764 225.497 150.764C220.941 150.764 217.25 154.122 217.25 158.264V159.127C213.874 159.614 210.445 159.861 207 159.861C184.814 159.861 164.404 149.7 152.404 132.682C150.887 130.531 148.27 129.23 145.462 129.23L144.373 129.231C141.572 129.239 138.968 130.539 137.456 132.683C125.456 149.701 105.046 159.861 82.8599 159.861C79.5666 159.861 76.2887 159.633 73.0569 159.187V121.333C73.0569 105.789 86.9516 93.143 104.031 93.143H184.078C202.37 93.143 217.252 106.686 217.252 123.334C217.252 127.476 220.943 130.834 225.499 130.834C230.055 130.834 233.746 127.476 233.746 123.334C233.746 100.973 215.799 82.364 192.325 78.778V74.344C192.325 50.138 170.671 30.446 144.055 30.446C117.438 30.446 95.7848 50.138 95.7848 74.344V78.809C73.5309 82.373 56.5639 100.078 56.5639 121.333V167.005H49.6693C34.0923 167.005 21.4193 178.535 21.4193 192.707C21.4193 206.879 34.0923 218.41 49.6693 218.41H56.4462C56.3055 223.726 56.1218 227.788 55.9041 229.799C55.715 231.726 55.6193 233.814 55.6193 236.003C55.6193 256.275 72.6314 278.648 107.607 304.386C109.481 305.773 111.445 307.044 113.48 308.204C114.226 311.771 114.512 317.18 113.898 321.536L31.5313 329.194C13.4647 331.064 -0.0923863 344.951 -1.91331e-05 361.46V504.5C-1.91331e-05 508.642 3.69137 512 8.24705 512C12.8027 512 16.4941 508.642 16.4941 504.5V361.422C16.4446 352.548 23.7109 345.1 33.3028 344.108L113.559 336.647C117.476 349.056 130.052 358.165 144.931 358.165C159.81 358.165 172.386 349.056 176.303 336.647L256.465 344.1C266.152 345.102 273.417 352.549 273.366 361.461V504.5C273.366 508.642 277.058 512 281.613 512C286.169 512 289.86 508.642 289.86 504.5V361.499C289.954 344.952 276.399 331.064 258.236 329.186ZM112.278 74.344C112.278 58.409 126.533 45.446 144.054 45.446C161.575 45.446 175.83 58.409 175.83 74.344V78.143H112.277L112.278 74.344ZM253.01 192.708C253.01 198.609 247.736 203.411 241.254 203.411H233.719C233.694 196.432 233.702 188.95 233.715 182.006H241.254C247.736 182.006 253.01 186.806 253.01 192.708ZM49.6693 203.41C43.186 203.41 37.9134 198.609 37.9134 192.707C37.9134 186.805 43.1871 182.005 49.6693 182.005H56.7552C56.7904 189.235 56.7706 196.625 56.7024 203.41H49.6693ZM72.1135 236.004C72.1135 234.258 72.1871 232.619 72.3257 231.2C73.1174 223.882 73.4132 196.013 73.1889 174.342C76.3898 174.688 79.6205 174.862 82.8588 174.862C107.06 174.862 129.574 165.228 144.93 148.685C160.286 165.228 182.799 174.862 207 174.862C210.43 174.862 213.85 174.667 217.236 174.279C217.234 175.097 217.232 175.924 217.231 176.756C217.183 198.988 217.129 224.178 217.861 231.089C218.007 232.706 218.081 234.36 218.081 236.004C218.081 251.035 202.205 270.661 172.156 292.771C164.563 298.383 155.005 301.471 145.196 301.471C145.161 301.471 145.124 301.471 145.087 301.471C145.06 301.471 145.033 301.471 145.007 301.471C135.198 301.471 125.615 298.376 117.998 292.739C87.9808 270.649 72.1135 251.03 72.1135 236.004ZM144.931 343.164C136.443 343.164 129.465 337.17 128.829 329.586C130.33 325.208 130.839 319.9 130.706 314.863C135.353 315.916 140.143 316.47 144.971 316.47H145.233C149.944 316.47 154.615 315.941 159.151 314.94C159.025 319.955 159.537 325.231 161.03 329.587C160.398 337.17 153.419 343.164 144.931 343.164Z" fill="#A5312A"/>
+<path d="M69.0576 380.432C64.5019 380.432 60.8105 383.79 60.8105 387.932V504.5C60.8105 508.642 64.5019 512 69.0576 512C73.6133 512 77.3047 508.642 77.3047 504.5V387.932C77.3047 383.79 73.6133 380.432 69.0576 380.432Z" fill="#A5312A"/>
+<path d="M220.804 380.432C216.248 380.432 212.557 383.79 212.557 387.932V504.5C212.557 508.642 216.248 512 220.804 512C225.359 512 229.051 508.642 229.051 504.5V387.932C229.051 383.79 225.359 380.432 220.804 380.432Z" fill="#A5312A"/>
+<path d="M522.063 45.601C519.219 42.365 514.029 41.837 510.472 44.422C506.913 47.007 506.332 51.726 509.174 54.963C533.249 82.37 546.506 119.228 546.506 158.745C546.506 238.006 492.277 302.49 425.619 302.49C402.147 302.49 379.363 294.433 359.728 279.191C357.251 277.267 353.762 276.851 350.825 278.125L309.456 296.059L325.803 244.191C326.381 242.358 326.168 240.392 325.209 238.696C311.814 214.996 304.734 187.35 304.734 158.746C304.735 79.484 358.964 15 425.62 15C445.8 15 465.782 21.059 483.41 32.521C487.115 34.929 492.266 34.153 494.915 30.782C497.564 27.412 496.709 22.728 493.004 20.319C472.56 7.026 449.261 0 425.62 0C388.525 0 353.783 16.762 327.796 47.199C302.289 77.074 288.241 116.689 288.241 158.745C288.241 188.658 295.432 217.676 309.061 242.874L288.559 307.923C287.665 310.758 288.683 313.807 291.158 315.714C292.679 316.884 294.573 317.49 296.489 317.49C297.694 317.49 298.906 317.25 300.037 316.76L353.196 293.716C374.905 309.288 399.838 317.49 425.62 317.49C462.717 317.49 497.459 300.728 523.446 270.291C548.952 240.416 563 200.801 563 158.745C563 115.839 548.462 75.657 522.063 45.601Z" fill="#A5312A"/>
+<path d="M144.958 275.559C159.241 275.559 170.862 264.986 170.862 251.991C170.862 247.849 167.17 244.491 162.614 244.491C158.059 244.491 154.367 247.849 154.367 251.991C154.367 256.716 150.146 260.559 144.958 260.559C139.77 260.559 135.55 256.715 135.55 251.991C135.55 247.849 131.858 244.491 127.303 244.491C122.747 244.491 119.056 247.849 119.056 251.991C119.056 264.987 130.675 275.559 144.958 275.559Z" fill="#A5312A"/>
+<path d="M132.529 230.032C136.569 231.947 141.547 230.52 143.654 226.847C143.904 226.411 144.462 225.947 145.286 225.947C146.108 225.947 146.668 226.412 146.916 226.847C148.388 229.413 151.261 230.882 154.237 230.882C155.521 230.882 156.825 230.609 158.041 230.031C162.081 228.117 163.649 223.587 161.545 219.914C158.374 214.383 152.144 210.946 145.286 210.946C138.426 210.946 132.196 214.383 129.026 219.914C126.921 223.589 128.489 228.118 132.529 230.032Z" fill="#A5312A"/>
+<path d="M427.273 183.59C427.023 184.026 426.465 184.49 425.641 184.49C424.818 184.49 424.258 184.025 424.009 183.59C421.904 179.917 416.919 178.491 412.885 180.405C408.845 182.319 407.277 186.849 409.381 190.522C412.551 196.053 418.782 199.49 425.641 199.49C432.501 199.49 438.731 196.053 441.901 190.522C444.006 186.849 442.438 182.319 438.398 180.405C434.359 178.491 429.379 179.917 427.273 183.59Z" fill="#A5312A"/>
+<path d="M487.383 134.132C487.15 127.82 485.785 121.658 483.291 115.788C481.651 111.925 476.876 110.002 472.626 111.495C468.377 112.988 466.264 117.33 467.906 121.194C469.917 125.928 470.937 130.928 470.937 136.05L470.923 143.852C470.883 162.429 470.891 175.936 471.355 180.342C471.444 181.339 471.49 182.364 471.49 183.391C471.49 192.489 460.995 205.222 441.921 219.256C437.353 222.632 431.604 224.49 425.691 224.49C425.65 224.49 425.609 224.49 425.574 224.49C419.673 224.49 413.909 222.628 409.321 219.233C390.272 205.214 379.781 192.485 379.781 183.391C379.781 182.299 379.826 181.284 379.909 180.436C380.538 174.62 380.59 149.867 380.349 135.997C380.383 113.294 400.689 94.833 425.642 94.833C433.1 94.833 440.2 96.426 446.744 99.569C450.774 101.504 455.762 100.101 457.887 96.439C460.015 92.776 458.473 88.239 454.445 86.305C445.629 82.072 435.669 79.834 425.642 79.834C392.281 79.834 365.028 104.02 363.908 134.132H363.4C356.402 134.132 349.9 137 345.561 142.001C341.222 147.003 339.683 153.484 341.342 159.782C343.769 169.002 352.932 175.442 363.625 175.442H363.696C363.634 177.071 363.565 178.313 363.487 179.032C363.353 180.386 363.284 181.853 363.284 183.392C363.284 197.698 374.948 213.236 398.926 230.881C406.431 236.435 415.891 239.491 425.534 239.491H425.726C435.379 239.491 444.822 236.441 452.309 230.908C476.313 213.244 487.982 197.702 487.982 183.392C487.982 181.934 487.915 180.472 487.784 179.047C487.781 179.009 487.778 178.972 487.773 178.935C487.695 178.211 487.633 177.005 487.582 175.442H487.612C498.304 175.442 507.468 169.003 509.896 159.782C511.554 153.484 510.014 147.003 505.675 142.001C501.338 137.001 494.836 134.133 487.838 134.133L487.383 134.132ZM363.626 160.441C360.642 160.441 358.017 158.695 357.384 156.29C356.734 153.822 357.813 152.099 358.512 151.291C359.702 149.919 361.483 149.132 363.4 149.132H363.982C363.994 152.979 363.987 156.83 363.962 160.441H363.626ZM492.728 151.291C493.43 152.099 494.507 153.822 493.858 156.289C493.224 158.695 490.598 160.441 487.614 160.441H487.407C487.397 156.733 487.399 152.849 487.406 149.132H487.84C489.757 149.132 491.538 149.919 492.728 151.291Z" fill="#A5312A"/>
+</g>
+<defs>
+<clipPath id="clip0_400_71">
+<rect width="563" height="512" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/src/assets/icon/teacher.svg b/src/assets/icon/teacher.svg
index 0e4db97f..b76ab88a 100644
--- a/src/assets/icon/teacher.svg
+++ b/src/assets/icon/teacher.svg
@@ -1,5 +1,22 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="">
-<path d="M3.96667 0C2.77059 0 1.7 1.07059 1.7 2.26667V16H0.9C0.679088 16 0.5 16.1791 0.5 16.4C0.5 16.6209 0.679088 16.8 0.9 16.8H3.3H3.3015H4.1C4.1 14.9619 5.22708 13.3871 6.82784 12.7289C5.91128 12.166 5.3 11.1544 5.3 10C5.3 8.23268 6.73268 6.8 8.5 6.8C10.2673 6.8 11.7 8.23268 11.7 10C11.7 11.1545 11.0886 12.1662 10.172 12.729C10.7684 12.9743 11.2988 13.3467 11.7294 13.8117L14.0342 12.8683C14.4625 12.693 14.9139 12.6628 15.3336 12.7541L18.6443 6.6294C18.9595 6.04636 19.6876 5.8292 20.2706 6.14436C20.8536 6.45948 21.0708 7.1876 20.7556 7.77064L17.0503 14.6254C17.161 15.4886 16.748 16.3516 15.9846 16.8H24.1C24.3209 16.8 24.5 16.6209 24.5 16.4C24.5 16.1791 24.3209 16 24.1 16H23.3V2.26667C23.3 1.07059 22.2294 0 21.0333 0H3.96667Z" fill=""/>
-<path d="M19.8902 6.84812C20.0845 6.95316 20.1569 7.19588 20.0519 7.3902L16.2083 14.5007C16.4148 15.1836 16.0717 15.9242 15.398 16.2L12.1 17.55V22.5333C12.1 23.2876 11.3876 24 10.6334 24H6.90002C5.61244 24 4.90002 23.2876 4.90002 22V16.8C4.90002 14.8118 6.51178 13.2 8.50002 13.2C9.73942 13.2 10.832 13.8264 11.4793 14.7786L14.3373 13.6086C14.8035 13.4178 15.313 13.4967 15.6925 13.7728L19.3481 7.0098C19.4532 6.81544 19.6959 6.74308 19.8902 6.84812Z" fill=""/>
-<path d="M8.5001 7.59998C7.17462 7.59998 6.1001 8.6745 6.1001 9.99998C6.1001 11.3255 7.17462 12.4 8.5001 12.4C9.82558 12.4 10.9001 11.3255 10.9001 9.99998C10.9001 8.6745 9.82558 7.59998 8.5001 7.59998Z" fill=""/>
-</svg>
\ No newline at end of file
+<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_400_112)">
+<path d="M52.9979 26.5551C52.9399 37.7405 45.883 47.692 35.3455 51.4454V70.4216C28.4495 79.7002 22.5334 89.6678 17.6931 100.166V51.4454C4.98803 46.9531 -2.31689 33.6371 0.721662 20.509C3.76021 7.38097 16.1754 -1.37073 29.5614 0.177043C42.9474 1.72481 53.0349 13.0801 52.9979 26.5551Z" fill="white"/>
+<path d="M353.09 26.5551C353.032 37.7404 345.975 47.6919 335.438 51.4454V61.8608H317.785V51.4454C305.081 46.954 297.776 33.637 300.815 20.509C303.853 7.38092 316.268 -1.37078 329.654 0.177989C343.041 1.72576 353.128 13.0801 353.09 26.5551Z" fill="white"/>
+<path d="M335.438 182.215C335.438 88.445 267.14 17.7285 176.564 17.7285C85.9888 17.7285 17.6919 88.445 17.6919 182.215C17.6919 272.199 71.144 317.822 176.565 317.822C281.987 317.822 335.438 272.199 335.438 182.215ZM167.739 53.0343H185.391C190.265 53.0343 194.218 56.9857 194.218 61.861C194.218 66.7362 190.266 70.6876 185.391 70.6876H167.739C162.864 70.6876 158.912 66.7362 158.912 61.861C158.912 56.9857 162.864 53.0343 167.739 53.0343ZM158.913 79.5123H194.218C199.092 79.5123 203.044 83.4637 203.044 88.339C203.044 93.2143 199.093 97.1657 194.218 97.1657H158.913C154.039 97.1657 150.086 93.2143 150.086 88.339C150.086 83.4637 154.038 79.5123 158.913 79.5123ZM35.3443 194.254C35.3983 145.531 74.8834 106.045 123.607 105.991H229.522C278.268 105.991 317.785 145.508 317.785 194.254C317.785 243.001 278.269 282.517 229.522 282.517H123.607C74.8834 282.463 35.3983 242.978 35.3443 194.254Z" fill="white"/>
+<path d="M257.768 323.939C259.338 324.76 260.865 325.705 262.357 326.649H332.79C342.064 317.245 350.153 306.744 356.877 295.377C360.409 289.375 366.202 285.041 372.958 283.347C374.585 282.945 376.246 282.694 377.919 282.597L388.713 244.794C389.482 241.654 391.906 239.187 395.031 238.361C398.156 237.535 401.482 238.484 403.702 240.833C405.922 243.183 406.679 246.558 405.678 249.631L394.856 287.584C399.971 291.132 403.64 296.401 405.192 302.43C406.946 309.296 405.869 316.579 402.199 322.642C401.36 324.054 400.433 325.29 399.622 326.667H476.657V114.818H341.316C349.159 136.421 353.144 159.234 353.09 182.215C353.09 255.491 320.345 303.391 257.768 323.939Z" fill="white"/>
+<path d="M300.133 194.254C300.089 155.275 268.502 123.688 229.523 123.644H123.608C84.6104 123.644 52.9971 155.257 52.9971 194.254C52.9971 233.252 84.6104 264.865 123.608 264.865H229.523C268.502 264.821 300.089 233.234 300.133 194.254ZM105.955 211.907C91.3314 211.907 79.4761 200.051 79.4761 185.428C79.4761 170.804 91.3314 158.949 105.955 158.949C120.579 158.949 132.434 170.804 132.434 185.428C132.434 200.051 120.579 211.907 105.955 211.907ZM209.285 226.973C200.236 234.817 188.53 238.901 176.566 238.386C164.602 238.901 152.895 234.817 143.847 226.973C140.692 223.509 140.794 218.184 144.079 214.843C147.363 211.503 152.685 211.31 156.203 214.404C162.013 218.884 169.239 221.129 176.565 220.732C183.873 221.119 191.076 218.871 196.865 214.395C200.386 211.084 205.91 211.197 209.292 214.651C212.669 218.067 212.665 223.564 209.285 226.973ZM220.697 185.428C220.697 170.804 232.552 158.949 247.176 158.949C261.8 158.949 273.655 170.804 273.655 185.428C273.655 200.051 261.8 211.907 247.176 211.907C232.551 211.907 220.697 200.051 220.697 185.428Z" fill="white"/>
+<path d="M105.955 194.254C110.83 194.254 114.782 190.302 114.782 185.428C114.782 180.553 110.83 176.601 105.955 176.601C101.08 176.601 97.1284 180.553 97.1284 185.428C97.1284 190.302 101.08 194.254 105.955 194.254Z" fill="white"/>
+<path d="M247.175 194.254C252.05 194.254 256.002 190.302 256.002 185.428C256.002 180.553 252.05 176.601 247.175 176.601C242.3 176.601 238.349 180.553 238.349 185.428C238.349 190.302 242.3 194.254 247.175 194.254Z" fill="white"/>
+<path d="M158.913 353.128C158.913 362.877 166.816 370.78 176.565 370.78C186.315 370.78 194.218 362.877 194.218 353.128V335.475H158.913V353.128Z" fill="white"/>
+<path d="M311.096 344.301H279.021C281.316 348.317 283.076 352.618 284.256 357.09C293.717 354.008 302.74 349.708 311.096 344.301Z" fill="white"/>
+<path d="M158.913 512H194.218C203.967 512 211.87 504.097 211.87 494.348H141.26C141.26 504.097 149.164 512 158.913 512Z" fill="white"/>
+<path d="M503.137 79.5122H324.097C327.685 85.2074 330.947 91.1005 333.867 97.1646H485.485C490.359 97.1646 494.311 101.116 494.311 105.991V335.474C494.311 340.348 490.36 344.301 485.485 344.301H387.46C382.721 350.472 377.632 356.366 372.218 361.953H503.138C508.012 361.953 511.965 358.002 511.965 353.127V88.3389C511.964 83.4646 508.012 79.5122 503.137 79.5122Z" fill="white"/>
+<path d="M388.105 306.762C387.562 304.541 386.146 302.631 384.178 301.466C382.134 300.202 379.664 299.826 377.338 300.424C375.116 300.967 373.206 302.384 372.042 304.352C345.184 349.207 311.52 367.574 285.861 374.962C285.861 375.5 285.861 376.03 285.773 376.569L283.867 393.737C315.394 386.367 355.545 366.049 387.054 313.488C388.29 311.477 388.668 309.055 388.105 306.762Z" fill="white"/>
+<path d="M233.177 335.474H211.871V353.126C211.871 372.625 196.064 388.431 176.566 388.431C157.068 388.431 141.261 372.625 141.261 353.126V335.474H119.954C109.911 335.473 100.342 339.749 93.6441 347.232C86.9461 354.716 83.7516 364.698 84.8614 374.68L91.2954 432.563H150.088C154.962 432.563 158.914 436.514 158.914 441.389C158.914 446.265 154.963 450.216 150.088 450.216H93.7311C97.7065 465.788 111.729 476.686 127.8 476.695H225.331C241.402 476.686 255.424 465.788 259.399 450.216H203.044C198.17 450.216 194.217 446.265 194.217 441.389C194.217 436.514 198.169 432.563 203.044 432.563H261.836L268.27 374.68C269.38 364.699 266.185 354.716 259.487 347.232C252.789 339.749 243.221 335.473 233.177 335.474Z" fill="white"/>
+</g>
+<defs>
+<clipPath id="clip0_400_112">
+<rect width="512" height="512" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/www/assets/appConfig/learningresources.json b/www/assets/appConfig/learningresources.json
index 874d562e..a6230676 100644
--- a/www/assets/appConfig/learningresources.json
+++ b/www/assets/appConfig/learningresources.json
@@ -64,16 +64,16 @@
         "teacherTaraBotName": "ಅಂಗನವಾಡಿ ಕಾರ್ಯಕರ್ತೆ"
     },
     "footerText": "Developed with ❤️ by Tekdi Technologies ",
-    "headerColor": "#A71028",
+    "headerColor": "#AB251B",
     "headerFontSize": "16",
-    "footerColor": "#A71028",
+    "footerColor": "#AB251B",
     "footerFontSize": "16",
     "primaryCss" : {
-        "primary": "#A71028",
-        "shade": "#EEAA1F"
+        "primary": "#AB251B",
+        "shade": "#FDB529"
     },
     "secondaryCss" : {
-        "secondary": "#EEAA1F",
+        "secondary": "#FDB529",
         "shade": "#e98021ff"
     }
 }
\ No newline at end of file
diff --git a/www/assets/icon/book.svg b/www/assets/icon/book.svg
index bef2aef6..2e3a4e07 100644
--- a/www/assets/icon/book.svg
+++ b/www/assets/icon/book.svg
@@ -1,14 +1,14 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="25" height="19" viewBox="0 0 25 19" fill="">
-    <path
-        d="M4.17143 6.10352e-05C4.17078 6.10352e-05 4.17006 6.10352e-05 4.16941 6.10352e-05C3.94242 6.10352e-05 3.72892 0.0885461 3.56771 0.249355C3.40472 0.411941 3.31494 0.628427 3.31494 0.858892V13.7369C3.31494 14.2092 3.70064 14.5943 4.17482 14.5955C6.17386 14.6003 9.52304 15.0169 11.8335 17.4348V3.95757C11.8335 3.79749 11.7926 3.6471 11.7155 3.52266C9.81913 0.468749 6.17499 0.00474792 4.17143 6.10352e-05Z"
-        fill="" />
-    <path
-        d="M21.6852 13.7369V0.858831C21.6852 0.628366 21.5955 0.41188 21.4325 0.249294C21.2713 0.0884851 21.0576 0 20.8309 0C20.8301 0 20.8294 0 20.8288 0C18.8253 0.00476769 15.1811 0.468769 13.2847 3.52268C13.2076 3.64712 13.1667 3.79751 13.1667 3.95759V17.4347C15.4772 15.0169 18.8264 14.6002 20.8254 14.5954C21.2995 14.5942 21.6852 14.2091 21.6852 13.7369Z"
-        fill="" />
-    <path
-        d="M23.6413 2.96991H23.0186V13.7369C23.0186 14.9426 22.0362 15.9258 20.8286 15.9288C19.133 15.9329 16.3372 16.2644 14.3572 18.1384C17.7817 17.3 21.3917 17.845 23.4491 18.3139C23.706 18.3724 23.9714 18.3119 24.1773 18.1479C24.3823 17.9843 24.5 17.7397 24.5 17.4771V3.82858C24.5001 3.35512 24.1148 2.96991 23.6413 2.96991Z"
-        fill="" />
-    <path
-        d="M1.98138 13.7369V2.96991H1.35867C0.885294 2.96991 0.5 3.35512 0.5 3.82858V17.4769C0.5 17.7395 0.617657 17.984 0.822749 18.1477C1.02841 18.3116 1.29362 18.3723 1.55091 18.3136C3.60829 17.8447 7.21841 17.2997 10.6427 18.1382C8.66277 16.2643 5.86697 15.9328 4.17137 15.9287C2.96385 15.9258 1.98138 14.9426 1.98138 13.7369Z"
-        fill="" />
-</svg>
\ No newline at end of file
+<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M486.4 460.8C491.111 460.8 494.934 456.977 494.934 452.267V187.733C494.934 183.023 491.111 179.2 486.4 179.2H477.867V418.133C477.867 432.247 466.381 443.733 452.267 443.733H298.667C282.07 443.733 267.631 455.228 264.354 471.066C263.527 475.025 260.037 477.867 256 477.867C251.964 477.867 248.465 475.025 247.646 471.066C244.369 455.228 229.939 443.733 213.334 443.733H59.7336C45.6194 443.733 34.1336 432.247 34.1336 418.133V179.2H25.6002C20.8898 179.2 17.0669 183.023 17.0669 187.733V452.267C17.0669 456.977 20.8898 460.8 25.6002 460.8H196.352C211.542 460.8 225.69 469.018 234.223 482.782C238.934 490.394 247.074 494.933 256.009 494.933C264.943 494.933 273.084 490.394 277.794 482.782C286.319 469.018 300.467 460.8 315.665 460.8H486.417H486.4Z" fill="white"/>
+<path d="M136.533 29.8667V70.9803C143.044 60.6891 151.552 52.3179 162.133 45.6704V29.8752C162.133 22.8181 156.39 17.0752 149.333 17.0752C142.276 17.0752 136.533 22.8096 136.533 29.8667Z" fill="white"/>
+<path d="M375.467 29.8667C375.467 22.8096 369.724 17.0667 362.667 17.0667C355.61 17.0667 349.867 22.8096 349.867 29.8667V45.6619C360.448 52.3093 368.956 60.6891 375.467 70.9717V29.8667Z" fill="white"/>
+<path d="M110.933 264.533V290.133H136.533V256C136.533 250.231 137.318 244.599 138.701 239.147C137.975 239.087 137.267 238.933 136.533 238.933C122.419 238.933 110.933 250.419 110.933 264.533Z" fill="white"/>
+<path d="M256 230.4C344.175 230.4 375.467 184.431 375.467 145.067C375.467 70.4171 343.091 42.6667 256 42.6667C168.909 42.6667 136.533 70.4171 136.533 145.067C136.533 184.431 167.825 230.4 256 230.4ZM256 68.2667C306.637 68.2667 358.4 75.8188 358.4 131.789C358.4 176.751 312.465 213.333 256 213.333C199.535 213.333 153.6 176.751 153.6 131.789C153.6 75.8102 205.363 68.2667 256 68.2667Z" fill="white"/>
+<path d="M59.7335 426.667H213.334C226.227 426.667 238.234 431.394 247.467 439.279V307.2H85.3335C80.6146 307.2 76.8002 303.386 76.8002 298.667C76.8002 293.948 80.6146 290.133 85.3335 290.133H93.8669V264.533C93.8669 241.007 113.007 221.867 136.534 221.867C139.469 221.867 142.353 222.191 145.178 222.788C146.867 219.767 148.804 216.866 150.963 214.11C130.91 196.548 119.467 172.919 119.467 145.067H59.7335C55.0231 145.067 51.2002 148.89 51.2002 153.6V418.133C51.2002 422.844 55.0231 426.667 59.7335 426.667ZM85.3335 332.8H213.334C218.052 332.8 221.867 336.614 221.867 341.333C221.867 346.052 218.052 349.867 213.334 349.867H85.3335C80.6146 349.867 76.8002 346.052 76.8002 341.333C76.8002 336.614 80.6146 332.8 85.3335 332.8ZM85.3335 375.467H170.667C175.386 375.467 179.2 379.281 179.2 384C179.2 388.719 175.386 392.533 170.667 392.533H85.3335C80.6146 392.533 76.8002 388.719 76.8002 384C76.8002 379.281 80.6146 375.467 85.3335 375.467Z" fill="white"/>
+<path d="M298.667 145.067C303.379 145.067 307.2 139.336 307.2 132.267C307.2 125.197 303.379 119.467 298.667 119.467C293.954 119.467 290.133 125.197 290.133 132.267C290.133 139.336 293.954 145.067 298.667 145.067Z" fill="white"/>
+<path d="M256 196.267C303.053 196.267 341.333 167.339 341.333 131.789C341.333 103.108 327.057 85.3333 256 85.3333C184.943 85.3333 170.667 103.108 170.667 131.789C170.667 167.339 208.947 196.267 256 196.267ZM298.667 102.4C312.781 102.4 324.267 115.797 324.267 132.267C324.267 148.736 312.781 162.133 298.667 162.133C284.552 162.133 273.067 148.736 273.067 132.267C273.067 115.797 284.552 102.4 298.667 102.4ZM247.467 162.133H264.533C269.252 162.133 273.067 165.948 273.067 170.667C273.067 175.386 269.252 179.2 264.533 179.2H247.467C242.748 179.2 238.933 175.386 238.933 170.667C238.933 165.948 242.748 162.133 247.467 162.133ZM213.333 102.4C227.447 102.4 238.933 115.797 238.933 132.267C238.933 148.736 227.447 162.133 213.333 162.133C199.219 162.133 187.733 148.736 187.733 132.267C187.733 115.797 199.219 102.4 213.333 102.4Z" fill="white"/>
+<path d="M213.333 145.067C218.046 145.067 221.866 139.336 221.866 132.267C221.866 125.197 218.046 119.467 213.333 119.467C208.62 119.467 204.8 125.197 204.8 132.267C204.8 139.336 208.62 145.067 213.333 145.067Z" fill="white"/>
+<path d="M401.067 290.133V264.533C401.067 250.419 389.581 238.933 375.467 238.933C374.733 238.933 374.025 239.087 373.299 239.147C374.682 244.599 375.467 250.231 375.467 256V290.133H401.067Z" fill="white"/>
+<path d="M358.4 256C358.4 244.343 354.5 233.301 347.375 224.299C324.036 239.061 292.77 247.467 256 247.467C219.23 247.467 187.964 239.061 164.625 224.299C157.5 233.301 153.6 244.343 153.6 256V290.133H358.4V256Z" fill="white"/>
+<path d="M452.267 426.667C456.977 426.667 460.8 422.844 460.8 418.133V153.6C460.8 148.89 456.977 145.067 452.267 145.067H392.533C392.533 172.919 381.09 196.548 361.037 214.11C363.196 216.875 365.133 219.767 366.822 222.788C369.647 222.199 372.531 221.867 375.467 221.867C398.993 221.867 418.133 241.007 418.133 264.533V290.133H426.667C431.385 290.133 435.2 293.948 435.2 298.667C435.2 303.386 431.385 307.2 426.667 307.2H264.533V439.279C273.766 431.394 285.773 426.667 298.667 426.667H452.267ZM298.667 332.8H426.667C431.385 332.8 435.2 336.614 435.2 341.333C435.2 346.052 431.385 349.867 426.667 349.867H298.667C293.948 349.867 290.133 346.052 290.133 341.333C290.133 336.614 293.948 332.8 298.667 332.8ZM290.133 384C290.133 379.281 293.948 375.467 298.667 375.467H384C388.719 375.467 392.533 379.281 392.533 384C392.533 388.719 388.719 392.533 384 392.533H298.667C293.948 392.533 290.133 388.719 290.133 384Z" fill="white"/>
+</svg>
diff --git a/www/assets/icon/parents.svg b/www/assets/icon/parents.svg
index d839f6e5..8bcc6cf8 100644
--- a/www/assets/icon/parents.svg
+++ b/www/assets/icon/parents.svg
@@ -1,17 +1,34 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 22 24" fill="">
-    <path
-        d="M4.94905 0C3.39773 0 2.13623 1.2615 2.13623 2.81282C2.13623 4.36414 3.39773 5.67252 4.94905 5.67252C6.50037 5.67252 7.76187 4.36414 7.76187 2.81282C7.76187 1.2615 6.50037 0 4.94905 0Z"
-        fill="" />
-    <path
-        d="M20.4196 2.81282C20.4196 1.2615 19.1581 0 17.6068 0C16.0554 0 14.7939 1.2615 14.7939 2.81282C14.7939 4.36414 16.0554 5.67252 17.6068 5.67252C19.1581 5.67252 20.4196 4.36414 20.4196 2.81282Z"
-        fill="" />
-    <path
-        d="M7.48975 21.3343C9.12657 22.7077 9.52951 23.0946 9.9676 23.4671C10.3851 23.8221 10.9063 24 11.4276 24C11.9536 24 12.4796 23.8187 12.8972 23.4575C13.66 22.7971 14.4866 22.0352 15.2301 21.3834C14.831 21.2493 14.4551 21.0353 14.1415 20.7214C13.3066 19.8875 13.0746 18.6241 13.6025 17.5184C12.1686 16.7593 10.3898 16.7613 8.95518 17.5216C9.48042 18.626 9.24893 19.8878 8.41362 20.7221C8.14274 20.9929 7.82752 21.1972 7.48975 21.3343Z"
-        fill="" />
-    <path
-        d="M11.278 14.111C12.0547 14.111 12.6844 13.4813 12.6844 12.7046C12.6844 11.9278 12.0547 11.2982 11.278 11.2982C10.5013 11.2982 9.87158 11.9278 9.87158 12.7046C9.87158 13.4813 10.5013 14.111 11.278 14.111Z"
-        fill="" />
-    <path
-        d="M11.2779 9.01275C10.3152 7.27809 8.65331 5.77623 6.29645 5.77623C3.0551 5.77623 0.611084 8.40364 0.611084 11.8874C0.611084 14.9647 2.70406 17.2211 6.01184 20.0757C6.49874 20.222 7.04442 20.1015 7.41998 19.727C7.99623 19.1522 7.94954 18.2163 7.36297 17.6833C4.83835 15.3895 3.78149 14.1213 3.50311 12.9312C3.41465 12.5531 3.73879 12.2342 4.12715 12.2342C4.51552 12.2342 4.83202 12.5577 4.98466 12.9149C5.32485 13.7107 6.25667 14.7563 8.06552 16.4163C10.0213 15.2687 12.5354 15.2711 14.4905 16.4164C16.2993 14.7564 17.2312 13.7108 17.5714 12.9149C17.724 12.5577 18.0405 12.2342 18.4289 12.2342C18.8173 12.2342 19.1414 12.5531 19.0529 12.9312C18.7745 14.1213 17.7176 15.3895 15.1931 17.6833C14.6098 18.2134 14.5571 19.1494 15.1354 19.7263C15.6096 20.1991 16.3477 20.2524 16.9034 19.8911C20.4206 16.6867 21.945 14.6988 21.945 11.8873C21.945 8.40354 19.5009 5.77618 16.2596 5.77618C13.9019 5.77623 12.2407 7.27809 11.2779 9.01275ZM14.0908 12.7046C14.0908 14.2559 12.8293 15.5174 11.2779 15.5174C9.72663 15.5174 8.46513 14.2559 8.46513 12.7046C8.46513 11.1533 9.72663 9.89176 11.2779 9.89176C12.8293 9.89176 14.0908 11.1533 14.0908 12.7046Z"
-        fill="" />
-</svg>
\ No newline at end of file
+<svg width="563" height="512" viewBox="0 0 563 512" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_400_71)">
+<path d="M554.748 158.75C554.748 242.28 496.941 309.99 425.621 309.99C399.285 309.99 374.797 300.75 354.377 284.9L296.482 309.99L297.505 306.74L317.87 242.13C304.367 218.22 296.482 189.57 296.482 158.75C296.482 85.62 340.808 24.62 399.703 10.57C408.082 8.57002 416.747 7.52002 425.621 7.52002C496.941 7.52002 554.748 75.23 554.748 158.75Z" fill="white"/>
+<path d="M554.748 158.75C554.748 242.28 496.941 309.99 425.621 309.99C399.285 309.99 374.797 300.75 354.377 284.9L296.482 309.99L297.505 306.74L341.28 268.23C346.603 263.3 354.861 261.51 361.667 264.56C369.189 267.93 385.804 281.28 402.166 283.66C470.452 293.55 526.543 233.41 526.543 154.03C526.543 77.32 470.397 14.7 399.703 10.57C408.082 8.57002 416.747 7.52002 425.621 7.52002C496.941 7.52002 554.748 75.23 554.748 158.75Z" fill="white"/>
+<path d="M281.611 361.46V504.5H8.24836V361.46C8.18238 348.78 18.6177 338.08 32.4618 336.65L120.54 328.46H169.33L257.398 336.65C271.242 338.08 281.688 348.78 281.611 361.46Z" fill="white"/>
+<path d="M281.611 361.46V504.5H8.24854V488.73H239.119C248.832 488.73 256.705 481.57 256.705 472.737V373.66C256.705 364.872 250.359 357.127 241.1 354.612L144.776 328.459H169.33L257.398 336.649C271.242 338.08 281.688 348.78 281.611 361.46Z" fill="white"/>
+<path d="M167.747 322.203C168.055 324.493 168.56 326.653 169.33 328.463C169.33 340.723 158.399 350.663 144.928 350.663C131.456 350.663 120.536 340.723 120.536 328.463C121.317 326.613 121.834 324.403 122.142 322.053C123.032 315.113 122.054 306.953 120.536 303.193H169.329C167.791 306.983 166.812 315.233 167.747 322.203Z" fill="white"/>
+<path d="M167.747 322.203C160.764 325.343 153.011 326.993 145.104 326.973C137.075 326.983 129.224 325.283 122.142 322.053C123.032 315.113 122.054 306.953 120.536 303.193H169.329C167.791 306.983 166.812 315.233 167.747 322.203Z" fill="white"/>
+<path d="M86.842 210.905H49.6675C38.6198 210.905 29.6646 202.755 29.6646 192.702C29.6646 182.649 38.6209 174.499 49.6675 174.499H86.9377L86.842 210.905Z" fill="white"/>
+<path d="M215.073 210.905H241.25C252.298 210.905 261.253 202.755 261.253 192.702C261.253 182.649 252.297 174.499 241.25 174.499H214.976L215.073 210.905Z" fill="white"/>
+<path d="M104.031 112.761H184.078V74.2991C184.078 54.1971 166.159 37.9011 144.055 37.9011C121.95 37.9011 104.031 54.1971 104.031 74.2991V112.761Z" fill="white"/>
+<path d="M225.498 123.293V165.304L145.304 206.742L145.271 206.762L64.8125 165.304V121.283C64.8125 101.614 82.2963 85.664 103.882 85.594H184.076C206.948 85.594 225.498 102.473 225.498 123.293Z" fill="white"/>
+<path d="M225.498 123.293V165.304L145.304 206.742V123.292C145.304 102.513 126.841 85.663 104.024 85.593H184.076C206.948 85.594 225.498 102.473 225.498 123.293Z" fill="white"/>
+<path d="M226.323 236.003C226.323 251.292 213.919 269.182 189.387 289.271C185.659 292.321 181.646 295.431 177.357 298.591C168.242 305.321 156.861 309 145.106 308.97C133.34 308.99 121.926 305.32 112.81 298.571C80.3388 274.672 63.8667 253.623 63.8667 236.003C63.8667 234.133 63.9437 232.263 64.1196 230.463C64.9553 222.713 65.2632 188.245 64.8124 165.316C70.5853 166.646 76.6332 167.356 82.8569 167.356C108.676 167.356 132.262 155.176 145.271 136.777C145.282 136.757 145.293 136.747 145.304 136.727C158.29 155.156 181.162 167.356 207.003 167.356C213.392 167.356 219.593 166.616 225.498 165.206C225.476 187.885 225.245 222.754 226.081 230.414C226.246 232.263 226.323 234.133 226.323 236.003Z" fill="white"/>
+<path d="M226.323 236.003C226.323 251.292 213.92 269.182 189.387 289.271C201.208 274.192 204.331 250.113 204.331 236.003C204.331 234.133 204.243 232.263 204.078 230.423C203.407 224.233 203.44 215.644 203.473 194.464C203.495 185.644 199.295 179.655 187.584 175.685C167.406 168.845 145.271 152.087 145.271 136.777C145.282 136.757 145.293 136.747 145.304 136.727C158.29 155.156 181.162 167.356 207.003 167.356C213.392 167.356 219.594 166.616 225.499 165.206C225.477 187.885 225.246 222.754 226.081 230.414C226.246 232.263 226.323 234.133 226.323 236.003Z" fill="white"/>
+<path d="M372.125 167.938H363.618C356.952 167.938 350.907 163.928 349.355 158.033C347.072 149.36 354.239 141.63 363.393 141.63H372.171L383.144 154.785L372.125 167.938Z" fill="white"/>
+<path d="M479.101 167.938H487.608C494.274 167.938 500.319 163.928 501.871 158.033C504.154 149.36 496.986 141.63 487.833 141.63H479.055L468.082 154.785L479.101 167.938Z" fill="white"/>
+<path d="M479.732 183.39C479.732 194.86 469.253 208.509 448.58 223.978C448.097 224.338 447.613 224.708 447.118 225.068C441.048 229.558 433.461 232.008 425.632 231.988C417.802 231.998 410.204 229.548 404.123 225.058C382.494 209.139 371.531 195.119 371.531 183.39C371.531 182.14 371.575 180.89 371.696 179.7C372.235 174.69 372.366 151.291 372.103 136.052C372.103 111.173 392.577 90.664 419.045 87.704C421.2 87.454 423.41 87.334 425.643 87.334C455.211 87.334 479.183 109.143 479.183 136.052C479.172 151.152 479.007 174.55 479.567 179.67C479.677 180.89 479.732 182.14 479.732 183.39Z" fill="white"/>
+<path d="M479.732 183.39C479.732 194.86 469.253 208.509 448.58 223.978C460.886 213.903 459.939 192.089 459.939 183.39C459.939 182.14 459.884 180.89 459.774 179.67C459.214 174.55 459.379 151.151 459.39 136.052C459.39 111.173 445.502 90.664 419.045 87.704C421.2 87.454 423.41 87.334 425.643 87.334C455.211 87.334 479.183 109.143 479.183 136.052C479.172 151.152 479.007 174.55 479.567 179.67C479.677 180.89 479.732 182.14 479.732 183.39Z" fill="white"/>
+<path d="M258.236 329.186L175.962 321.537C175.36 317.276 175.62 312.002 176.33 308.434C178.489 307.223 180.566 305.884 182.546 304.421C217.557 278.661 234.575 256.282 234.575 236.004C234.575 233.93 234.481 231.841 234.294 229.796C234.289 229.758 234.286 229.72 234.282 229.682C234.072 227.75 233.935 223.685 233.847 218.411H241.252C256.829 218.411 269.502 206.881 269.502 192.708C269.502 178.535 256.829 167.006 241.252 167.006H233.744V158.264C233.744 154.122 230.053 150.764 225.497 150.764C220.941 150.764 217.25 154.122 217.25 158.264V159.127C213.874 159.614 210.445 159.861 207 159.861C184.814 159.861 164.404 149.7 152.404 132.682C150.887 130.531 148.27 129.23 145.462 129.23L144.373 129.231C141.572 129.239 138.968 130.539 137.456 132.683C125.456 149.701 105.046 159.861 82.8599 159.861C79.5666 159.861 76.2887 159.633 73.0569 159.187V121.333C73.0569 105.789 86.9516 93.143 104.031 93.143H184.078C202.37 93.143 217.252 106.686 217.252 123.334C217.252 127.476 220.943 130.834 225.499 130.834C230.055 130.834 233.746 127.476 233.746 123.334C233.746 100.973 215.799 82.364 192.325 78.778V74.344C192.325 50.138 170.671 30.446 144.055 30.446C117.438 30.446 95.7848 50.138 95.7848 74.344V78.809C73.5309 82.373 56.5639 100.078 56.5639 121.333V167.005H49.6693C34.0923 167.005 21.4193 178.535 21.4193 192.707C21.4193 206.879 34.0923 218.41 49.6693 218.41H56.4462C56.3055 223.726 56.1218 227.788 55.9041 229.799C55.715 231.726 55.6193 233.814 55.6193 236.003C55.6193 256.275 72.6314 278.648 107.607 304.386C109.481 305.773 111.445 307.044 113.48 308.204C114.226 311.771 114.512 317.18 113.898 321.536L31.5313 329.194C13.4647 331.064 -0.0923863 344.951 -1.91331e-05 361.46V504.5C-1.91331e-05 508.642 3.69137 512 8.24705 512C12.8027 512 16.4941 508.642 16.4941 504.5V361.422C16.4446 352.548 23.7109 345.1 33.3028 344.108L113.559 336.647C117.476 349.056 130.052 358.165 144.931 358.165C159.81 358.165 172.386 349.056 176.303 336.647L256.465 344.1C266.152 345.102 273.417 352.549 273.366 361.461V504.5C273.366 508.642 277.058 512 281.613 512C286.169 512 289.86 508.642 289.86 504.5V361.499C289.954 344.952 276.399 331.064 258.236 329.186ZM112.278 74.344C112.278 58.409 126.533 45.446 144.054 45.446C161.575 45.446 175.83 58.409 175.83 74.344V78.143H112.277L112.278 74.344ZM253.01 192.708C253.01 198.609 247.736 203.411 241.254 203.411H233.719C233.694 196.432 233.702 188.95 233.715 182.006H241.254C247.736 182.006 253.01 186.806 253.01 192.708ZM49.6693 203.41C43.186 203.41 37.9134 198.609 37.9134 192.707C37.9134 186.805 43.1871 182.005 49.6693 182.005H56.7552C56.7904 189.235 56.7706 196.625 56.7024 203.41H49.6693ZM72.1135 236.004C72.1135 234.258 72.1871 232.619 72.3257 231.2C73.1174 223.882 73.4132 196.013 73.1889 174.342C76.3898 174.688 79.6205 174.862 82.8588 174.862C107.06 174.862 129.574 165.228 144.93 148.685C160.286 165.228 182.799 174.862 207 174.862C210.43 174.862 213.85 174.667 217.236 174.279C217.234 175.097 217.232 175.924 217.231 176.756C217.183 198.988 217.129 224.178 217.861 231.089C218.007 232.706 218.081 234.36 218.081 236.004C218.081 251.035 202.205 270.661 172.156 292.771C164.563 298.383 155.005 301.471 145.196 301.471C145.161 301.471 145.124 301.471 145.087 301.471C145.06 301.471 145.033 301.471 145.007 301.471C135.198 301.471 125.615 298.376 117.998 292.739C87.9808 270.649 72.1135 251.03 72.1135 236.004ZM144.931 343.164C136.443 343.164 129.465 337.17 128.829 329.586C130.33 325.208 130.839 319.9 130.706 314.863C135.353 315.916 140.143 316.47 144.971 316.47H145.233C149.944 316.47 154.615 315.941 159.151 314.94C159.025 319.955 159.537 325.231 161.03 329.587C160.398 337.17 153.419 343.164 144.931 343.164Z" fill="#A5312A"/>
+<path d="M69.0576 380.432C64.5019 380.432 60.8105 383.79 60.8105 387.932V504.5C60.8105 508.642 64.5019 512 69.0576 512C73.6133 512 77.3047 508.642 77.3047 504.5V387.932C77.3047 383.79 73.6133 380.432 69.0576 380.432Z" fill="#A5312A"/>
+<path d="M220.804 380.432C216.248 380.432 212.557 383.79 212.557 387.932V504.5C212.557 508.642 216.248 512 220.804 512C225.359 512 229.051 508.642 229.051 504.5V387.932C229.051 383.79 225.359 380.432 220.804 380.432Z" fill="#A5312A"/>
+<path d="M522.063 45.601C519.219 42.365 514.029 41.837 510.472 44.422C506.913 47.007 506.332 51.726 509.174 54.963C533.249 82.37 546.506 119.228 546.506 158.745C546.506 238.006 492.277 302.49 425.619 302.49C402.147 302.49 379.363 294.433 359.728 279.191C357.251 277.267 353.762 276.851 350.825 278.125L309.456 296.059L325.803 244.191C326.381 242.358 326.168 240.392 325.209 238.696C311.814 214.996 304.734 187.35 304.734 158.746C304.735 79.484 358.964 15 425.62 15C445.8 15 465.782 21.059 483.41 32.521C487.115 34.929 492.266 34.153 494.915 30.782C497.564 27.412 496.709 22.728 493.004 20.319C472.56 7.026 449.261 0 425.62 0C388.525 0 353.783 16.762 327.796 47.199C302.289 77.074 288.241 116.689 288.241 158.745C288.241 188.658 295.432 217.676 309.061 242.874L288.559 307.923C287.665 310.758 288.683 313.807 291.158 315.714C292.679 316.884 294.573 317.49 296.489 317.49C297.694 317.49 298.906 317.25 300.037 316.76L353.196 293.716C374.905 309.288 399.838 317.49 425.62 317.49C462.717 317.49 497.459 300.728 523.446 270.291C548.952 240.416 563 200.801 563 158.745C563 115.839 548.462 75.657 522.063 45.601Z" fill="#A5312A"/>
+<path d="M144.958 275.559C159.241 275.559 170.862 264.986 170.862 251.991C170.862 247.849 167.17 244.491 162.614 244.491C158.059 244.491 154.367 247.849 154.367 251.991C154.367 256.716 150.146 260.559 144.958 260.559C139.77 260.559 135.55 256.715 135.55 251.991C135.55 247.849 131.858 244.491 127.303 244.491C122.747 244.491 119.056 247.849 119.056 251.991C119.056 264.987 130.675 275.559 144.958 275.559Z" fill="#A5312A"/>
+<path d="M132.529 230.032C136.569 231.947 141.547 230.52 143.654 226.847C143.904 226.411 144.462 225.947 145.286 225.947C146.108 225.947 146.668 226.412 146.916 226.847C148.388 229.413 151.261 230.882 154.237 230.882C155.521 230.882 156.825 230.609 158.041 230.031C162.081 228.117 163.649 223.587 161.545 219.914C158.374 214.383 152.144 210.946 145.286 210.946C138.426 210.946 132.196 214.383 129.026 219.914C126.921 223.589 128.489 228.118 132.529 230.032Z" fill="#A5312A"/>
+<path d="M427.273 183.59C427.023 184.026 426.465 184.49 425.641 184.49C424.818 184.49 424.258 184.025 424.009 183.59C421.904 179.917 416.919 178.491 412.885 180.405C408.845 182.319 407.277 186.849 409.381 190.522C412.551 196.053 418.782 199.49 425.641 199.49C432.501 199.49 438.731 196.053 441.901 190.522C444.006 186.849 442.438 182.319 438.398 180.405C434.359 178.491 429.379 179.917 427.273 183.59Z" fill="#A5312A"/>
+<path d="M487.383 134.132C487.15 127.82 485.785 121.658 483.291 115.788C481.651 111.925 476.876 110.002 472.626 111.495C468.377 112.988 466.264 117.33 467.906 121.194C469.917 125.928 470.937 130.928 470.937 136.05L470.923 143.852C470.883 162.429 470.891 175.936 471.355 180.342C471.444 181.339 471.49 182.364 471.49 183.391C471.49 192.489 460.995 205.222 441.921 219.256C437.353 222.632 431.604 224.49 425.691 224.49C425.65 224.49 425.609 224.49 425.574 224.49C419.673 224.49 413.909 222.628 409.321 219.233C390.272 205.214 379.781 192.485 379.781 183.391C379.781 182.299 379.826 181.284 379.909 180.436C380.538 174.62 380.59 149.867 380.349 135.997C380.383 113.294 400.689 94.833 425.642 94.833C433.1 94.833 440.2 96.426 446.744 99.569C450.774 101.504 455.762 100.101 457.887 96.439C460.015 92.776 458.473 88.239 454.445 86.305C445.629 82.072 435.669 79.834 425.642 79.834C392.281 79.834 365.028 104.02 363.908 134.132H363.4C356.402 134.132 349.9 137 345.561 142.001C341.222 147.003 339.683 153.484 341.342 159.782C343.769 169.002 352.932 175.442 363.625 175.442H363.696C363.634 177.071 363.565 178.313 363.487 179.032C363.353 180.386 363.284 181.853 363.284 183.392C363.284 197.698 374.948 213.236 398.926 230.881C406.431 236.435 415.891 239.491 425.534 239.491H425.726C435.379 239.491 444.822 236.441 452.309 230.908C476.313 213.244 487.982 197.702 487.982 183.392C487.982 181.934 487.915 180.472 487.784 179.047C487.781 179.009 487.778 178.972 487.773 178.935C487.695 178.211 487.633 177.005 487.582 175.442H487.612C498.304 175.442 507.468 169.003 509.896 159.782C511.554 153.484 510.014 147.003 505.675 142.001C501.338 137.001 494.836 134.133 487.838 134.133L487.383 134.132ZM363.626 160.441C360.642 160.441 358.017 158.695 357.384 156.29C356.734 153.822 357.813 152.099 358.512 151.291C359.702 149.919 361.483 149.132 363.4 149.132H363.982C363.994 152.979 363.987 156.83 363.962 160.441H363.626ZM492.728 151.291C493.43 152.099 494.507 153.822 493.858 156.289C493.224 158.695 490.598 160.441 487.614 160.441H487.407C487.397 156.733 487.399 152.849 487.406 149.132H487.84C489.757 149.132 491.538 149.919 492.728 151.291Z" fill="#A5312A"/>
+</g>
+<defs>
+<clipPath id="clip0_400_71">
+<rect width="563" height="512" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/www/assets/icon/teacher.svg b/www/assets/icon/teacher.svg
index 0e4db97f..b76ab88a 100644
--- a/www/assets/icon/teacher.svg
+++ b/www/assets/icon/teacher.svg
@@ -1,5 +1,22 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="">
-<path d="M3.96667 0C2.77059 0 1.7 1.07059 1.7 2.26667V16H0.9C0.679088 16 0.5 16.1791 0.5 16.4C0.5 16.6209 0.679088 16.8 0.9 16.8H3.3H3.3015H4.1C4.1 14.9619 5.22708 13.3871 6.82784 12.7289C5.91128 12.166 5.3 11.1544 5.3 10C5.3 8.23268 6.73268 6.8 8.5 6.8C10.2673 6.8 11.7 8.23268 11.7 10C11.7 11.1545 11.0886 12.1662 10.172 12.729C10.7684 12.9743 11.2988 13.3467 11.7294 13.8117L14.0342 12.8683C14.4625 12.693 14.9139 12.6628 15.3336 12.7541L18.6443 6.6294C18.9595 6.04636 19.6876 5.8292 20.2706 6.14436C20.8536 6.45948 21.0708 7.1876 20.7556 7.77064L17.0503 14.6254C17.161 15.4886 16.748 16.3516 15.9846 16.8H24.1C24.3209 16.8 24.5 16.6209 24.5 16.4C24.5 16.1791 24.3209 16 24.1 16H23.3V2.26667C23.3 1.07059 22.2294 0 21.0333 0H3.96667Z" fill=""/>
-<path d="M19.8902 6.84812C20.0845 6.95316 20.1569 7.19588 20.0519 7.3902L16.2083 14.5007C16.4148 15.1836 16.0717 15.9242 15.398 16.2L12.1 17.55V22.5333C12.1 23.2876 11.3876 24 10.6334 24H6.90002C5.61244 24 4.90002 23.2876 4.90002 22V16.8C4.90002 14.8118 6.51178 13.2 8.50002 13.2C9.73942 13.2 10.832 13.8264 11.4793 14.7786L14.3373 13.6086C14.8035 13.4178 15.313 13.4967 15.6925 13.7728L19.3481 7.0098C19.4532 6.81544 19.6959 6.74308 19.8902 6.84812Z" fill=""/>
-<path d="M8.5001 7.59998C7.17462 7.59998 6.1001 8.6745 6.1001 9.99998C6.1001 11.3255 7.17462 12.4 8.5001 12.4C9.82558 12.4 10.9001 11.3255 10.9001 9.99998C10.9001 8.6745 9.82558 7.59998 8.5001 7.59998Z" fill=""/>
-</svg>
\ No newline at end of file
+<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_400_112)">
+<path d="M52.9979 26.5551C52.9399 37.7405 45.883 47.692 35.3455 51.4454V70.4216C28.4495 79.7002 22.5334 89.6678 17.6931 100.166V51.4454C4.98803 46.9531 -2.31689 33.6371 0.721662 20.509C3.76021 7.38097 16.1754 -1.37073 29.5614 0.177043C42.9474 1.72481 53.0349 13.0801 52.9979 26.5551Z" fill="white"/>
+<path d="M353.09 26.5551C353.032 37.7404 345.975 47.6919 335.438 51.4454V61.8608H317.785V51.4454C305.081 46.954 297.776 33.637 300.815 20.509C303.853 7.38092 316.268 -1.37078 329.654 0.177989C343.041 1.72576 353.128 13.0801 353.09 26.5551Z" fill="white"/>
+<path d="M335.438 182.215C335.438 88.445 267.14 17.7285 176.564 17.7285C85.9888 17.7285 17.6919 88.445 17.6919 182.215C17.6919 272.199 71.144 317.822 176.565 317.822C281.987 317.822 335.438 272.199 335.438 182.215ZM167.739 53.0343H185.391C190.265 53.0343 194.218 56.9857 194.218 61.861C194.218 66.7362 190.266 70.6876 185.391 70.6876H167.739C162.864 70.6876 158.912 66.7362 158.912 61.861C158.912 56.9857 162.864 53.0343 167.739 53.0343ZM158.913 79.5123H194.218C199.092 79.5123 203.044 83.4637 203.044 88.339C203.044 93.2143 199.093 97.1657 194.218 97.1657H158.913C154.039 97.1657 150.086 93.2143 150.086 88.339C150.086 83.4637 154.038 79.5123 158.913 79.5123ZM35.3443 194.254C35.3983 145.531 74.8834 106.045 123.607 105.991H229.522C278.268 105.991 317.785 145.508 317.785 194.254C317.785 243.001 278.269 282.517 229.522 282.517H123.607C74.8834 282.463 35.3983 242.978 35.3443 194.254Z" fill="white"/>
+<path d="M257.768 323.939C259.338 324.76 260.865 325.705 262.357 326.649H332.79C342.064 317.245 350.153 306.744 356.877 295.377C360.409 289.375 366.202 285.041 372.958 283.347C374.585 282.945 376.246 282.694 377.919 282.597L388.713 244.794C389.482 241.654 391.906 239.187 395.031 238.361C398.156 237.535 401.482 238.484 403.702 240.833C405.922 243.183 406.679 246.558 405.678 249.631L394.856 287.584C399.971 291.132 403.64 296.401 405.192 302.43C406.946 309.296 405.869 316.579 402.199 322.642C401.36 324.054 400.433 325.29 399.622 326.667H476.657V114.818H341.316C349.159 136.421 353.144 159.234 353.09 182.215C353.09 255.491 320.345 303.391 257.768 323.939Z" fill="white"/>
+<path d="M300.133 194.254C300.089 155.275 268.502 123.688 229.523 123.644H123.608C84.6104 123.644 52.9971 155.257 52.9971 194.254C52.9971 233.252 84.6104 264.865 123.608 264.865H229.523C268.502 264.821 300.089 233.234 300.133 194.254ZM105.955 211.907C91.3314 211.907 79.4761 200.051 79.4761 185.428C79.4761 170.804 91.3314 158.949 105.955 158.949C120.579 158.949 132.434 170.804 132.434 185.428C132.434 200.051 120.579 211.907 105.955 211.907ZM209.285 226.973C200.236 234.817 188.53 238.901 176.566 238.386C164.602 238.901 152.895 234.817 143.847 226.973C140.692 223.509 140.794 218.184 144.079 214.843C147.363 211.503 152.685 211.31 156.203 214.404C162.013 218.884 169.239 221.129 176.565 220.732C183.873 221.119 191.076 218.871 196.865 214.395C200.386 211.084 205.91 211.197 209.292 214.651C212.669 218.067 212.665 223.564 209.285 226.973ZM220.697 185.428C220.697 170.804 232.552 158.949 247.176 158.949C261.8 158.949 273.655 170.804 273.655 185.428C273.655 200.051 261.8 211.907 247.176 211.907C232.551 211.907 220.697 200.051 220.697 185.428Z" fill="white"/>
+<path d="M105.955 194.254C110.83 194.254 114.782 190.302 114.782 185.428C114.782 180.553 110.83 176.601 105.955 176.601C101.08 176.601 97.1284 180.553 97.1284 185.428C97.1284 190.302 101.08 194.254 105.955 194.254Z" fill="white"/>
+<path d="M247.175 194.254C252.05 194.254 256.002 190.302 256.002 185.428C256.002 180.553 252.05 176.601 247.175 176.601C242.3 176.601 238.349 180.553 238.349 185.428C238.349 190.302 242.3 194.254 247.175 194.254Z" fill="white"/>
+<path d="M158.913 353.128C158.913 362.877 166.816 370.78 176.565 370.78C186.315 370.78 194.218 362.877 194.218 353.128V335.475H158.913V353.128Z" fill="white"/>
+<path d="M311.096 344.301H279.021C281.316 348.317 283.076 352.618 284.256 357.09C293.717 354.008 302.74 349.708 311.096 344.301Z" fill="white"/>
+<path d="M158.913 512H194.218C203.967 512 211.87 504.097 211.87 494.348H141.26C141.26 504.097 149.164 512 158.913 512Z" fill="white"/>
+<path d="M503.137 79.5122H324.097C327.685 85.2074 330.947 91.1005 333.867 97.1646H485.485C490.359 97.1646 494.311 101.116 494.311 105.991V335.474C494.311 340.348 490.36 344.301 485.485 344.301H387.46C382.721 350.472 377.632 356.366 372.218 361.953H503.138C508.012 361.953 511.965 358.002 511.965 353.127V88.3389C511.964 83.4646 508.012 79.5122 503.137 79.5122Z" fill="white"/>
+<path d="M388.105 306.762C387.562 304.541 386.146 302.631 384.178 301.466C382.134 300.202 379.664 299.826 377.338 300.424C375.116 300.967 373.206 302.384 372.042 304.352C345.184 349.207 311.52 367.574 285.861 374.962C285.861 375.5 285.861 376.03 285.773 376.569L283.867 393.737C315.394 386.367 355.545 366.049 387.054 313.488C388.29 311.477 388.668 309.055 388.105 306.762Z" fill="white"/>
+<path d="M233.177 335.474H211.871V353.126C211.871 372.625 196.064 388.431 176.566 388.431C157.068 388.431 141.261 372.625 141.261 353.126V335.474H119.954C109.911 335.473 100.342 339.749 93.6441 347.232C86.9461 354.716 83.7516 364.698 84.8614 374.68L91.2954 432.563H150.088C154.962 432.563 158.914 436.514 158.914 441.389C158.914 446.265 154.963 450.216 150.088 450.216H93.7311C97.7065 465.788 111.729 476.686 127.8 476.695H225.331C241.402 476.686 255.424 465.788 259.399 450.216H203.044C198.17 450.216 194.217 446.265 194.217 441.389C194.217 436.514 198.169 432.563 203.044 432.563H261.836L268.27 374.68C269.38 364.699 266.185 354.716 259.487 347.232C252.789 339.749 243.221 335.473 233.177 335.474Z" fill="white"/>
+</g>
+<defs>
+<clipPath id="clip0_400_112">
+<rect width="512" height="512" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/www/ngsw.json b/www/ngsw.json
index 016ccc60..3e916bd7 100644
--- a/www/ngsw.json
+++ b/www/ngsw.json
@@ -1,6 +1,6 @@
 {
   "configVersion": 1,
-  "timestamp": 1723622726578,
+  "timestamp": 1724912496644,
   "index": "/index.html",
   "assetGroups": [
     {
@@ -592,7 +592,7 @@
     "/assets/appConfig/hummingbird.json": "825faf6872c89dc426e66e2e72b93c21613dadb4",
     "/assets/appConfig/imamiya-mission.json": "76660cd74833d59164accf49fa7f1c6140e2230e",
     "/assets/appConfig/inclued.json": "01bf2b5ea8b66c660111539ea184edabfd8719fb",
-    "/assets/appConfig/learningresources.json": "73f32e4da6e7fda0270969707021a8a06992181c",
+    "/assets/appConfig/learningresources.json": "c853ee7474212243fded4af5f9d546e88eecc3ab",
     "/assets/appConfig/localhost.json": "f5c1742fc3c8790d4857f5235b4b99cdad1ab054",
     "/assets/appConfig/turtuk-valley.json": "26aaca3708ce23634fed9877bef6597408a960f8",
     "/assets/arrow-right.svg": "bb67048eb7cd7987f8e2e43511f11a7d962f5af3",
@@ -628,7 +628,7 @@
     "/assets/icon/arrow-back.svg": "f44ab88474123315fd3e6f58509e975b871fe2ae",
     "/assets/icon/audio-record.svg": "fcacdc334a6f0e8434cc8d542867867ec8b910b8",
     "/assets/icon/back.svg": "61de3d9458497f6023d63c1ac7489d19cdbe390e",
-    "/assets/icon/book.svg": "d083d5fbd4a988844a8dd86b76e82d80c8c1562b",
+    "/assets/icon/book.svg": "1d28769fd290e1854ea71f01b76815e79602e37f",
     "/assets/icon/bot-audio.svg": "b9e99af62534bad705f147bd33903a490f4071ba",
     "/assets/icon/bot-back-icon.svg": "b4a4c77cf3573092d1510d783c422540ae730072",
     "/assets/icon/delete.svg": "22b1f2b2df45bc6e6c67312844c8f14ff8ef4184",
@@ -649,7 +649,7 @@
     "/assets/icon/like.svg": "99e6982247c7666800e246fa3ab01edd416f6cd9",
     "/assets/icon/list.svg": "f5301a6d1557298bdfeeee49e58ce0a250223e43",
     "/assets/icon/mic.svg": "382dc0b912df3d0a41fe11b82c6550f486d95ac5",
-    "/assets/icon/parents.svg": "b2a77ac240c934e6b619ffc2806518e2ceccb691",
+    "/assets/icon/parents.svg": "806fdf13e928c2e2b481b81c519aec825a52f335",
     "/assets/icon/pause.svg": "73e3e19f04f9366367a4826487ac2b79ec39a0f0",
     "/assets/icon/pitara-blue.svg": "271148b3c65617ebbf772fc0910444f8ca0b7fcf",
     "/assets/icon/pitara1.svg": "d6f61f8ed4b6bc4eb3b2b48d4ef30320828110b9",
@@ -658,7 +658,7 @@
     "/assets/icon/sd-card.svg": "edd17d496d7864af8be06e56ee1dd8db8cad1c2b",
     "/assets/icon/search.svg": "cec3de04e0a8cd0af2c7a784a5b8931abc315c29",
     "/assets/icon/share.svg": "4ecf27a15c812050b50131dcd8e6136ccba36080",
-    "/assets/icon/teacher.svg": "b5f4a538b56e35c84b5c8f86b4b45071f3fe5c6c",
+    "/assets/icon/teacher.svg": "d43357fe3e6516a54a3a570f3ca7342e6492acb8",
     "/assets/icon/thumb-up.svg": "8e2c70681233964c0ae802332a987ce70c349a3f",
     "/assets/icon/upload.svg": "dd6bc468aafe8116d70d09e1ca8c450bb0c88779",
     "/assets/icon/waveform.svg": "d8c02682970200755796059339735be7c9dda53b",