├── PORTFOLIO SITE ├── css │ └── styles.css ├── favicon.ico ├── images │ ├── aman.jpg │ ├── cloud.png │ └── mountain.png └── index.html ├── PORTFOLIO ├── README.md ├── VedantKhairnar.github.io │ ├── .gitignore │ ├── 404.html │ ├── CNAME │ ├── README.md │ ├── css │ │ ├── base.css │ │ ├── main.css │ │ └── style.css │ ├── google360133db32c629c4.html │ ├── images │ │ ├── 404.PNG │ │ ├── blogs │ │ │ ├── 404.PNG │ │ │ ├── TwitterSentimentAnalyser.PNG │ │ │ ├── coronavirus.jpg │ │ │ ├── traffic.jpg │ │ │ └── tsa.png │ │ ├── icons │ │ │ ├── icon-arrow-down.svg │ │ │ ├── sourcerer.png │ │ │ ├── sourcerer2.png │ │ │ └── sourcerer3.png │ │ ├── logoCollage.png │ │ ├── portfolio │ │ │ ├── 404.PNG │ │ │ ├── Diferencia de imagen.png │ │ │ ├── FaceDetection.png │ │ │ ├── InvisibilityCloak3.png │ │ │ ├── InvisibiltyCloak.png │ │ │ ├── MovieRecommenderSystem2.png │ │ │ ├── TheMazeRunner.PNG │ │ │ ├── Translator.png │ │ │ ├── TwitterSentimentAnalyser.PNG │ │ │ ├── adaptiveTrafficControlSystem.png │ │ │ ├── chestXRay.png │ │ │ ├── facerecogattendance.png │ │ │ ├── gesture control.jpg │ │ │ ├── kubernetes.png │ │ │ ├── movieMonk.PNG │ │ │ ├── newsify.jpg │ │ │ ├── pdf2textlib.png │ │ │ ├── reDirectoE.png │ │ │ ├── skullSmokyFuture.png │ │ │ ├── smokyFuture.png │ │ │ ├── smokyFutureLandscape.png │ │ │ ├── trafficControlSystem.PNG │ │ │ ├── tsa.png │ │ │ ├── wingardiumLeviosa.png │ │ │ ├── wingardium_leviosa.jpg │ │ │ └── winlevi.webp │ │ ├── readme │ │ │ ├── 1.gif │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ ├── service-logos │ │ │ ├── CB.PNG │ │ │ ├── CNLOGO.png │ │ │ ├── CodingNinjasSquare.png │ │ │ ├── DSC.png │ │ │ ├── Devscript.png │ │ │ ├── IITHome.png │ │ │ ├── JPMorgan_Chase-Logo.wineW.png │ │ │ ├── MSP_Shield_logo_RGB_Blue.png │ │ │ ├── Tessellate-Loading.gif │ │ │ ├── code breakerspngwhite.png │ │ │ ├── codingBlocks.png │ │ │ ├── internshala.png │ │ │ ├── jpm.png │ │ │ ├── krish.PNG │ │ │ ├── krishSquare.png │ │ │ ├── krishSquareW.png │ │ │ ├── logohorizontallight-3.png │ │ │ ├── qpower.jpg │ │ │ └── tesseract-logo-blue.png │ │ ├── sharing.png │ │ └── skill-logos │ │ │ ├── aftereffects.png │ │ │ ├── android.png │ │ │ ├── azure.png │ │ │ ├── azureBase.png │ │ │ ├── blender.png │ │ │ ├── bootstrap4.png │ │ │ ├── c++.png │ │ │ ├── c.png │ │ │ ├── css.png │ │ │ ├── discord-logo-png-7622.png │ │ │ ├── firebase.png │ │ │ ├── flask.png │ │ │ ├── github.png │ │ │ ├── gitkraken-logo-dark-sq.png │ │ │ ├── heroku.png │ │ │ ├── html.png │ │ │ ├── htmlcssjs.png │ │ │ ├── java.png │ │ │ ├── js.png │ │ │ ├── kali.png │ │ │ ├── logoCollage.png │ │ │ ├── macbuntu.jpg │ │ │ ├── photoshop.png │ │ │ ├── py.png │ │ │ ├── react.png │ │ │ ├── react2.png │ │ │ ├── sketchup.png │ │ │ ├── tensorflow.png │ │ │ ├── tesseract.png │ │ │ ├── unity.png │ │ │ ├── vision.png │ │ │ ├── vuforia.png │ │ │ └── vuforiaLogo.png │ ├── index.html │ ├── js │ │ ├── main.js │ │ └── script.js │ ├── logo.jpg │ └── logoCollage.png └── din.netlify.app │ ├── client │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── Cards │ │ │ ├── card-1.jpg │ │ │ ├── card-2.jpg │ │ │ └── card-3.jpg │ │ ├── SVG │ │ │ ├── bg.svg │ │ │ ├── left.svg │ │ │ └── right.svg │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── site.webmanifest │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Components │ │ ├── AboutContent │ │ │ ├── AboutContent.js │ │ │ └── AboutContent.module.css │ │ ├── Background │ │ │ ├── Backgound.js │ │ │ └── Background.module.css │ │ ├── Footer │ │ │ ├── Footer.js │ │ │ └── Footer.module.css │ │ ├── Form │ │ │ ├── Form.js │ │ │ └── Form.module.css │ │ ├── Heading │ │ │ ├── Heading.js │ │ │ └── Heading.module.css │ │ ├── Home │ │ │ ├── HeadingPrimary │ │ │ │ ├── HeadingPrimary.js │ │ │ │ ├── HeadingPrimary.module.css │ │ │ │ ├── HeadingPrimaryMain │ │ │ │ │ ├── HeadinPrimaryMain.js │ │ │ │ │ └── HeadingPrimaryMain.module.css │ │ │ │ ├── ScrollText │ │ │ │ │ ├── ScrollText.js │ │ │ │ │ └── ScrollText.module.css │ │ │ │ └── SocialIcons │ │ │ │ │ ├── SocialIcon.js │ │ │ │ │ └── SocialIcon.module.css │ │ │ ├── Home.js │ │ │ ├── Home.module.css │ │ │ └── NavBar │ │ │ │ ├── NavBar.js │ │ │ │ └── NavBar.module.css │ │ └── UI │ │ │ ├── BackDrop │ │ │ ├── BackDrop.js │ │ │ └── BackDrop.module.css │ │ │ ├── Cards │ │ │ ├── Cards.js │ │ │ └── Cards.module.css │ │ │ ├── Modal │ │ │ ├── Modal.js │ │ │ └── Modal.module.css │ │ │ └── ScrollIndicator │ │ │ ├── ScrollIndicator.js │ │ │ └── ScrollIndicator.module.css │ │ ├── Container │ │ ├── About │ │ │ ├── About.js │ │ │ └── About.module.css │ │ ├── Contact │ │ │ ├── Contact.js │ │ │ └── Contact.module.css │ │ ├── PageBuilder.js │ │ └── Work │ │ │ ├── Work.js │ │ │ └── Work.module.css │ │ ├── assets │ │ └── myself.jpeg │ │ ├── axios-base.js │ │ ├── axios-email.js │ │ ├── hoc │ │ ├── Auxilary │ │ │ └── Auxilary.js │ │ ├── Layouts │ │ │ └── Layouts.js │ │ └── withErrorHandler │ │ │ └── withErrorHandler.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── serviceWorker.js │ │ └── setupTests.js │ └── server │ ├── .firebaserc │ ├── .gitignore │ ├── firebase.json │ └── functions │ ├── .eslintrc.json │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ └── package.json ├── Portfolio ├── images │ ├── nr.jpeg │ ├── p1.jpeg │ ├── p2.jpeg │ ├── p3.jpg │ ├── p4.jpg │ ├── p5.jpg │ ├── p6.jpg │ └── pic.jpeg ├── particle.js ├── port.css ├── port.html └── project.html └── README.md /PORTFOLIO SITE/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO SITE/css/styles.css -------------------------------------------------------------------------------- /PORTFOLIO SITE/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO SITE/favicon.ico -------------------------------------------------------------------------------- /PORTFOLIO SITE/images/aman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO SITE/images/aman.jpg -------------------------------------------------------------------------------- /PORTFOLIO SITE/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO SITE/images/cloud.png -------------------------------------------------------------------------------- /PORTFOLIO SITE/images/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO SITE/images/mountain.png -------------------------------------------------------------------------------- /PORTFOLIO SITE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO SITE/index.html -------------------------------------------------------------------------------- /PORTFOLIO/README.md: -------------------------------------------------------------------------------- 1 | ## Add Your code as in VedantKhairnar.github.io Folder 2 | 3 | -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/404.html -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/CNAME: -------------------------------------------------------------------------------- 1 | vedantkhairnar.ml -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/README.md -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/css/base.css -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/css/main.css -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/css/style.css -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/google360133db32c629c4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/google360133db32c629c4.html -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/404.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/404.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/blogs/404.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/blogs/404.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/blogs/TwitterSentimentAnalyser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/blogs/TwitterSentimentAnalyser.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/blogs/coronavirus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/blogs/coronavirus.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/blogs/traffic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/blogs/traffic.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/blogs/tsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/blogs/tsa.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/icons/icon-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/icons/icon-arrow-down.svg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/icons/sourcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/icons/sourcerer.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/icons/sourcerer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/icons/sourcerer2.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/icons/sourcerer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/icons/sourcerer3.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/logoCollage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/logoCollage.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/404.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/404.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/Diferencia de imagen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/Diferencia de imagen.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/FaceDetection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/FaceDetection.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/InvisibilityCloak3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/InvisibilityCloak3.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/InvisibiltyCloak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/InvisibiltyCloak.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/MovieRecommenderSystem2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/MovieRecommenderSystem2.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/TheMazeRunner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/TheMazeRunner.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/Translator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/Translator.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/TwitterSentimentAnalyser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/TwitterSentimentAnalyser.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/adaptiveTrafficControlSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/adaptiveTrafficControlSystem.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/chestXRay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/chestXRay.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/facerecogattendance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/facerecogattendance.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/gesture control.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/gesture control.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/kubernetes.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/movieMonk.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/movieMonk.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/newsify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/newsify.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/pdf2textlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/pdf2textlib.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/reDirectoE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/reDirectoE.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/skullSmokyFuture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/skullSmokyFuture.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/smokyFuture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/smokyFuture.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/smokyFutureLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/smokyFutureLandscape.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/trafficControlSystem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/trafficControlSystem.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/tsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/tsa.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/wingardiumLeviosa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/wingardiumLeviosa.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/wingardium_leviosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/wingardium_leviosa.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/portfolio/winlevi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/portfolio/winlevi.webp -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/1.gif -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/1.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/2.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/3.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/4.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/5.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/6.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/readme/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/readme/7.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/CB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/CB.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/CNLOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/CNLOGO.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/CodingNinjasSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/CodingNinjasSquare.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/DSC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/DSC.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/Devscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/Devscript.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/IITHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/IITHome.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/JPMorgan_Chase-Logo.wineW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/JPMorgan_Chase-Logo.wineW.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/MSP_Shield_logo_RGB_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/MSP_Shield_logo_RGB_Blue.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/Tessellate-Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/Tessellate-Loading.gif -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/code breakerspngwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/code breakerspngwhite.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/codingBlocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/codingBlocks.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/internshala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/internshala.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/jpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/jpm.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/krish.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/krish.PNG -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/krishSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/krishSquare.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/krishSquareW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/krishSquareW.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/logohorizontallight-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/logohorizontallight-3.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/qpower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/qpower.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/service-logos/tesseract-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/service-logos/tesseract-logo-blue.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/sharing.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/aftereffects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/aftereffects.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/android.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/azure.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/azureBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/azureBase.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/blender.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/bootstrap4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/bootstrap4.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/c++.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/c.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/css.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/discord-logo-png-7622.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/discord-logo-png-7622.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/firebase.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/flask.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/github.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/gitkraken-logo-dark-sq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/gitkraken-logo-dark-sq.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/heroku.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/html.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/htmlcssjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/htmlcssjs.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/java.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/js.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/kali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/kali.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/logoCollage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/logoCollage.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/macbuntu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/macbuntu.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/photoshop.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/py.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/react.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/react2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/react2.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/sketchup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/sketchup.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/tensorflow.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/tesseract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/tesseract.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/unity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/unity.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/vision.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/vuforia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/vuforia.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/vuforiaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/images/skill-logos/vuforiaLogo.png -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/index.html -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/js/main.js -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/js/script.js -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/logo.jpg -------------------------------------------------------------------------------- /PORTFOLIO/VedantKhairnar.github.io/logoCollage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/VedantKhairnar.github.io/logoCollage.png -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/README.md -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/package-lock.json -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/package.json -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/Cards/card-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/Cards/card-1.jpg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/Cards/card-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/Cards/card-2.jpg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/Cards/card-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/Cards/card-3.jpg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/SVG/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/SVG/bg.svg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/SVG/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/SVG/left.svg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/SVG/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/SVG/right.svg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/apple-touch-icon.png -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/favicon-16x16.png -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/favicon-32x32.png -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/favicon.ico -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/index.html -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/manifest.json -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/robots.txt -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/public/site.webmanifest -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/App.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/App.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/App.test.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/AboutContent/AboutContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/AboutContent/AboutContent.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/AboutContent/AboutContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/AboutContent/AboutContent.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Background/Backgound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Background/Backgound.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Background/Background.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Background/Background.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Footer/Footer.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Footer/Footer.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Form/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Form/Form.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Form/Form.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Form/Form.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Heading/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Heading/Heading.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Heading/Heading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Heading/Heading.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimary.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimary.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimary.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimaryMain/HeadinPrimaryMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimaryMain/HeadinPrimaryMain.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimaryMain/HeadingPrimaryMain.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/HeadingPrimaryMain/HeadingPrimaryMain.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/ScrollText/ScrollText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/ScrollText/ScrollText.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/ScrollText/ScrollText.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/ScrollText/ScrollText.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/SocialIcons/SocialIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/SocialIcons/SocialIcon.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/SocialIcons/SocialIcon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/HeadingPrimary/SocialIcons/SocialIcon.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/Home.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/Home.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/NavBar/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/NavBar/NavBar.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/Home/NavBar/NavBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/Home/NavBar/NavBar.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/BackDrop/BackDrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/BackDrop/BackDrop.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/BackDrop/BackDrop.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/BackDrop/BackDrop.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/Cards/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/Cards/Cards.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/Cards/Cards.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/Cards/Cards.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/Modal/Modal.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/Modal/Modal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/Modal/Modal.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/ScrollIndicator/ScrollIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/ScrollIndicator/ScrollIndicator.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Components/UI/ScrollIndicator/ScrollIndicator.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Components/UI/ScrollIndicator/ScrollIndicator.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/About/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/About/About.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/About/About.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/About/About.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/Contact/Contact.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/Contact/Contact.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/Contact/Contact.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/PageBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/PageBuilder.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/Work/Work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/Work/Work.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/Container/Work/Work.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/Container/Work/Work.module.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/assets/myself.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/assets/myself.jpeg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/axios-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/axios-base.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/axios-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/axios-email.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/hoc/Auxilary/Auxilary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/hoc/Auxilary/Auxilary.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/hoc/Layouts/Layouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/hoc/Layouts/Layouts.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/hoc/withErrorHandler/withErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/hoc/withErrorHandler/withErrorHandler.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/index.css -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/index.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/logo.svg -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/serviceWorker.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/client/src/setupTests.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/.firebaserc -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/.gitignore -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/firebase.json -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/functions/.eslintrc.json -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/functions/index.js -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/functions/package-lock.json -------------------------------------------------------------------------------- /PORTFOLIO/din.netlify.app/server/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/PORTFOLIO/din.netlify.app/server/functions/package.json -------------------------------------------------------------------------------- /Portfolio/images/nr.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/nr.jpeg -------------------------------------------------------------------------------- /Portfolio/images/p1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/p1.jpeg -------------------------------------------------------------------------------- /Portfolio/images/p2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/p2.jpeg -------------------------------------------------------------------------------- /Portfolio/images/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/p3.jpg -------------------------------------------------------------------------------- /Portfolio/images/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/p4.jpg -------------------------------------------------------------------------------- /Portfolio/images/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/p5.jpg -------------------------------------------------------------------------------- /Portfolio/images/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/p6.jpg -------------------------------------------------------------------------------- /Portfolio/images/pic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/images/pic.jpeg -------------------------------------------------------------------------------- /Portfolio/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/particle.js -------------------------------------------------------------------------------- /Portfolio/port.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/port.css -------------------------------------------------------------------------------- /Portfolio/port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/port.html -------------------------------------------------------------------------------- /Portfolio/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/Portfolio/project.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScript/Event-Build-Personal-Portfolio/HEAD/README.md --------------------------------------------------------------------------------