├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── About ├── About.css └── About.js ├── App.css ├── App.js ├── App.test.js ├── Assets ├── 4.png ├── Red_asterisk.svg ├── about.jpg ├── another.svg ├── arrow down.svg ├── arrow.svg ├── asterik.svg ├── asterik2.svg ├── curve.svg ├── flower.svg ├── flower2.svg ├── font.css ├── image.jpeg ├── menu.svg ├── noise.gif ├── project1.jpg ├── project2.jpg ├── project3.jpg ├── project4.jpg ├── project5.jpg ├── project6.jpg ├── project7.jpg ├── project8.jpg └── project9.jpg ├── Contact ├── Contact.css └── Contact.js ├── Footer ├── Footer.css └── Footer.js ├── GetInTouch ├── GetInTouch.css └── GetInTouch.js ├── Header ├── Header.css └── Header.js ├── Home ├── Home.css └── Home.js ├── Projects ├── Projects.css └── Projects.js ├── ScrollToTop └── ScrollToTop.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/About/About.css -------------------------------------------------------------------------------- /src/About/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/About/About.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/4.png -------------------------------------------------------------------------------- /src/Assets/Red_asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/Red_asterisk.svg -------------------------------------------------------------------------------- /src/Assets/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/about.jpg -------------------------------------------------------------------------------- /src/Assets/another.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/another.svg -------------------------------------------------------------------------------- /src/Assets/arrow down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/arrow down.svg -------------------------------------------------------------------------------- /src/Assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/arrow.svg -------------------------------------------------------------------------------- /src/Assets/asterik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/asterik.svg -------------------------------------------------------------------------------- /src/Assets/asterik2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/asterik2.svg -------------------------------------------------------------------------------- /src/Assets/curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/curve.svg -------------------------------------------------------------------------------- /src/Assets/flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/flower.svg -------------------------------------------------------------------------------- /src/Assets/flower2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/flower2.svg -------------------------------------------------------------------------------- /src/Assets/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/font.css -------------------------------------------------------------------------------- /src/Assets/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/image.jpeg -------------------------------------------------------------------------------- /src/Assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/menu.svg -------------------------------------------------------------------------------- /src/Assets/noise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/noise.gif -------------------------------------------------------------------------------- /src/Assets/project1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project1.jpg -------------------------------------------------------------------------------- /src/Assets/project2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project2.jpg -------------------------------------------------------------------------------- /src/Assets/project3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project3.jpg -------------------------------------------------------------------------------- /src/Assets/project4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project4.jpg -------------------------------------------------------------------------------- /src/Assets/project5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project5.jpg -------------------------------------------------------------------------------- /src/Assets/project6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project6.jpg -------------------------------------------------------------------------------- /src/Assets/project7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project7.jpg -------------------------------------------------------------------------------- /src/Assets/project8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project8.jpg -------------------------------------------------------------------------------- /src/Assets/project9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Assets/project9.jpg -------------------------------------------------------------------------------- /src/Contact/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Contact/Contact.css -------------------------------------------------------------------------------- /src/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Contact/Contact.js -------------------------------------------------------------------------------- /src/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Footer/Footer.css -------------------------------------------------------------------------------- /src/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Footer/Footer.js -------------------------------------------------------------------------------- /src/GetInTouch/GetInTouch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/GetInTouch/GetInTouch.css -------------------------------------------------------------------------------- /src/GetInTouch/GetInTouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/GetInTouch/GetInTouch.js -------------------------------------------------------------------------------- /src/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Header/Header.css -------------------------------------------------------------------------------- /src/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Header/Header.js -------------------------------------------------------------------------------- /src/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Home/Home.css -------------------------------------------------------------------------------- /src/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Home/Home.js -------------------------------------------------------------------------------- /src/Projects/Projects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Projects/Projects.css -------------------------------------------------------------------------------- /src/Projects/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/Projects/Projects.js -------------------------------------------------------------------------------- /src/ScrollToTop/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/ScrollToTop/ScrollToTop.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taimoorshahzada/Responsive-Portfolio-Website-with-Preloader-and-Custom-Cursor-using-React.js-and-GSAP/HEAD/src/setupTests.js --------------------------------------------------------------------------------