├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc.json ├── README.md ├── index.html ├── package.json ├── project screenshots ├── 1.png └── 2.png ├── public ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest └── icons │ └── symbol-defs.svg ├── src ├── App.tsx ├── assets │ ├── fonts │ │ └── LaBelleAurore │ │ │ ├── LaBelleAurore.woff │ │ │ ├── example.html │ │ │ └── style.css │ ├── icons │ │ └── symbol-defs.svg │ └── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── logo-s.png │ │ ├── logo.png │ │ ├── logo1.png │ │ ├── project1.png │ │ ├── project2.png │ │ └── project3.jpg ├── components │ ├── About │ │ ├── About.tsx │ │ └── about.scss │ ├── AnimatedLetters │ │ ├── AnimatedLetters.tsx │ │ └── animatedLetters.scss │ ├── AnimatedLettersFast │ │ ├── AnimatedLettersFast.tsx │ │ └── animatedLettersFast.scss │ ├── Introduction │ │ ├── Introduction.tsx │ │ └── introduction.scss │ ├── Navbar │ │ ├── Navbar.tsx │ │ └── navbar.scss │ ├── OtherProjects │ │ ├── OtherProjects.tsx │ │ └── otherProjects.scss │ ├── Projects │ │ ├── Projects.tsx │ │ └── projects.scss │ └── Touch │ │ ├── Touch.tsx │ │ └── touch.scss ├── layouts │ ├── Center │ │ ├── Center.tsx │ │ └── center.scss │ ├── LeftSidebar │ │ ├── LeftSidebar.tsx │ │ └── leftSidebar.scss │ └── RightSidebar │ │ ├── RightSidebar.tsx │ │ └── rightSidebar.scss ├── main.tsx ├── pages │ ├── Contact │ │ ├── Contact.tsx │ │ └── contact.scss │ └── Home │ │ ├── Home.tsx │ │ └── home.scss ├── scss │ ├── _mixins.scss │ ├── _variables.scss │ └── global.scss └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/package.json -------------------------------------------------------------------------------- /project screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/project screenshots/1.png -------------------------------------------------------------------------------- /project screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/project screenshots/2.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/icons/symbol-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/public/icons/symbol-defs.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/fonts/LaBelleAurore/LaBelleAurore.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/fonts/LaBelleAurore/LaBelleAurore.woff -------------------------------------------------------------------------------- /src/assets/fonts/LaBelleAurore/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/fonts/LaBelleAurore/example.html -------------------------------------------------------------------------------- /src/assets/fonts/LaBelleAurore/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/fonts/LaBelleAurore/style.css -------------------------------------------------------------------------------- /src/assets/icons/symbol-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/icons/symbol-defs.svg -------------------------------------------------------------------------------- /src/assets/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/1.png -------------------------------------------------------------------------------- /src/assets/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/2.png -------------------------------------------------------------------------------- /src/assets/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/3.png -------------------------------------------------------------------------------- /src/assets/images/logo-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/logo-s.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/logo1.png -------------------------------------------------------------------------------- /src/assets/images/project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/project1.png -------------------------------------------------------------------------------- /src/assets/images/project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/project2.png -------------------------------------------------------------------------------- /src/assets/images/project3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/assets/images/project3.jpg -------------------------------------------------------------------------------- /src/components/About/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/About/About.tsx -------------------------------------------------------------------------------- /src/components/About/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/About/about.scss -------------------------------------------------------------------------------- /src/components/AnimatedLetters/AnimatedLetters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/AnimatedLetters/AnimatedLetters.tsx -------------------------------------------------------------------------------- /src/components/AnimatedLetters/animatedLetters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/AnimatedLetters/animatedLetters.scss -------------------------------------------------------------------------------- /src/components/AnimatedLettersFast/AnimatedLettersFast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/AnimatedLettersFast/AnimatedLettersFast.tsx -------------------------------------------------------------------------------- /src/components/AnimatedLettersFast/animatedLettersFast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/AnimatedLettersFast/animatedLettersFast.scss -------------------------------------------------------------------------------- /src/components/Introduction/Introduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Introduction/Introduction.tsx -------------------------------------------------------------------------------- /src/components/Introduction/introduction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Introduction/introduction.scss -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/components/Navbar/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Navbar/navbar.scss -------------------------------------------------------------------------------- /src/components/OtherProjects/OtherProjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/OtherProjects/OtherProjects.tsx -------------------------------------------------------------------------------- /src/components/OtherProjects/otherProjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/OtherProjects/otherProjects.scss -------------------------------------------------------------------------------- /src/components/Projects/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Projects/Projects.tsx -------------------------------------------------------------------------------- /src/components/Projects/projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Projects/projects.scss -------------------------------------------------------------------------------- /src/components/Touch/Touch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Touch/Touch.tsx -------------------------------------------------------------------------------- /src/components/Touch/touch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/components/Touch/touch.scss -------------------------------------------------------------------------------- /src/layouts/Center/Center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/layouts/Center/Center.tsx -------------------------------------------------------------------------------- /src/layouts/Center/center.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/layouts/Center/center.scss -------------------------------------------------------------------------------- /src/layouts/LeftSidebar/LeftSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/layouts/LeftSidebar/LeftSidebar.tsx -------------------------------------------------------------------------------- /src/layouts/LeftSidebar/leftSidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/layouts/LeftSidebar/leftSidebar.scss -------------------------------------------------------------------------------- /src/layouts/RightSidebar/RightSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/layouts/RightSidebar/RightSidebar.tsx -------------------------------------------------------------------------------- /src/layouts/RightSidebar/rightSidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/layouts/RightSidebar/rightSidebar.scss -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Contact/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/pages/Contact/Contact.tsx -------------------------------------------------------------------------------- /src/pages/Contact/contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/pages/Contact/contact.scss -------------------------------------------------------------------------------- /src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /src/pages/Home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/pages/Home/home.scss -------------------------------------------------------------------------------- /src/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/scss/_mixins.scss -------------------------------------------------------------------------------- /src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/scss/_variables.scss -------------------------------------------------------------------------------- /src/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/src/scss/global.scss -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashfalke77/portfolio/HEAD/vite.config.ts --------------------------------------------------------------------------------