├── .DS_Store ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── index.py ├── pyvenv.cfg ├── requirements.txt ├── static ├── .DS_Store ├── Bootstrap │ └── ScrollEffects │ │ ├── onScroll.css │ │ └── onScroll.js ├── JavaScript │ ├── appointment.js │ ├── form.js │ ├── main.js │ ├── register.js │ ├── script.js │ └── tutor.js ├── Style │ ├── CategoryPage1.css │ ├── appointment.css │ ├── cources.css │ ├── dashboard.css │ ├── form.css │ ├── hamburger.css │ ├── login.css │ ├── main.css │ ├── register.css │ ├── style.css │ ├── teachers.css │ └── turtor.css ├── images │ ├── 10212094.jpg │ ├── ai.jpg │ ├── areo.png │ ├── bg_ai.jpg │ ├── bg_biology.jpg │ ├── bg_chemical.jpg │ ├── bg_chemistry.jpg │ ├── bg_china.jpg │ ├── bg_civil.jpg │ ├── bg_classical.jpg │ ├── bg_country.jpg │ ├── bg_electronics.jpg │ ├── bg_french.png │ ├── bg_germany.webp │ ├── bg_indierock.jpg │ ├── bg_japan.webp │ ├── bg_jass.jpg │ ├── bg_mechanics.jpg │ ├── bg_metal.jpg │ ├── bg_physics.webp │ ├── bg_spain.png │ ├── bio.png │ ├── books.png │ ├── chemical.jpg │ ├── chemm.png │ ├── chemmm.jpg │ ├── civil.png │ ├── classical.jpg │ ├── country.webp │ ├── doctor.png │ ├── electronu=ics.jpg │ ├── fb.png │ ├── insta.png │ ├── jszz.png │ ├── lindin.png │ ├── lit.png │ ├── loginbkimg.jpg │ ├── mecha.webp │ ├── music.png │ ├── phy.webp │ ├── pp.jpg │ ├── profile.jpg │ ├── teacher-2.png │ ├── tutorImg.png │ └── twiter.png └── logo │ ├── MainImg.png │ ├── braille.jpg │ ├── courses.png │ ├── deafS.jpg │ ├── discover.png │ ├── doubt.webp │ ├── img1.png │ ├── logo.mp4 │ ├── matchM.png │ ├── online.png │ ├── pic1.jpg │ ├── pic2.jpg │ ├── review.png │ ├── scheduling.png │ ├── sign.jpg │ ├── smartED.png │ ├── startL.png │ └── tutor.png ├── templates ├── .DS_Store ├── 1.html ├── 404.html ├── appointment.html ├── cources.html ├── courcestemp.html ├── dashboard.html ├── doubt.html ├── index.html ├── login.html ├── profiletemp.html ├── regester.html ├── teacherport.html └── tutor.html ├── tmp └── I └── vercel.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/app.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/index.py -------------------------------------------------------------------------------- /pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/pyvenv.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/Bootstrap/ScrollEffects/onScroll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Bootstrap/ScrollEffects/onScroll.css -------------------------------------------------------------------------------- /static/Bootstrap/ScrollEffects/onScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Bootstrap/ScrollEffects/onScroll.js -------------------------------------------------------------------------------- /static/JavaScript/appointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/JavaScript/appointment.js -------------------------------------------------------------------------------- /static/JavaScript/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/JavaScript/form.js -------------------------------------------------------------------------------- /static/JavaScript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/JavaScript/main.js -------------------------------------------------------------------------------- /static/JavaScript/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/JavaScript/register.js -------------------------------------------------------------------------------- /static/JavaScript/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/JavaScript/tutor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/JavaScript/tutor.js -------------------------------------------------------------------------------- /static/Style/CategoryPage1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/CategoryPage1.css -------------------------------------------------------------------------------- /static/Style/appointment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/appointment.css -------------------------------------------------------------------------------- /static/Style/cources.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/cources.css -------------------------------------------------------------------------------- /static/Style/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/dashboard.css -------------------------------------------------------------------------------- /static/Style/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/form.css -------------------------------------------------------------------------------- /static/Style/hamburger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/hamburger.css -------------------------------------------------------------------------------- /static/Style/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/login.css -------------------------------------------------------------------------------- /static/Style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/main.css -------------------------------------------------------------------------------- /static/Style/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/register.css -------------------------------------------------------------------------------- /static/Style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/style.css -------------------------------------------------------------------------------- /static/Style/teachers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/teachers.css -------------------------------------------------------------------------------- /static/Style/turtor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/Style/turtor.css -------------------------------------------------------------------------------- /static/images/10212094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/10212094.jpg -------------------------------------------------------------------------------- /static/images/ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/ai.jpg -------------------------------------------------------------------------------- /static/images/areo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/areo.png -------------------------------------------------------------------------------- /static/images/bg_ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_ai.jpg -------------------------------------------------------------------------------- /static/images/bg_biology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_biology.jpg -------------------------------------------------------------------------------- /static/images/bg_chemical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_chemical.jpg -------------------------------------------------------------------------------- /static/images/bg_chemistry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_chemistry.jpg -------------------------------------------------------------------------------- /static/images/bg_china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_china.jpg -------------------------------------------------------------------------------- /static/images/bg_civil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_civil.jpg -------------------------------------------------------------------------------- /static/images/bg_classical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_classical.jpg -------------------------------------------------------------------------------- /static/images/bg_country.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_country.jpg -------------------------------------------------------------------------------- /static/images/bg_electronics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_electronics.jpg -------------------------------------------------------------------------------- /static/images/bg_french.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_french.png -------------------------------------------------------------------------------- /static/images/bg_germany.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_germany.webp -------------------------------------------------------------------------------- /static/images/bg_indierock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_indierock.jpg -------------------------------------------------------------------------------- /static/images/bg_japan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_japan.webp -------------------------------------------------------------------------------- /static/images/bg_jass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_jass.jpg -------------------------------------------------------------------------------- /static/images/bg_mechanics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_mechanics.jpg -------------------------------------------------------------------------------- /static/images/bg_metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_metal.jpg -------------------------------------------------------------------------------- /static/images/bg_physics.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_physics.webp -------------------------------------------------------------------------------- /static/images/bg_spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bg_spain.png -------------------------------------------------------------------------------- /static/images/bio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/bio.png -------------------------------------------------------------------------------- /static/images/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/books.png -------------------------------------------------------------------------------- /static/images/chemical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/chemical.jpg -------------------------------------------------------------------------------- /static/images/chemm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/chemm.png -------------------------------------------------------------------------------- /static/images/chemmm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/chemmm.jpg -------------------------------------------------------------------------------- /static/images/civil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/civil.png -------------------------------------------------------------------------------- /static/images/classical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/classical.jpg -------------------------------------------------------------------------------- /static/images/country.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/country.webp -------------------------------------------------------------------------------- /static/images/doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/doctor.png -------------------------------------------------------------------------------- /static/images/electronu=ics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/electronu=ics.jpg -------------------------------------------------------------------------------- /static/images/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/fb.png -------------------------------------------------------------------------------- /static/images/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/insta.png -------------------------------------------------------------------------------- /static/images/jszz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/jszz.png -------------------------------------------------------------------------------- /static/images/lindin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/lindin.png -------------------------------------------------------------------------------- /static/images/lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/lit.png -------------------------------------------------------------------------------- /static/images/loginbkimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/loginbkimg.jpg -------------------------------------------------------------------------------- /static/images/mecha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/mecha.webp -------------------------------------------------------------------------------- /static/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/music.png -------------------------------------------------------------------------------- /static/images/phy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/phy.webp -------------------------------------------------------------------------------- /static/images/pp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/pp.jpg -------------------------------------------------------------------------------- /static/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/profile.jpg -------------------------------------------------------------------------------- /static/images/teacher-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/teacher-2.png -------------------------------------------------------------------------------- /static/images/tutorImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/tutorImg.png -------------------------------------------------------------------------------- /static/images/twiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/images/twiter.png -------------------------------------------------------------------------------- /static/logo/MainImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/MainImg.png -------------------------------------------------------------------------------- /static/logo/braille.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/braille.jpg -------------------------------------------------------------------------------- /static/logo/courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/courses.png -------------------------------------------------------------------------------- /static/logo/deafS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/deafS.jpg -------------------------------------------------------------------------------- /static/logo/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/discover.png -------------------------------------------------------------------------------- /static/logo/doubt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/doubt.webp -------------------------------------------------------------------------------- /static/logo/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/img1.png -------------------------------------------------------------------------------- /static/logo/logo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/logo.mp4 -------------------------------------------------------------------------------- /static/logo/matchM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/matchM.png -------------------------------------------------------------------------------- /static/logo/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/online.png -------------------------------------------------------------------------------- /static/logo/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/pic1.jpg -------------------------------------------------------------------------------- /static/logo/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/pic2.jpg -------------------------------------------------------------------------------- /static/logo/review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/review.png -------------------------------------------------------------------------------- /static/logo/scheduling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/scheduling.png -------------------------------------------------------------------------------- /static/logo/sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/sign.jpg -------------------------------------------------------------------------------- /static/logo/smartED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/smartED.png -------------------------------------------------------------------------------- /static/logo/startL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/startL.png -------------------------------------------------------------------------------- /static/logo/tutor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/static/logo/tutor.png -------------------------------------------------------------------------------- /templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/.DS_Store -------------------------------------------------------------------------------- /templates/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/1.html -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/appointment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/appointment.html -------------------------------------------------------------------------------- /templates/cources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/cources.html -------------------------------------------------------------------------------- /templates/courcestemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/courcestemp.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/doubt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/doubt.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/profiletemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/profiletemp.html -------------------------------------------------------------------------------- /templates/regester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/regester.html -------------------------------------------------------------------------------- /templates/teacherport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/teacherport.html -------------------------------------------------------------------------------- /templates/tutor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/templates/tutor.html -------------------------------------------------------------------------------- /tmp/I: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/ClydeWeb/HEAD/vercel.json --------------------------------------------------------------------------------