├── .eslintrc ├── .github └── pull_request_template.md ├── .gitignore ├── .idea ├── .gitignore ├── AISKCON-CONSTRUCTION.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── .prettierrc ├── README.md ├── ServiceSection ├── index.html └── style.css ├── aboutUs ├── index.html ├── main.js └── style.css ├── backend ├── app.js ├── controller │ └── email.js ├── package-lock.json └── package.json ├── contact ├── index.html └── style.css ├── contribution.md ├── css └── style.css ├── docs ├── Installation.md └── contribution.md ├── img ├── bg │ ├── background.webp │ ├── build-with-quality.webp │ ├── construction.webp │ ├── constructionmanagement.webp │ ├── contact_us.webp │ ├── customer_support.png │ ├── design-and-build.webp │ ├── falts.webp │ ├── generalconstruction.webp │ ├── group.webp │ ├── hireus.webp │ ├── hospital.webp │ ├── hotel.webp │ ├── houseconstruction.webp │ ├── interior.webp │ ├── planning.webp │ ├── preconstruction.webp │ ├── rebuilding.webp │ ├── renovation.webp │ ├── repair.webp │ ├── repair2.webp │ ├── retro.webp │ ├── roads.webp │ ├── school.webp │ ├── servicenew.jpg │ ├── services.webp │ ├── services2.webp │ ├── slide1.webp │ ├── slide2.webp │ ├── slide3.webp │ ├── slide4.webp │ ├── slide5.webp │ ├── special-projects.webp │ └── whychooseus.jpg ├── favicon_io │ └── favicon.ico ├── logo │ ├── AISCKON LOGO.png │ ├── aiskcon logo.png │ ├── hero-logo.png │ └── navLogo.png └── vectors │ ├── appliance-repair.webp │ ├── bathroom-repair.webp │ ├── build-with-quality.webp │ ├── collage.webp │ ├── customer1.png │ ├── furniture-repair.webp │ ├── hero.gif │ ├── home-repair.webp │ ├── kitchen.webp │ ├── mission.webp │ ├── office.webp │ ├── plumber_1.webp │ ├── safety (1).png │ ├── team.webp │ ├── user.webp │ ├── vision(2).webp │ └── vision.webp ├── index.html ├── js └── main.js ├── package.json ├── repair ├── index.html └── style.css └── slotBooking ├── aiskconImg.png ├── form.html ├── navLogo.png ├── script.js └── style.css /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AISKCON-CONSTRUCTION.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.idea/AISKCON-CONSTRUCTION.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/README.md -------------------------------------------------------------------------------- /ServiceSection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/ServiceSection/index.html -------------------------------------------------------------------------------- /ServiceSection/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/ServiceSection/style.css -------------------------------------------------------------------------------- /aboutUs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/aboutUs/index.html -------------------------------------------------------------------------------- /aboutUs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/aboutUs/main.js -------------------------------------------------------------------------------- /aboutUs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/aboutUs/style.css -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/controller/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/backend/controller/email.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/backend/package.json -------------------------------------------------------------------------------- /contact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/contact/index.html -------------------------------------------------------------------------------- /contact/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/contact/style.css -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/contribution.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/css/style.css -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/docs/contribution.md -------------------------------------------------------------------------------- /img/bg/background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/background.webp -------------------------------------------------------------------------------- /img/bg/build-with-quality.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/build-with-quality.webp -------------------------------------------------------------------------------- /img/bg/construction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/construction.webp -------------------------------------------------------------------------------- /img/bg/constructionmanagement.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/constructionmanagement.webp -------------------------------------------------------------------------------- /img/bg/contact_us.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/contact_us.webp -------------------------------------------------------------------------------- /img/bg/customer_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/customer_support.png -------------------------------------------------------------------------------- /img/bg/design-and-build.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/design-and-build.webp -------------------------------------------------------------------------------- /img/bg/falts.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/falts.webp -------------------------------------------------------------------------------- /img/bg/generalconstruction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/generalconstruction.webp -------------------------------------------------------------------------------- /img/bg/group.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/group.webp -------------------------------------------------------------------------------- /img/bg/hireus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/hireus.webp -------------------------------------------------------------------------------- /img/bg/hospital.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/hospital.webp -------------------------------------------------------------------------------- /img/bg/hotel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/hotel.webp -------------------------------------------------------------------------------- /img/bg/houseconstruction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/houseconstruction.webp -------------------------------------------------------------------------------- /img/bg/interior.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/interior.webp -------------------------------------------------------------------------------- /img/bg/planning.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/planning.webp -------------------------------------------------------------------------------- /img/bg/preconstruction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/preconstruction.webp -------------------------------------------------------------------------------- /img/bg/rebuilding.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/rebuilding.webp -------------------------------------------------------------------------------- /img/bg/renovation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/renovation.webp -------------------------------------------------------------------------------- /img/bg/repair.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/repair.webp -------------------------------------------------------------------------------- /img/bg/repair2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/repair2.webp -------------------------------------------------------------------------------- /img/bg/retro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/retro.webp -------------------------------------------------------------------------------- /img/bg/roads.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/roads.webp -------------------------------------------------------------------------------- /img/bg/school.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/school.webp -------------------------------------------------------------------------------- /img/bg/servicenew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/servicenew.jpg -------------------------------------------------------------------------------- /img/bg/services.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/services.webp -------------------------------------------------------------------------------- /img/bg/services2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/services2.webp -------------------------------------------------------------------------------- /img/bg/slide1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/slide1.webp -------------------------------------------------------------------------------- /img/bg/slide2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/slide2.webp -------------------------------------------------------------------------------- /img/bg/slide3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/slide3.webp -------------------------------------------------------------------------------- /img/bg/slide4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/slide4.webp -------------------------------------------------------------------------------- /img/bg/slide5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/slide5.webp -------------------------------------------------------------------------------- /img/bg/special-projects.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/special-projects.webp -------------------------------------------------------------------------------- /img/bg/whychooseus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/bg/whychooseus.jpg -------------------------------------------------------------------------------- /img/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/favicon_io/favicon.ico -------------------------------------------------------------------------------- /img/logo/AISCKON LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/logo/AISCKON LOGO.png -------------------------------------------------------------------------------- /img/logo/aiskcon logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/logo/aiskcon logo.png -------------------------------------------------------------------------------- /img/logo/hero-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/logo/hero-logo.png -------------------------------------------------------------------------------- /img/logo/navLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/logo/navLogo.png -------------------------------------------------------------------------------- /img/vectors/appliance-repair.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/appliance-repair.webp -------------------------------------------------------------------------------- /img/vectors/bathroom-repair.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/bathroom-repair.webp -------------------------------------------------------------------------------- /img/vectors/build-with-quality.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/build-with-quality.webp -------------------------------------------------------------------------------- /img/vectors/collage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/collage.webp -------------------------------------------------------------------------------- /img/vectors/customer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/customer1.png -------------------------------------------------------------------------------- /img/vectors/furniture-repair.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/furniture-repair.webp -------------------------------------------------------------------------------- /img/vectors/hero.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/hero.gif -------------------------------------------------------------------------------- /img/vectors/home-repair.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/home-repair.webp -------------------------------------------------------------------------------- /img/vectors/kitchen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/kitchen.webp -------------------------------------------------------------------------------- /img/vectors/mission.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/mission.webp -------------------------------------------------------------------------------- /img/vectors/office.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/office.webp -------------------------------------------------------------------------------- /img/vectors/plumber_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/plumber_1.webp -------------------------------------------------------------------------------- /img/vectors/safety (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/safety (1).png -------------------------------------------------------------------------------- /img/vectors/team.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/team.webp -------------------------------------------------------------------------------- /img/vectors/user.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/user.webp -------------------------------------------------------------------------------- /img/vectors/vision(2).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/vision(2).webp -------------------------------------------------------------------------------- /img/vectors/vision.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/img/vectors/vision.webp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/index.html -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/js/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/package.json -------------------------------------------------------------------------------- /repair/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/repair/index.html -------------------------------------------------------------------------------- /repair/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/repair/style.css -------------------------------------------------------------------------------- /slotBooking/aiskconImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/slotBooking/aiskconImg.png -------------------------------------------------------------------------------- /slotBooking/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/slotBooking/form.html -------------------------------------------------------------------------------- /slotBooking/navLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/slotBooking/navLogo.png -------------------------------------------------------------------------------- /slotBooking/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/slotBooking/script.js -------------------------------------------------------------------------------- /slotBooking/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhiPatel10/AISKCON-CONSTRUCTION/HEAD/slotBooking/style.css --------------------------------------------------------------------------------