├── Css ├── day-4 │ ├── index.html │ ├── notes.md │ └── style.css ├── day-5 │ ├── bg-img.jpg │ ├── index.html │ ├── notes.md │ └── style.css ├── day-6 │ ├── index.html │ └── notes.md ├── day-7 │ ├── index.html │ └── notes.md └── tailwind-css │ ├── index.html │ ├── logo.svg │ └── notes.md ├── Html ├── day-1_prac │ ├── img.png │ ├── index.html │ ├── noted.md │ └── video.mp4 ├── day-2_prac │ ├── audio.mp3 │ ├── img_1.png │ ├── index.html │ ├── notes.md │ └── video_2.mp4 └── day-3_prac │ ├── index.html │ └── notes.md ├── Javascript ├── day-13 │ ├── index.html │ ├── main.js │ └── notes.md ├── day-14 │ ├── main.js │ └── notes.md ├── day-15 │ ├── main.js │ ├── notes.md │ └── string_method.js ├── day-16 │ ├── functions.js │ ├── loop.js │ └── notes.md ├── day-17 │ ├── formData.json │ ├── notes.md │ └── object.js ├── day-18 │ ├── index.html │ ├── main.js │ └── notes.md ├── day-19 │ ├── index.html │ └── main.js ├── day-20 │ ├── main.js │ └── notes.md ├── day-21 │ ├── index.js │ ├── main.js │ └── notes.md ├── day-22 │ ├── main.js │ ├── notes.md │ └── promise.js ├── day-23 │ ├── main.js │ └── notes.md └── day-24 │ ├── index.html │ ├── main.js │ └── notes.md ├── React-Js ├── my-app │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.jsx │ │ ├── components │ │ ├── Card.jsx │ │ ├── Greeting.jsx │ │ └── H2.jsx │ │ ├── index.js │ │ └── logo.svg ├── notes.md ├── portfolio-practice │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ └── main.jsx │ └── vite.config.js └── portfolio │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── index.html │ ├── jsconfig.app.json │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── Github.jsx │ ├── Layout.jsx │ ├── User.jsx │ ├── assets │ │ ├── dev.png │ │ └── react.svg │ ├── components │ │ ├── About.jsx │ │ ├── Contact.jsx │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Home.jsx │ │ ├── Loader.jsx │ │ ├── Navbar.jsx │ │ ├── One.jsx │ │ ├── Three.jsx │ │ ├── Two.jsx │ │ └── ui │ │ │ ├── badge.jsx │ │ │ ├── button.jsx │ │ │ ├── card.jsx │ │ │ ├── input.jsx │ │ │ └── textarea.jsx │ ├── context │ │ └── GlobalContext.jsx │ ├── global.css │ ├── hooks │ │ └── useFetch.jsx │ ├── index.css │ ├── lib │ │ └── utils.js │ ├── main.jsx │ └── store │ │ └── index.js │ ├── tailwind.config.js │ └── vite.config.js ├── assignment ├── index.html ├── logo.svg ├── logo2.svg ├── notes.md ├── style.css └── video.mp4 ├── project ├── lobe │ ├── index.html │ ├── logo.svg │ ├── style.css │ └── video.mp4 └── movie │ ├── assets │ ├── empty-section.svg │ ├── empty.svg │ ├── hero-new.png │ ├── hero-new2.svg │ └── hero.jpg │ ├── index.html │ └── main.js └── readme.md /Css/day-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-4/index.html -------------------------------------------------------------------------------- /Css/day-4/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-4/notes.md -------------------------------------------------------------------------------- /Css/day-4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-4/style.css -------------------------------------------------------------------------------- /Css/day-5/bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-5/bg-img.jpg -------------------------------------------------------------------------------- /Css/day-5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-5/index.html -------------------------------------------------------------------------------- /Css/day-5/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-5/notes.md -------------------------------------------------------------------------------- /Css/day-5/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-5/style.css -------------------------------------------------------------------------------- /Css/day-6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-6/index.html -------------------------------------------------------------------------------- /Css/day-6/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-6/notes.md -------------------------------------------------------------------------------- /Css/day-7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-7/index.html -------------------------------------------------------------------------------- /Css/day-7/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/day-7/notes.md -------------------------------------------------------------------------------- /Css/tailwind-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/tailwind-css/index.html -------------------------------------------------------------------------------- /Css/tailwind-css/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/tailwind-css/logo.svg -------------------------------------------------------------------------------- /Css/tailwind-css/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Css/tailwind-css/notes.md -------------------------------------------------------------------------------- /Html/day-1_prac/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-1_prac/img.png -------------------------------------------------------------------------------- /Html/day-1_prac/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-1_prac/index.html -------------------------------------------------------------------------------- /Html/day-1_prac/noted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-1_prac/noted.md -------------------------------------------------------------------------------- /Html/day-1_prac/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-1_prac/video.mp4 -------------------------------------------------------------------------------- /Html/day-2_prac/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-2_prac/audio.mp3 -------------------------------------------------------------------------------- /Html/day-2_prac/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-2_prac/img_1.png -------------------------------------------------------------------------------- /Html/day-2_prac/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-2_prac/index.html -------------------------------------------------------------------------------- /Html/day-2_prac/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-2_prac/notes.md -------------------------------------------------------------------------------- /Html/day-2_prac/video_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-2_prac/video_2.mp4 -------------------------------------------------------------------------------- /Html/day-3_prac/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-3_prac/index.html -------------------------------------------------------------------------------- /Html/day-3_prac/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Html/day-3_prac/notes.md -------------------------------------------------------------------------------- /Javascript/day-13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-13/index.html -------------------------------------------------------------------------------- /Javascript/day-13/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-13/main.js -------------------------------------------------------------------------------- /Javascript/day-13/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-13/notes.md -------------------------------------------------------------------------------- /Javascript/day-14/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-14/main.js -------------------------------------------------------------------------------- /Javascript/day-14/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-14/notes.md -------------------------------------------------------------------------------- /Javascript/day-15/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-15/main.js -------------------------------------------------------------------------------- /Javascript/day-15/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-15/notes.md -------------------------------------------------------------------------------- /Javascript/day-15/string_method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-15/string_method.js -------------------------------------------------------------------------------- /Javascript/day-16/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-16/functions.js -------------------------------------------------------------------------------- /Javascript/day-16/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-16/loop.js -------------------------------------------------------------------------------- /Javascript/day-16/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-16/notes.md -------------------------------------------------------------------------------- /Javascript/day-17/formData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-17/formData.json -------------------------------------------------------------------------------- /Javascript/day-17/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-17/notes.md -------------------------------------------------------------------------------- /Javascript/day-17/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-17/object.js -------------------------------------------------------------------------------- /Javascript/day-18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-18/index.html -------------------------------------------------------------------------------- /Javascript/day-18/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-18/main.js -------------------------------------------------------------------------------- /Javascript/day-18/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-18/notes.md -------------------------------------------------------------------------------- /Javascript/day-19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-19/index.html -------------------------------------------------------------------------------- /Javascript/day-19/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-19/main.js -------------------------------------------------------------------------------- /Javascript/day-20/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-20/main.js -------------------------------------------------------------------------------- /Javascript/day-20/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-20/notes.md -------------------------------------------------------------------------------- /Javascript/day-21/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-21/index.js -------------------------------------------------------------------------------- /Javascript/day-21/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-21/main.js -------------------------------------------------------------------------------- /Javascript/day-21/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-21/notes.md -------------------------------------------------------------------------------- /Javascript/day-22/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-22/main.js -------------------------------------------------------------------------------- /Javascript/day-22/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-22/notes.md -------------------------------------------------------------------------------- /Javascript/day-22/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-22/promise.js -------------------------------------------------------------------------------- /Javascript/day-23/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-23/main.js -------------------------------------------------------------------------------- /Javascript/day-23/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-23/notes.md -------------------------------------------------------------------------------- /Javascript/day-24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-24/index.html -------------------------------------------------------------------------------- /Javascript/day-24/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-24/main.js -------------------------------------------------------------------------------- /Javascript/day-24/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/Javascript/day-24/notes.md -------------------------------------------------------------------------------- /React-Js/my-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/.gitignore -------------------------------------------------------------------------------- /React-Js/my-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/README.md -------------------------------------------------------------------------------- /React-Js/my-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/package-lock.json -------------------------------------------------------------------------------- /React-Js/my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/package.json -------------------------------------------------------------------------------- /React-Js/my-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/public/favicon.ico -------------------------------------------------------------------------------- /React-Js/my-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/public/index.html -------------------------------------------------------------------------------- /React-Js/my-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/public/logo192.png -------------------------------------------------------------------------------- /React-Js/my-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/public/logo512.png -------------------------------------------------------------------------------- /React-Js/my-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/public/manifest.json -------------------------------------------------------------------------------- /React-Js/my-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/public/robots.txt -------------------------------------------------------------------------------- /React-Js/my-app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/src/App.jsx -------------------------------------------------------------------------------- /React-Js/my-app/src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/src/components/Card.jsx -------------------------------------------------------------------------------- /React-Js/my-app/src/components/Greeting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/src/components/Greeting.jsx -------------------------------------------------------------------------------- /React-Js/my-app/src/components/H2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/src/components/H2.jsx -------------------------------------------------------------------------------- /React-Js/my-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/src/index.js -------------------------------------------------------------------------------- /React-Js/my-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/my-app/src/logo.svg -------------------------------------------------------------------------------- /React-Js/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/notes.md -------------------------------------------------------------------------------- /React-Js/portfolio-practice/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/.eslintrc.cjs -------------------------------------------------------------------------------- /React-Js/portfolio-practice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/.gitignore -------------------------------------------------------------------------------- /React-Js/portfolio-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/README.md -------------------------------------------------------------------------------- /React-Js/portfolio-practice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/index.html -------------------------------------------------------------------------------- /React-Js/portfolio-practice/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/package-lock.json -------------------------------------------------------------------------------- /React-Js/portfolio-practice/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/package.json -------------------------------------------------------------------------------- /React-Js/portfolio-practice/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/public/vite.svg -------------------------------------------------------------------------------- /React-Js/portfolio-practice/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/src/App.css -------------------------------------------------------------------------------- /React-Js/portfolio-practice/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/src/App.jsx -------------------------------------------------------------------------------- /React-Js/portfolio-practice/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/src/assets/react.svg -------------------------------------------------------------------------------- /React-Js/portfolio-practice/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/src/index.css -------------------------------------------------------------------------------- /React-Js/portfolio-practice/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/src/main.jsx -------------------------------------------------------------------------------- /React-Js/portfolio-practice/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio-practice/vite.config.js -------------------------------------------------------------------------------- /React-Js/portfolio/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/.eslintrc.cjs -------------------------------------------------------------------------------- /React-Js/portfolio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/.gitignore -------------------------------------------------------------------------------- /React-Js/portfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/README.md -------------------------------------------------------------------------------- /React-Js/portfolio/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/components.json -------------------------------------------------------------------------------- /React-Js/portfolio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/index.html -------------------------------------------------------------------------------- /React-Js/portfolio/jsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/jsconfig.app.json -------------------------------------------------------------------------------- /React-Js/portfolio/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/jsconfig.json -------------------------------------------------------------------------------- /React-Js/portfolio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/package-lock.json -------------------------------------------------------------------------------- /React-Js/portfolio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/package.json -------------------------------------------------------------------------------- /React-Js/portfolio/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/postcss.config.js -------------------------------------------------------------------------------- /React-Js/portfolio/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/public/vite.svg -------------------------------------------------------------------------------- /React-Js/portfolio/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/App.css -------------------------------------------------------------------------------- /React-Js/portfolio/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/App.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/Github.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/Github.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/Layout.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/User.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/User.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/assets/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/assets/dev.png -------------------------------------------------------------------------------- /React-Js/portfolio/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/assets/react.svg -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/About.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Contact.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Footer.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Header.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Home.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Loader.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Navbar.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/One.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/One.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Three.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Three.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/Two.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/Two.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/ui/badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/ui/badge.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/ui/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/ui/button.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/ui/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/ui/card.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/ui/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/ui/input.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/components/ui/textarea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/components/ui/textarea.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/context/GlobalContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/context/GlobalContext.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/global.css -------------------------------------------------------------------------------- /React-Js/portfolio/src/hooks/useFetch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/hooks/useFetch.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/index.css -------------------------------------------------------------------------------- /React-Js/portfolio/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/lib/utils.js -------------------------------------------------------------------------------- /React-Js/portfolio/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/main.jsx -------------------------------------------------------------------------------- /React-Js/portfolio/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/src/store/index.js -------------------------------------------------------------------------------- /React-Js/portfolio/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/tailwind.config.js -------------------------------------------------------------------------------- /React-Js/portfolio/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/React-Js/portfolio/vite.config.js -------------------------------------------------------------------------------- /assignment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/assignment/index.html -------------------------------------------------------------------------------- /assignment/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/assignment/logo.svg -------------------------------------------------------------------------------- /assignment/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/assignment/logo2.svg -------------------------------------------------------------------------------- /assignment/notes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assignment/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/assignment/style.css -------------------------------------------------------------------------------- /assignment/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/assignment/video.mp4 -------------------------------------------------------------------------------- /project/lobe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/lobe/index.html -------------------------------------------------------------------------------- /project/lobe/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/lobe/logo.svg -------------------------------------------------------------------------------- /project/lobe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/lobe/style.css -------------------------------------------------------------------------------- /project/lobe/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/lobe/video.mp4 -------------------------------------------------------------------------------- /project/movie/assets/empty-section.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/assets/empty-section.svg -------------------------------------------------------------------------------- /project/movie/assets/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/assets/empty.svg -------------------------------------------------------------------------------- /project/movie/assets/hero-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/assets/hero-new.png -------------------------------------------------------------------------------- /project/movie/assets/hero-new2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/assets/hero-new2.svg -------------------------------------------------------------------------------- /project/movie/assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/assets/hero.jpg -------------------------------------------------------------------------------- /project/movie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/index.html -------------------------------------------------------------------------------- /project/movie/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/project/movie/main.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aestheticsuraj234/elite-frontend-development/HEAD/readme.md --------------------------------------------------------------------------------