├── .env.example ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api └── utils │ └── db.ts ├── components ├── connect │ └── index.tsx ├── home │ ├── contact.tsx │ ├── index.tsx │ ├── landing.tsx │ ├── projects.tsx │ ├── repo.tsx │ ├── skills-icon.tsx │ ├── skills.tsx │ ├── wordcloud.tsx │ └── work.tsx ├── index.ts ├── notfound │ └── index.tsx ├── project-details │ ├── details.tsx │ ├── index.tsx │ └── landing.tsx ├── projects │ └── index.tsx └── work │ ├── company-details.tsx │ ├── details.tsx │ ├── index.tsx │ └── landing.tsx ├── docs └── logo-dark.svg ├── next-env.d.ts ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── api │ ├── companies.ts │ ├── health.ts │ ├── me.ts │ └── projects.ts ├── connect.tsx ├── index.tsx ├── project │ └── [slug].tsx ├── projects.tsx └── work.tsx ├── postcss.config.js ├── public ├── HARSH_GOEL_RESUME.pdf ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── images │ ├── 1.png │ ├── bob.png │ ├── companies │ │ ├── bharatpe.png │ │ ├── coding_blocks.svg │ │ ├── dezigndia.png │ │ ├── hashbinary.svg │ │ ├── headout.svg │ │ ├── heiphen.svg │ │ ├── iec.svg │ │ ├── inception_wave.svg │ │ ├── insolvers.svg │ │ ├── social_dukan.svg │ │ ├── workmailcommunity.svg │ │ └── zoob_labs.svg │ ├── harsh_goel.svg │ ├── icons │ │ ├── call.svg │ │ ├── facebook.svg │ │ ├── fork.svg │ │ ├── github.svg │ │ ├── instagram.svg │ │ ├── linkedin.svg │ │ ├── mail.svg │ │ ├── star.svg │ │ ├── warning.svg │ │ └── watch.svg │ ├── logo-dark.svg │ ├── logo-light.svg │ ├── projects │ │ ├── brinecleanup.webp │ │ ├── carl.webp │ │ ├── connekt.webp │ │ ├── daa.webp │ │ ├── desk.png │ │ ├── doceasy.png │ │ ├── dr-jeewan.webp │ │ ├── goco.webp │ │ ├── hhs.webp │ │ ├── idy-dashboard.webp │ │ ├── inception_wave.webp │ │ ├── insolvers.webp │ │ ├── jack.webp │ │ ├── kzilla-xyz.webp │ │ ├── labelfuse.webp │ │ ├── mediseen.png │ │ ├── milan-20.webp │ │ ├── mirate.webp │ │ ├── mozofest21.png │ │ ├── portfolio_v1.webp │ │ ├── pricinger.png │ │ ├── recruitments-srmkzilla.webp │ │ ├── social_dukan.webp │ │ ├── srm_sce.webp │ │ ├── srmiec-2020.webp │ │ └── workmailcommunity.webp │ ├── skills │ │ ├── angular.svg │ │ ├── css.svg │ │ ├── discordjs.png │ │ ├── express.svg │ │ ├── figma.svg │ │ ├── firebase.svg │ │ ├── git.svg │ │ ├── html.svg │ │ ├── js.svg │ │ ├── mongodb.svg │ │ ├── mysql.png │ │ ├── nextjs.svg │ │ ├── node.svg │ │ ├── php.svg │ │ ├── react-native.svg │ │ ├── react.svg │ │ ├── svelte.svg │ │ └── ts.svg │ ├── srmkzilla_logo_white_mono.png │ └── vectors │ │ ├── 404-hero.svg │ │ ├── 404-polygon.svg │ │ ├── arrows-right.svg │ │ ├── boxes.svg │ │ ├── circle-spin.svg │ │ ├── contact.svg │ │ ├── cylinder.svg │ │ ├── ellipse.svg │ │ ├── heart.svg │ │ ├── l-vector.svg │ │ ├── nav_active.svg │ │ ├── quater-spin.svg │ │ └── triangle.svg ├── mstile-150x150.png ├── safari-pinned-tab.svg ├── site.webmanifest └── sitemap.xml ├── shared ├── components │ ├── buttons.tsx │ ├── cookie-alert.tsx │ ├── footer.tsx │ ├── header-small.tsx │ ├── index.ts │ ├── loader.tsx │ ├── navbar.tsx │ ├── project-card.tsx │ ├── socialbar.tsx │ └── text-cards.tsx ├── cursor.tsx └── utils │ ├── apiService.tsx │ ├── constants.ts │ ├── contexts.tsx │ ├── skills.tsx │ ├── types.tsx │ └── words.tsx ├── styles └── global.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/api/utils/db.ts -------------------------------------------------------------------------------- /components/connect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/connect/index.tsx -------------------------------------------------------------------------------- /components/home/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/contact.tsx -------------------------------------------------------------------------------- /components/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/index.tsx -------------------------------------------------------------------------------- /components/home/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/landing.tsx -------------------------------------------------------------------------------- /components/home/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/projects.tsx -------------------------------------------------------------------------------- /components/home/repo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/repo.tsx -------------------------------------------------------------------------------- /components/home/skills-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/skills-icon.tsx -------------------------------------------------------------------------------- /components/home/skills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/skills.tsx -------------------------------------------------------------------------------- /components/home/wordcloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/wordcloud.tsx -------------------------------------------------------------------------------- /components/home/work.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/home/work.tsx -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/index.ts -------------------------------------------------------------------------------- /components/notfound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/notfound/index.tsx -------------------------------------------------------------------------------- /components/project-details/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/project-details/details.tsx -------------------------------------------------------------------------------- /components/project-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/project-details/index.tsx -------------------------------------------------------------------------------- /components/project-details/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/project-details/landing.tsx -------------------------------------------------------------------------------- /components/projects/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/projects/index.tsx -------------------------------------------------------------------------------- /components/work/company-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/work/company-details.tsx -------------------------------------------------------------------------------- /components/work/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/work/details.tsx -------------------------------------------------------------------------------- /components/work/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/work/index.tsx -------------------------------------------------------------------------------- /components/work/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/components/work/landing.tsx -------------------------------------------------------------------------------- /docs/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/docs/logo-dark.svg -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/companies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/api/companies.ts -------------------------------------------------------------------------------- /pages/api/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/api/health.ts -------------------------------------------------------------------------------- /pages/api/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/api/me.ts -------------------------------------------------------------------------------- /pages/api/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/api/projects.ts -------------------------------------------------------------------------------- /pages/connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/connect.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/project/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/project/[slug].tsx -------------------------------------------------------------------------------- /pages/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/projects.tsx -------------------------------------------------------------------------------- /pages/work.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/pages/work.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: ['tailwindcss', 'postcss-preset-env'] 3 | }; 4 | -------------------------------------------------------------------------------- /public/HARSH_GOEL_RESUME.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/HARSH_GOEL_RESUME.pdf -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/1.png -------------------------------------------------------------------------------- /public/images/bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/bob.png -------------------------------------------------------------------------------- /public/images/companies/bharatpe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/bharatpe.png -------------------------------------------------------------------------------- /public/images/companies/coding_blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/coding_blocks.svg -------------------------------------------------------------------------------- /public/images/companies/dezigndia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/dezigndia.png -------------------------------------------------------------------------------- /public/images/companies/hashbinary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/hashbinary.svg -------------------------------------------------------------------------------- /public/images/companies/headout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/headout.svg -------------------------------------------------------------------------------- /public/images/companies/heiphen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/heiphen.svg -------------------------------------------------------------------------------- /public/images/companies/iec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/iec.svg -------------------------------------------------------------------------------- /public/images/companies/inception_wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/inception_wave.svg -------------------------------------------------------------------------------- /public/images/companies/insolvers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/insolvers.svg -------------------------------------------------------------------------------- /public/images/companies/social_dukan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/social_dukan.svg -------------------------------------------------------------------------------- /public/images/companies/workmailcommunity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/workmailcommunity.svg -------------------------------------------------------------------------------- /public/images/companies/zoob_labs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/companies/zoob_labs.svg -------------------------------------------------------------------------------- /public/images/harsh_goel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/harsh_goel.svg -------------------------------------------------------------------------------- /public/images/icons/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/call.svg -------------------------------------------------------------------------------- /public/images/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/facebook.svg -------------------------------------------------------------------------------- /public/images/icons/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/fork.svg -------------------------------------------------------------------------------- /public/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/github.svg -------------------------------------------------------------------------------- /public/images/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/instagram.svg -------------------------------------------------------------------------------- /public/images/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/linkedin.svg -------------------------------------------------------------------------------- /public/images/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/mail.svg -------------------------------------------------------------------------------- /public/images/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/star.svg -------------------------------------------------------------------------------- /public/images/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/warning.svg -------------------------------------------------------------------------------- /public/images/icons/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/icons/watch.svg -------------------------------------------------------------------------------- /public/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/logo-light.svg -------------------------------------------------------------------------------- /public/images/projects/brinecleanup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/brinecleanup.webp -------------------------------------------------------------------------------- /public/images/projects/carl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/carl.webp -------------------------------------------------------------------------------- /public/images/projects/connekt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/connekt.webp -------------------------------------------------------------------------------- /public/images/projects/daa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/daa.webp -------------------------------------------------------------------------------- /public/images/projects/desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/desk.png -------------------------------------------------------------------------------- /public/images/projects/doceasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/doceasy.png -------------------------------------------------------------------------------- /public/images/projects/dr-jeewan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/dr-jeewan.webp -------------------------------------------------------------------------------- /public/images/projects/goco.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/goco.webp -------------------------------------------------------------------------------- /public/images/projects/hhs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/hhs.webp -------------------------------------------------------------------------------- /public/images/projects/idy-dashboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/idy-dashboard.webp -------------------------------------------------------------------------------- /public/images/projects/inception_wave.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/inception_wave.webp -------------------------------------------------------------------------------- /public/images/projects/insolvers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/insolvers.webp -------------------------------------------------------------------------------- /public/images/projects/jack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/jack.webp -------------------------------------------------------------------------------- /public/images/projects/kzilla-xyz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/kzilla-xyz.webp -------------------------------------------------------------------------------- /public/images/projects/labelfuse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/labelfuse.webp -------------------------------------------------------------------------------- /public/images/projects/mediseen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/mediseen.png -------------------------------------------------------------------------------- /public/images/projects/milan-20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/milan-20.webp -------------------------------------------------------------------------------- /public/images/projects/mirate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/mirate.webp -------------------------------------------------------------------------------- /public/images/projects/mozofest21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/mozofest21.png -------------------------------------------------------------------------------- /public/images/projects/portfolio_v1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/portfolio_v1.webp -------------------------------------------------------------------------------- /public/images/projects/pricinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/pricinger.png -------------------------------------------------------------------------------- /public/images/projects/recruitments-srmkzilla.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/recruitments-srmkzilla.webp -------------------------------------------------------------------------------- /public/images/projects/social_dukan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/social_dukan.webp -------------------------------------------------------------------------------- /public/images/projects/srm_sce.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/srm_sce.webp -------------------------------------------------------------------------------- /public/images/projects/srmiec-2020.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/srmiec-2020.webp -------------------------------------------------------------------------------- /public/images/projects/workmailcommunity.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/projects/workmailcommunity.webp -------------------------------------------------------------------------------- /public/images/skills/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/angular.svg -------------------------------------------------------------------------------- /public/images/skills/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/css.svg -------------------------------------------------------------------------------- /public/images/skills/discordjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/discordjs.png -------------------------------------------------------------------------------- /public/images/skills/express.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/express.svg -------------------------------------------------------------------------------- /public/images/skills/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/figma.svg -------------------------------------------------------------------------------- /public/images/skills/firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/firebase.svg -------------------------------------------------------------------------------- /public/images/skills/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/git.svg -------------------------------------------------------------------------------- /public/images/skills/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/html.svg -------------------------------------------------------------------------------- /public/images/skills/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/js.svg -------------------------------------------------------------------------------- /public/images/skills/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/mongodb.svg -------------------------------------------------------------------------------- /public/images/skills/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/mysql.png -------------------------------------------------------------------------------- /public/images/skills/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/nextjs.svg -------------------------------------------------------------------------------- /public/images/skills/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/node.svg -------------------------------------------------------------------------------- /public/images/skills/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/php.svg -------------------------------------------------------------------------------- /public/images/skills/react-native.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/react-native.svg -------------------------------------------------------------------------------- /public/images/skills/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/react.svg -------------------------------------------------------------------------------- /public/images/skills/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/svelte.svg -------------------------------------------------------------------------------- /public/images/skills/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/skills/ts.svg -------------------------------------------------------------------------------- /public/images/srmkzilla_logo_white_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/srmkzilla_logo_white_mono.png -------------------------------------------------------------------------------- /public/images/vectors/404-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/404-hero.svg -------------------------------------------------------------------------------- /public/images/vectors/404-polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/404-polygon.svg -------------------------------------------------------------------------------- /public/images/vectors/arrows-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/arrows-right.svg -------------------------------------------------------------------------------- /public/images/vectors/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/boxes.svg -------------------------------------------------------------------------------- /public/images/vectors/circle-spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/circle-spin.svg -------------------------------------------------------------------------------- /public/images/vectors/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/contact.svg -------------------------------------------------------------------------------- /public/images/vectors/cylinder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/cylinder.svg -------------------------------------------------------------------------------- /public/images/vectors/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/ellipse.svg -------------------------------------------------------------------------------- /public/images/vectors/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/heart.svg -------------------------------------------------------------------------------- /public/images/vectors/l-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/l-vector.svg -------------------------------------------------------------------------------- /public/images/vectors/nav_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/nav_active.svg -------------------------------------------------------------------------------- /public/images/vectors/quater-spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/quater-spin.svg -------------------------------------------------------------------------------- /public/images/vectors/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/images/vectors/triangle.svg -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /shared/components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/buttons.tsx -------------------------------------------------------------------------------- /shared/components/cookie-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/cookie-alert.tsx -------------------------------------------------------------------------------- /shared/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/footer.tsx -------------------------------------------------------------------------------- /shared/components/header-small.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/header-small.tsx -------------------------------------------------------------------------------- /shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/index.ts -------------------------------------------------------------------------------- /shared/components/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/loader.tsx -------------------------------------------------------------------------------- /shared/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/navbar.tsx -------------------------------------------------------------------------------- /shared/components/project-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/project-card.tsx -------------------------------------------------------------------------------- /shared/components/socialbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/socialbar.tsx -------------------------------------------------------------------------------- /shared/components/text-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/components/text-cards.tsx -------------------------------------------------------------------------------- /shared/cursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/cursor.tsx -------------------------------------------------------------------------------- /shared/utils/apiService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/utils/apiService.tsx -------------------------------------------------------------------------------- /shared/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/utils/constants.ts -------------------------------------------------------------------------------- /shared/utils/contexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/utils/contexts.tsx -------------------------------------------------------------------------------- /shared/utils/skills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/utils/skills.tsx -------------------------------------------------------------------------------- /shared/utils/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/utils/types.tsx -------------------------------------------------------------------------------- /shared/utils/words.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/shared/utils/words.tsx -------------------------------------------------------------------------------- /styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/styles/global.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshgoel05/another-portfolio/HEAD/yarn.lock --------------------------------------------------------------------------------