├── .dockerfile ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── components ├── Alerts.tsx ├── DisplayLottie.tsx ├── EducationCard.tsx ├── ExperienceCard.tsx ├── FeedbackCard.tsx ├── GithubProfileCard.tsx ├── Navigation.tsx ├── ProjectsCard.tsx ├── SEO.tsx └── SocialLinks.tsx ├── containers ├── Education.tsx ├── Experience.tsx ├── Feedbacks.tsx ├── Greetings.tsx ├── Proficiency.tsx ├── Projects.tsx └── Skills.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── picture.PNG ├── portfolio.ts ├── public ├── favicon.png ├── fonts │ └── Agustina.otf ├── img │ └── icons │ │ └── common │ │ ├── bleedAI.jpg │ │ ├── duseca_software_logo.jpeg │ │ ├── github.svg │ │ ├── google.svg │ │ ├── meganos.png │ │ └── zrtech.jpeg ├── lottie │ ├── build.json │ ├── coding.json │ └── skills │ │ ├── cloudinfra.json │ │ ├── ethereum.json │ │ └── fullstack.json ├── manifest.json └── robots.txt ├── styles ├── argon-design-system-react.css ├── styles.css └── vendor │ ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── nucleo │ ├── css │ ├── nucleo-svg.css │ └── nucleo.css │ └── fonts │ ├── nucleo-icons.eot │ ├── nucleo-icons.svg │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ └── nucleo-icons.woff2 ├── tsconfig.json ├── types ├── index.ts ├── react-reveal │ └── index.d.ts └── sections.ts └── yarn.lock /.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/.dockerfile -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /components/Alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/Alerts.tsx -------------------------------------------------------------------------------- /components/DisplayLottie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/DisplayLottie.tsx -------------------------------------------------------------------------------- /components/EducationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/EducationCard.tsx -------------------------------------------------------------------------------- /components/ExperienceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/ExperienceCard.tsx -------------------------------------------------------------------------------- /components/FeedbackCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/FeedbackCard.tsx -------------------------------------------------------------------------------- /components/GithubProfileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/GithubProfileCard.tsx -------------------------------------------------------------------------------- /components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/Navigation.tsx -------------------------------------------------------------------------------- /components/ProjectsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/ProjectsCard.tsx -------------------------------------------------------------------------------- /components/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/SEO.tsx -------------------------------------------------------------------------------- /components/SocialLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/components/SocialLinks.tsx -------------------------------------------------------------------------------- /containers/Education.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Education.tsx -------------------------------------------------------------------------------- /containers/Experience.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Experience.tsx -------------------------------------------------------------------------------- /containers/Feedbacks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Feedbacks.tsx -------------------------------------------------------------------------------- /containers/Greetings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Greetings.tsx -------------------------------------------------------------------------------- /containers/Proficiency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Proficiency.tsx -------------------------------------------------------------------------------- /containers/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Projects.tsx -------------------------------------------------------------------------------- /containers/Skills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/containers/Skills.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /picture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/picture.PNG -------------------------------------------------------------------------------- /portfolio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/portfolio.ts -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/Agustina.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/fonts/Agustina.otf -------------------------------------------------------------------------------- /public/img/icons/common/bleedAI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/img/icons/common/bleedAI.jpg -------------------------------------------------------------------------------- /public/img/icons/common/duseca_software_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/img/icons/common/duseca_software_logo.jpeg -------------------------------------------------------------------------------- /public/img/icons/common/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/img/icons/common/github.svg -------------------------------------------------------------------------------- /public/img/icons/common/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/img/icons/common/google.svg -------------------------------------------------------------------------------- /public/img/icons/common/meganos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/img/icons/common/meganos.png -------------------------------------------------------------------------------- /public/img/icons/common/zrtech.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/img/icons/common/zrtech.jpeg -------------------------------------------------------------------------------- /public/lottie/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/lottie/build.json -------------------------------------------------------------------------------- /public/lottie/coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/lottie/coding.json -------------------------------------------------------------------------------- /public/lottie/skills/cloudinfra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/lottie/skills/cloudinfra.json -------------------------------------------------------------------------------- /public/lottie/skills/ethereum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/lottie/skills/ethereum.json -------------------------------------------------------------------------------- /public/lottie/skills/fullstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/lottie/skills/fullstack.json -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: /* 3 | Host: developer-portfolio-1hanzla100.vercel.app -------------------------------------------------------------------------------- /styles/argon-design-system-react.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/argon-design-system-react.css -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- 1 | body > div:first-child { 2 | overflow-x: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /styles/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /styles/vendor/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /styles/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /styles/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /styles/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /styles/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /styles/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /styles/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /styles/vendor/nucleo/css/nucleo-svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/css/nucleo-svg.css -------------------------------------------------------------------------------- /styles/vendor/nucleo/css/nucleo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/css/nucleo.css -------------------------------------------------------------------------------- /styles/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /styles/vendor/nucleo/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /styles/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /styles/vendor/nucleo/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /styles/vendor/nucleo/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/styles/vendor/nucleo/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/react-reveal/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/types/react-reveal/index.d.ts -------------------------------------------------------------------------------- /types/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/types/sections.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1hanzla100/developer-portfolio/HEAD/yarn.lock --------------------------------------------------------------------------------