├── .gitignore ├── README.md ├── backend ├── package-lock.json ├── package.json └── server.js ├── eslint.config.js ├── index.html ├── package.json ├── public ├── 404.html └── vite.svg ├── src ├── App.css ├── App.jsx ├── Components │ ├── About.css │ ├── About.jsx │ ├── AboutUS.css │ ├── AboutUs.jsx │ ├── Careers.css │ ├── Careers.jsx │ ├── Contact.css │ ├── Contact.jsx │ ├── ErrorPage.css │ ├── ErrorPage.jsx │ ├── Footer.css │ ├── Footer.jsx │ ├── Gallery.css │ ├── Gallery.jsx │ ├── Internfeedback.css │ ├── Internfeedback.jsx │ ├── LandingPage.css │ ├── LandingPage.jsx │ ├── Navbar.css │ ├── Navbar.jsx │ ├── Project.css │ ├── Project.jsx │ ├── Service.css │ ├── Service.jsx │ ├── Servingrobot.css │ ├── Servingrobot.jsx │ ├── Signlang.css │ ├── Signlang.jsx │ ├── Team.css │ ├── Team.jsx │ ├── form.js │ └── server.js ├── assets │ └── react.svg ├── form.js ├── imges │ ├── Errorpage.png │ ├── ShenAI_Logo-removebg-preview.png │ ├── about customercare.png │ ├── about img.png │ ├── aboutus.png │ ├── call.png │ ├── deepak.png │ ├── dsprojects.png │ ├── feedback Bg image.png │ ├── gallery1.jpg │ ├── gallery10.jpg │ ├── gallery2.jpg │ ├── gallery3.jpg │ ├── gallery4.jpg │ ├── gallery5.jpg │ ├── gallery6.jpg │ ├── gallery7.jpg │ ├── gallery8.jpg │ ├── gallery9.jpg │ ├── hadoop.jpg │ ├── introvideo.mp4 │ ├── landingpagewallpaper.jpg │ ├── landingpagewallpaper1.jpg │ ├── learningoppr.png │ ├── mail.png │ ├── matlab.jpg │ ├── nandhini.jpg │ ├── ourgoal.png │ ├── ourvision.png │ ├── prawin.jpg │ ├── priya.jpg │ ├── ritik.png │ ├── robot.png │ ├── robot1.png │ ├── robot2.png │ ├── robot3.png │ ├── robot4.jpeg │ ├── robotvideo.mp4 │ ├── sandeep.png │ ├── securedfuture.png │ ├── senthamarai.png │ ├── signanime.png │ ├── signlang1.png │ ├── signlang2.png │ ├── signlang3.png │ ├── signlang4.png │ ├── signlangrecon.png │ ├── signlanguage.jpg │ ├── signtitleimg.png │ ├── signtitleimg1.png │ ├── sreenithin.png │ ├── sudhakar.png │ ├── tableau.jpg │ ├── teamwork.png │ ├── tensorflow.jpg │ ├── tharika.jpg │ ├── upgradesjills.png │ ├── wallpaper.png │ ├── whatwedo.png │ └── ythorch.jpg ├── index.css └── main.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/README.md -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/backend/server.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/public/404.html -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Components/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/About.css -------------------------------------------------------------------------------- /src/Components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/About.jsx -------------------------------------------------------------------------------- /src/Components/AboutUS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/AboutUS.css -------------------------------------------------------------------------------- /src/Components/AboutUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/AboutUs.jsx -------------------------------------------------------------------------------- /src/Components/Careers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Careers.css -------------------------------------------------------------------------------- /src/Components/Careers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Careers.jsx -------------------------------------------------------------------------------- /src/Components/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Contact.css -------------------------------------------------------------------------------- /src/Components/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Contact.jsx -------------------------------------------------------------------------------- /src/Components/ErrorPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/ErrorPage.css -------------------------------------------------------------------------------- /src/Components/ErrorPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/ErrorPage.jsx -------------------------------------------------------------------------------- /src/Components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Footer.css -------------------------------------------------------------------------------- /src/Components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Footer.jsx -------------------------------------------------------------------------------- /src/Components/Gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Gallery.css -------------------------------------------------------------------------------- /src/Components/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Gallery.jsx -------------------------------------------------------------------------------- /src/Components/Internfeedback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Internfeedback.css -------------------------------------------------------------------------------- /src/Components/Internfeedback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Internfeedback.jsx -------------------------------------------------------------------------------- /src/Components/LandingPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/LandingPage.css -------------------------------------------------------------------------------- /src/Components/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/LandingPage.jsx -------------------------------------------------------------------------------- /src/Components/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Navbar.css -------------------------------------------------------------------------------- /src/Components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Navbar.jsx -------------------------------------------------------------------------------- /src/Components/Project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Project.css -------------------------------------------------------------------------------- /src/Components/Project.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Project.jsx -------------------------------------------------------------------------------- /src/Components/Service.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Service.css -------------------------------------------------------------------------------- /src/Components/Service.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Service.jsx -------------------------------------------------------------------------------- /src/Components/Servingrobot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Servingrobot.css -------------------------------------------------------------------------------- /src/Components/Servingrobot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Servingrobot.jsx -------------------------------------------------------------------------------- /src/Components/Signlang.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Signlang.css -------------------------------------------------------------------------------- /src/Components/Signlang.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Signlang.jsx -------------------------------------------------------------------------------- /src/Components/Team.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Team.css -------------------------------------------------------------------------------- /src/Components/Team.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/Team.jsx -------------------------------------------------------------------------------- /src/Components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/form.js -------------------------------------------------------------------------------- /src/Components/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/Components/server.js -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/form.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/imges/Errorpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/Errorpage.png -------------------------------------------------------------------------------- /src/imges/ShenAI_Logo-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/ShenAI_Logo-removebg-preview.png -------------------------------------------------------------------------------- /src/imges/about customercare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/about customercare.png -------------------------------------------------------------------------------- /src/imges/about img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/about img.png -------------------------------------------------------------------------------- /src/imges/aboutus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/aboutus.png -------------------------------------------------------------------------------- /src/imges/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/call.png -------------------------------------------------------------------------------- /src/imges/deepak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/deepak.png -------------------------------------------------------------------------------- /src/imges/dsprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/dsprojects.png -------------------------------------------------------------------------------- /src/imges/feedback Bg image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/feedback Bg image.png -------------------------------------------------------------------------------- /src/imges/gallery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery1.jpg -------------------------------------------------------------------------------- /src/imges/gallery10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery10.jpg -------------------------------------------------------------------------------- /src/imges/gallery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery2.jpg -------------------------------------------------------------------------------- /src/imges/gallery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery3.jpg -------------------------------------------------------------------------------- /src/imges/gallery4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery4.jpg -------------------------------------------------------------------------------- /src/imges/gallery5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery5.jpg -------------------------------------------------------------------------------- /src/imges/gallery6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery6.jpg -------------------------------------------------------------------------------- /src/imges/gallery7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery7.jpg -------------------------------------------------------------------------------- /src/imges/gallery8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery8.jpg -------------------------------------------------------------------------------- /src/imges/gallery9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/gallery9.jpg -------------------------------------------------------------------------------- /src/imges/hadoop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/hadoop.jpg -------------------------------------------------------------------------------- /src/imges/introvideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/introvideo.mp4 -------------------------------------------------------------------------------- /src/imges/landingpagewallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/landingpagewallpaper.jpg -------------------------------------------------------------------------------- /src/imges/landingpagewallpaper1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/landingpagewallpaper1.jpg -------------------------------------------------------------------------------- /src/imges/learningoppr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/learningoppr.png -------------------------------------------------------------------------------- /src/imges/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/mail.png -------------------------------------------------------------------------------- /src/imges/matlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/matlab.jpg -------------------------------------------------------------------------------- /src/imges/nandhini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/nandhini.jpg -------------------------------------------------------------------------------- /src/imges/ourgoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/ourgoal.png -------------------------------------------------------------------------------- /src/imges/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/ourvision.png -------------------------------------------------------------------------------- /src/imges/prawin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/prawin.jpg -------------------------------------------------------------------------------- /src/imges/priya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/priya.jpg -------------------------------------------------------------------------------- /src/imges/ritik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/ritik.png -------------------------------------------------------------------------------- /src/imges/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/robot.png -------------------------------------------------------------------------------- /src/imges/robot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/robot1.png -------------------------------------------------------------------------------- /src/imges/robot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/robot2.png -------------------------------------------------------------------------------- /src/imges/robot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/robot3.png -------------------------------------------------------------------------------- /src/imges/robot4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/robot4.jpeg -------------------------------------------------------------------------------- /src/imges/robotvideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/robotvideo.mp4 -------------------------------------------------------------------------------- /src/imges/sandeep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/sandeep.png -------------------------------------------------------------------------------- /src/imges/securedfuture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/securedfuture.png -------------------------------------------------------------------------------- /src/imges/senthamarai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/senthamarai.png -------------------------------------------------------------------------------- /src/imges/signanime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signanime.png -------------------------------------------------------------------------------- /src/imges/signlang1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signlang1.png -------------------------------------------------------------------------------- /src/imges/signlang2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signlang2.png -------------------------------------------------------------------------------- /src/imges/signlang3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signlang3.png -------------------------------------------------------------------------------- /src/imges/signlang4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signlang4.png -------------------------------------------------------------------------------- /src/imges/signlangrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signlangrecon.png -------------------------------------------------------------------------------- /src/imges/signlanguage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signlanguage.jpg -------------------------------------------------------------------------------- /src/imges/signtitleimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signtitleimg.png -------------------------------------------------------------------------------- /src/imges/signtitleimg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/signtitleimg1.png -------------------------------------------------------------------------------- /src/imges/sreenithin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/sreenithin.png -------------------------------------------------------------------------------- /src/imges/sudhakar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/sudhakar.png -------------------------------------------------------------------------------- /src/imges/tableau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/tableau.jpg -------------------------------------------------------------------------------- /src/imges/teamwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/teamwork.png -------------------------------------------------------------------------------- /src/imges/tensorflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/tensorflow.jpg -------------------------------------------------------------------------------- /src/imges/tharika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/tharika.jpg -------------------------------------------------------------------------------- /src/imges/upgradesjills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/upgradesjills.png -------------------------------------------------------------------------------- /src/imges/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/wallpaper.png -------------------------------------------------------------------------------- /src/imges/whatwedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/whatwedo.png -------------------------------------------------------------------------------- /src/imges/ythorch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/imges/ythorch.jpg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepak-05dktopG/shenai_deploy/HEAD/vite.config.js --------------------------------------------------------------------------------