├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── TEMPORARY_MODIFICATIONS.md ├── assets └── evt │ ├── 2023-03-22_09-54-19_UTC.jpg │ ├── 2023-03-22_09-54-19_UTC.txt │ ├── 2024-07-16_11-41-17_UTC.jpg │ ├── 2024-07-16_11-41-17_UTC.txt │ ├── 2024-09-23_06-54-49_UTC.jpg │ ├── 2024-09-23_06-54-49_UTC.txt │ ├── 2024-12-05_11-31-48_UTC.jpg │ ├── 2024-12-05_11-31-48_UTC.txt │ ├── 2024-12-29_08-59-01_UTC.mp4 │ ├── 2024-12-29_08-59-01_UTC.txt │ ├── 2025-01-25_01-20-01_UTC.jpg │ ├── 2025-01-25_01-20-01_UTC.txt │ ├── 2025-01-27_08-57-27_UTC.jpg │ ├── 2025-01-27_08-57-27_UTC.txt │ ├── 2025-02-06_00-30-44_UTC.jpg │ ├── 2025-02-06_00-30-44_UTC.txt │ ├── 2025-02-10_10-25-33_UTC.jpg │ ├── 2025-02-10_10-25-33_UTC.txt │ ├── 2025-02-13_02-15-54_UTC.jpg │ ├── 2025-02-13_02-15-54_UTC.txt │ ├── 2025-05-09_06-25-51_UTC.jpg │ ├── 2025-05-09_06-25-51_UTC.txt │ ├── 2025-05-14_08-34-35_UTC.jpg │ ├── 2025-05-14_08-34-35_UTC.txt │ ├── 2025-05-15_12-44-00_UTC.jpg │ └── 2025-05-15_12-44-00_UTC.txt ├── babel.config.js ├── jest.config.js ├── jsconfig.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html └── sundarbans2.png ├── src ├── App.vue ├── assets │ ├── Paradox.jpg │ ├── delete.svg │ ├── docs │ │ ├── image1.png │ │ └── image2.png │ ├── evt │ │ ├── 2023-03-22_09-54-19_UTC.jpg │ │ ├── 2023-03-22_09-54-19_UTC.txt │ │ ├── 2024-07-16_11-41-17_UTC.jpg │ │ ├── 2024-07-16_11-41-17_UTC.txt │ │ ├── 2024-09-23_06-54-49_UTC.jpg │ │ ├── 2024-09-23_06-54-49_UTC.txt │ │ ├── 2024-12-05_11-31-48_UTC.jpg │ │ ├── 2024-12-05_11-31-48_UTC.txt │ │ ├── 2025-01-25_01-20-01_UTC.jpg │ │ ├── 2025-01-25_01-20-01_UTC.txt │ │ ├── 2025-01-27_08-57-27_UTC.jpg │ │ ├── 2025-01-27_08-57-27_UTC.txt │ │ ├── 2025-02-06_00-30-44_UTC.jpg │ │ ├── 2025-02-06_00-30-44_UTC.txt │ │ ├── 2025-02-10_10-25-33_UTC.jpg │ │ ├── 2025-02-10_10-25-33_UTC.txt │ │ ├── 2025-02-13_02-15-54_UTC.jpg │ │ ├── 2025-02-13_02-15-54_UTC.txt │ │ ├── 2025-05-09_06-25-51_UTC.jpg │ │ ├── 2025-05-09_06-25-51_UTC.txt │ │ ├── 2025-05-14_08-34-35_UTC.jpg │ │ ├── 2025-05-14_08-34-35_UTC.txt │ │ ├── 2025-05-15_12-44-00_UTC.jpg │ │ ├── 2025-05-15_12-44-00_UTC.txt │ │ ├── 2025-05-17_05-37-09_UTC.jpg │ │ ├── 2025-05-17_05-37-09_UTC.txt │ │ ├── 2025-05-19_11-50-11_UTC.jpg │ │ ├── 2025-05-19_11-50-11_UTC.txt │ │ ├── 2025-05-21_09-12-12_UTC.jpg │ │ ├── 2025-05-21_09-12-12_UTC.txt │ │ ├── 2025-08-14_08-48-51_UTC.jpg │ │ ├── 2025-08-14_08-48-51_UTC.txt │ │ ├── 2025-09-19_12-25-35_UTC.txt │ │ ├── 2025-09-19_12-25-35_UTC_1.jpg │ │ ├── 2025-09-19_12-25-35_UTC_10.jpg │ │ ├── 2025-09-19_12-25-35_UTC_11.jpg │ │ ├── 2025-09-19_12-25-35_UTC_12.jpg │ │ ├── 2025-09-19_12-25-35_UTC_13.jpg │ │ ├── 2025-09-19_12-25-35_UTC_14.jpg │ │ ├── 2025-09-19_12-25-35_UTC_15.jpg │ │ ├── 2025-09-19_12-25-35_UTC_2.jpg │ │ ├── 2025-09-19_12-25-35_UTC_3.jpg │ │ ├── 2025-09-19_12-25-35_UTC_4.jpg │ │ ├── 2025-09-19_12-25-35_UTC_5.jpg │ │ ├── 2025-09-19_12-25-35_UTC_6.jpg │ │ ├── 2025-09-19_12-25-35_UTC_7.jpg │ │ ├── 2025-09-19_12-25-35_UTC_8.jpg │ │ ├── 2025-09-19_12-25-35_UTC_9.jpg │ │ ├── 2025-10-04_05-42-23_UTC.jpg │ │ ├── 2025-10-04_05-42-23_UTC.txt │ │ └── latest_events.json │ ├── iitmphoto.jpg │ ├── insta.png │ ├── linkedin.png │ ├── notfound.png │ ├── notfound2.png │ ├── ppl │ │ ├── aakash.webp │ │ ├── aditya.jpeg │ │ ├── anshi.jpg │ │ ├── chandan.webp │ │ ├── dishi.webp │ │ ├── divy.jpeg │ │ ├── kartik.webp │ │ ├── laksh.webp │ │ ├── mannu.jpeg │ │ ├── nivash.jpeg │ │ ├── rushabh.jpg │ │ └── shoaib.jpeg │ ├── refresh.svg │ ├── snap.png │ ├── sundarbans2.png │ └── update.svg ├── components │ ├── ChatBot.vue │ ├── ClubPage.vue │ ├── ClubPageNoBackend.vue │ ├── Council2425.vue │ ├── CouncilPage.vue │ ├── CouncilPageNoBackend.vue │ ├── EventSlug.vue │ ├── EventsPage.vue │ ├── EventsPageNoBackend.vue │ ├── GLDashboard.vue │ ├── GRP.vue │ ├── GRPAdmin.vue │ ├── GRPDetails.vue │ ├── GoogleLogin.vue │ ├── HomePage.vue │ ├── HomePageNoBackend.vue │ ├── NavBar.vue │ ├── NavBarNoBackend.vue │ ├── NotFound.vue │ ├── NotesPage.vue │ ├── PhotoCompetition.vue │ ├── PrivacyPolicy.vue │ ├── SDSDashboard.vue │ ├── StudyBuddy.vue │ ├── StudyGroups.vue │ ├── UserPage.vue │ ├── UserPageNoBackend.vue │ ├── VideoGallery.vue │ ├── WhatsAppLinks.vue │ ├── YoutubeVid.vue │ └── newPage.vue ├── index.css ├── main.js ├── router.js └── tmp_evt │ ├── 2023-03-22_09-54-19_UTC.jpg │ ├── 2023-03-22_09-54-19_UTC.txt │ ├── 2024-07-16_11-41-17_UTC.jpg │ ├── 2024-07-16_11-41-17_UTC.txt │ ├── 2024-09-23_06-54-49_UTC.jpg │ ├── 2024-09-23_06-54-49_UTC.txt │ ├── 2024-12-05_11-31-48_UTC.jpg │ ├── 2024-12-05_11-31-48_UTC.txt │ ├── 2025-01-25_01-20-01_UTC.jpg │ ├── 2025-01-25_01-20-01_UTC.txt │ ├── 2025-01-27_08-57-27_UTC.jpg │ ├── 2025-01-27_08-57-27_UTC.txt │ ├── 2025-02-06_00-30-44_UTC.jpg │ ├── 2025-02-06_00-30-44_UTC.txt │ ├── 2025-02-10_10-25-33_UTC.jpg │ ├── 2025-02-10_10-25-33_UTC.txt │ ├── 2025-02-13_02-15-54_UTC.jpg │ ├── 2025-02-13_02-15-54_UTC.txt │ ├── 2025-05-09_06-25-51_UTC.jpg │ ├── 2025-05-09_06-25-51_UTC.txt │ ├── 2025-05-14_08-34-35_UTC.jpg │ ├── 2025-05-14_08-34-35_UTC.txt │ ├── 2025-05-15_12-44-00_UTC.jpg │ └── 2025-05-15_12-44-00_UTC.txt ├── tailwind.config.js ├── test-build.txt ├── tests └── unit │ ├── CouncilPage.spec.js │ ├── EventsPage.spec.js │ └── HomePage.spec.js └── vue.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TEMPORARY_MODIFICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/TEMPORARY_MODIFICATIONS.md -------------------------------------------------------------------------------- /assets/evt/2023-03-22_09-54-19_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2023-03-22_09-54-19_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2023-03-22_09-54-19_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2023-03-22_09-54-19_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2024-07-16_11-41-17_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-07-16_11-41-17_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2024-07-16_11-41-17_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-07-16_11-41-17_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2024-09-23_06-54-49_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-09-23_06-54-49_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2024-09-23_06-54-49_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-09-23_06-54-49_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2024-12-05_11-31-48_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-12-05_11-31-48_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2024-12-05_11-31-48_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-12-05_11-31-48_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2024-12-29_08-59-01_UTC.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-12-29_08-59-01_UTC.mp4 -------------------------------------------------------------------------------- /assets/evt/2024-12-29_08-59-01_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2024-12-29_08-59-01_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-01-25_01-20-01_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-01-25_01-20-01_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-01-25_01-20-01_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-01-25_01-20-01_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-01-27_08-57-27_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-01-27_08-57-27_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-01-27_08-57-27_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-01-27_08-57-27_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-02-06_00-30-44_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-02-06_00-30-44_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-02-06_00-30-44_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-02-06_00-30-44_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-02-10_10-25-33_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-02-10_10-25-33_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-02-10_10-25-33_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-02-10_10-25-33_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-02-13_02-15-54_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-02-13_02-15-54_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-02-13_02-15-54_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-02-13_02-15-54_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-05-09_06-25-51_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-05-09_06-25-51_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-05-09_06-25-51_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-05-09_06-25-51_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-05-14_08-34-35_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-05-14_08-34-35_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-05-14_08-34-35_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-05-14_08-34-35_UTC.txt -------------------------------------------------------------------------------- /assets/evt/2025-05-15_12-44-00_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-05-15_12-44-00_UTC.jpg -------------------------------------------------------------------------------- /assets/evt/2025-05-15_12-44-00_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/assets/evt/2025-05-15_12-44-00_UTC.txt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/sundarbans2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/public/sundarbans2.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/Paradox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/Paradox.jpg -------------------------------------------------------------------------------- /src/assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/delete.svg -------------------------------------------------------------------------------- /src/assets/docs/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/docs/image1.png -------------------------------------------------------------------------------- /src/assets/docs/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/docs/image2.png -------------------------------------------------------------------------------- /src/assets/evt/2023-03-22_09-54-19_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2023-03-22_09-54-19_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2023-03-22_09-54-19_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2023-03-22_09-54-19_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2024-07-16_11-41-17_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2024-07-16_11-41-17_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2024-07-16_11-41-17_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2024-07-16_11-41-17_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2024-09-23_06-54-49_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2024-09-23_06-54-49_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2024-09-23_06-54-49_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2024-09-23_06-54-49_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2024-12-05_11-31-48_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2024-12-05_11-31-48_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2024-12-05_11-31-48_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2024-12-05_11-31-48_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-01-25_01-20-01_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-01-25_01-20-01_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-01-25_01-20-01_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-01-25_01-20-01_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-01-27_08-57-27_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-01-27_08-57-27_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-01-27_08-57-27_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-01-27_08-57-27_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-02-06_00-30-44_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-02-06_00-30-44_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-02-06_00-30-44_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-02-06_00-30-44_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-02-10_10-25-33_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-02-10_10-25-33_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-02-10_10-25-33_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-02-10_10-25-33_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-02-13_02-15-54_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-02-13_02-15-54_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-02-13_02-15-54_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-02-13_02-15-54_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-05-09_06-25-51_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-09_06-25-51_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-05-09_06-25-51_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-09_06-25-51_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-05-14_08-34-35_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-14_08-34-35_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-05-14_08-34-35_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-14_08-34-35_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-05-15_12-44-00_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-15_12-44-00_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-05-15_12-44-00_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-15_12-44-00_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-05-17_05-37-09_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-17_05-37-09_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-05-17_05-37-09_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-17_05-37-09_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-05-19_11-50-11_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-19_11-50-11_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-05-19_11-50-11_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-19_11-50-11_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-05-21_09-12-12_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-21_09-12-12_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-05-21_09-12-12_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-05-21_09-12-12_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-08-14_08-48-51_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-08-14_08-48-51_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-08-14_08-48-51_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-08-14_08-48-51_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_1.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_10.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_11.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_12.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_13.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_14.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_15.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_2.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_3.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_4.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_5.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_6.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_7.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_8.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-09-19_12-25-35_UTC_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-09-19_12-25-35_UTC_9.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-10-04_05-42-23_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-10-04_05-42-23_UTC.jpg -------------------------------------------------------------------------------- /src/assets/evt/2025-10-04_05-42-23_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/2025-10-04_05-42-23_UTC.txt -------------------------------------------------------------------------------- /src/assets/evt/latest_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/evt/latest_events.json -------------------------------------------------------------------------------- /src/assets/iitmphoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/iitmphoto.jpg -------------------------------------------------------------------------------- /src/assets/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/insta.png -------------------------------------------------------------------------------- /src/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/linkedin.png -------------------------------------------------------------------------------- /src/assets/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/notfound.png -------------------------------------------------------------------------------- /src/assets/notfound2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/notfound2.png -------------------------------------------------------------------------------- /src/assets/ppl/aakash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/aakash.webp -------------------------------------------------------------------------------- /src/assets/ppl/aditya.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/aditya.jpeg -------------------------------------------------------------------------------- /src/assets/ppl/anshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/anshi.jpg -------------------------------------------------------------------------------- /src/assets/ppl/chandan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/chandan.webp -------------------------------------------------------------------------------- /src/assets/ppl/dishi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/dishi.webp -------------------------------------------------------------------------------- /src/assets/ppl/divy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/divy.jpeg -------------------------------------------------------------------------------- /src/assets/ppl/kartik.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/kartik.webp -------------------------------------------------------------------------------- /src/assets/ppl/laksh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/laksh.webp -------------------------------------------------------------------------------- /src/assets/ppl/mannu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/mannu.jpeg -------------------------------------------------------------------------------- /src/assets/ppl/nivash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/nivash.jpeg -------------------------------------------------------------------------------- /src/assets/ppl/rushabh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/rushabh.jpg -------------------------------------------------------------------------------- /src/assets/ppl/shoaib.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/ppl/shoaib.jpeg -------------------------------------------------------------------------------- /src/assets/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/refresh.svg -------------------------------------------------------------------------------- /src/assets/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/snap.png -------------------------------------------------------------------------------- /src/assets/sundarbans2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/sundarbans2.png -------------------------------------------------------------------------------- /src/assets/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/assets/update.svg -------------------------------------------------------------------------------- /src/components/ChatBot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/ChatBot.vue -------------------------------------------------------------------------------- /src/components/ClubPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/ClubPage.vue -------------------------------------------------------------------------------- /src/components/ClubPageNoBackend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/ClubPageNoBackend.vue -------------------------------------------------------------------------------- /src/components/Council2425.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/Council2425.vue -------------------------------------------------------------------------------- /src/components/CouncilPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/CouncilPage.vue -------------------------------------------------------------------------------- /src/components/CouncilPageNoBackend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/CouncilPageNoBackend.vue -------------------------------------------------------------------------------- /src/components/EventSlug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/EventSlug.vue -------------------------------------------------------------------------------- /src/components/EventsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/EventsPage.vue -------------------------------------------------------------------------------- /src/components/EventsPageNoBackend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/EventsPageNoBackend.vue -------------------------------------------------------------------------------- /src/components/GLDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/GLDashboard.vue -------------------------------------------------------------------------------- /src/components/GRP.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/GRP.vue -------------------------------------------------------------------------------- /src/components/GRPAdmin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/GRPAdmin.vue -------------------------------------------------------------------------------- /src/components/GRPDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/GRPDetails.vue -------------------------------------------------------------------------------- /src/components/GoogleLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/GoogleLogin.vue -------------------------------------------------------------------------------- /src/components/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/HomePage.vue -------------------------------------------------------------------------------- /src/components/HomePageNoBackend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/HomePageNoBackend.vue -------------------------------------------------------------------------------- /src/components/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/NavBar.vue -------------------------------------------------------------------------------- /src/components/NavBarNoBackend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/NavBarNoBackend.vue -------------------------------------------------------------------------------- /src/components/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/NotFound.vue -------------------------------------------------------------------------------- /src/components/NotesPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/NotesPage.vue -------------------------------------------------------------------------------- /src/components/PhotoCompetition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/PhotoCompetition.vue -------------------------------------------------------------------------------- /src/components/PrivacyPolicy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/PrivacyPolicy.vue -------------------------------------------------------------------------------- /src/components/SDSDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/SDSDashboard.vue -------------------------------------------------------------------------------- /src/components/StudyBuddy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/StudyBuddy.vue -------------------------------------------------------------------------------- /src/components/StudyGroups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/StudyGroups.vue -------------------------------------------------------------------------------- /src/components/UserPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/UserPage.vue -------------------------------------------------------------------------------- /src/components/UserPageNoBackend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/UserPageNoBackend.vue -------------------------------------------------------------------------------- /src/components/VideoGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/VideoGallery.vue -------------------------------------------------------------------------------- /src/components/WhatsAppLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/WhatsAppLinks.vue -------------------------------------------------------------------------------- /src/components/YoutubeVid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/YoutubeVid.vue -------------------------------------------------------------------------------- /src/components/newPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/components/newPage.vue -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/router.js -------------------------------------------------------------------------------- /src/tmp_evt/2023-03-22_09-54-19_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2023-03-22_09-54-19_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2023-03-22_09-54-19_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2023-03-22_09-54-19_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2024-07-16_11-41-17_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2024-07-16_11-41-17_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2024-07-16_11-41-17_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2024-07-16_11-41-17_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2024-09-23_06-54-49_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2024-09-23_06-54-49_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2024-09-23_06-54-49_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2024-09-23_06-54-49_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2024-12-05_11-31-48_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2024-12-05_11-31-48_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2024-12-05_11-31-48_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2024-12-05_11-31-48_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-01-25_01-20-01_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-01-25_01-20-01_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-01-25_01-20-01_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-01-25_01-20-01_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-01-27_08-57-27_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-01-27_08-57-27_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-01-27_08-57-27_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-01-27_08-57-27_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-02-06_00-30-44_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-02-06_00-30-44_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-02-06_00-30-44_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-02-06_00-30-44_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-02-10_10-25-33_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-02-10_10-25-33_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-02-10_10-25-33_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-02-10_10-25-33_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-02-13_02-15-54_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-02-13_02-15-54_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-02-13_02-15-54_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-02-13_02-15-54_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-05-09_06-25-51_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-05-09_06-25-51_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-05-09_06-25-51_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-05-09_06-25-51_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-05-14_08-34-35_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-05-14_08-34-35_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-05-14_08-34-35_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-05-14_08-34-35_UTC.txt -------------------------------------------------------------------------------- /src/tmp_evt/2025-05-15_12-44-00_UTC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-05-15_12-44-00_UTC.jpg -------------------------------------------------------------------------------- /src/tmp_evt/2025-05-15_12-44-00_UTC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/src/tmp_evt/2025-05-15_12-44-00_UTC.txt -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/test-build.txt -------------------------------------------------------------------------------- /tests/unit/CouncilPage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/tests/unit/CouncilPage.spec.js -------------------------------------------------------------------------------- /tests/unit/EventsPage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/tests/unit/EventsPage.spec.js -------------------------------------------------------------------------------- /tests/unit/HomePage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/tests/unit/HomePage.spec.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SundarbansWebOps/Frontend/HEAD/vue.config.js --------------------------------------------------------------------------------