├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── Footer.tsx ├── Header.tsx ├── HomePage.tsx ├── globals.css ├── head.tsx ├── layout.tsx └── page.tsx ├── components ├── About.tsx ├── CallToAction.tsx ├── Contact.tsx ├── Hero.tsx ├── SectionWrapper.tsx ├── Socials.tsx ├── experiences │ ├── ExperienceCard.tsx │ └── Experiences.tsx ├── projects │ ├── ProjectCard.tsx │ └── Projects.tsx └── skills │ ├── SkillCard.tsx │ └── Skills.tsx ├── data.json ├── firebase.ts ├── next.config.js ├── package.json ├── pages └── api │ └── mail.ts ├── postcss.config.js ├── public ├── contact.png ├── favicon.ico ├── herobg.jpg ├── herobgc.jpg ├── nextjs.svg ├── portfolio-fork-dark.png ├── portfolio-fork.png ├── vercel.svg ├── waving-hand.gif └── waving-hand.png ├── tailwind.config.js ├── tsconfig.json └── types └── main.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /app/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/Footer.tsx -------------------------------------------------------------------------------- /app/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/Header.tsx -------------------------------------------------------------------------------- /app/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/HomePage.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/head.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/About.tsx -------------------------------------------------------------------------------- /components/CallToAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/CallToAction.tsx -------------------------------------------------------------------------------- /components/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/Contact.tsx -------------------------------------------------------------------------------- /components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/Hero.tsx -------------------------------------------------------------------------------- /components/SectionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/SectionWrapper.tsx -------------------------------------------------------------------------------- /components/Socials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/Socials.tsx -------------------------------------------------------------------------------- /components/experiences/ExperienceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/experiences/ExperienceCard.tsx -------------------------------------------------------------------------------- /components/experiences/Experiences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/experiences/Experiences.tsx -------------------------------------------------------------------------------- /components/projects/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/projects/ProjectCard.tsx -------------------------------------------------------------------------------- /components/projects/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/projects/Projects.tsx -------------------------------------------------------------------------------- /components/skills/SkillCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/skills/SkillCard.tsx -------------------------------------------------------------------------------- /components/skills/Skills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/components/skills/Skills.tsx -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/data.json -------------------------------------------------------------------------------- /firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/firebase.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/pages/api/mail.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/contact.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/herobg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/herobg.jpg -------------------------------------------------------------------------------- /public/herobgc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/herobgc.jpg -------------------------------------------------------------------------------- /public/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/nextjs.svg -------------------------------------------------------------------------------- /public/portfolio-fork-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/portfolio-fork-dark.png -------------------------------------------------------------------------------- /public/portfolio-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/portfolio-fork.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/waving-hand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/waving-hand.gif -------------------------------------------------------------------------------- /public/waving-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/public/waving-hand.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigar-sable/next-portfolio/HEAD/types/main.ts --------------------------------------------------------------------------------