├── .env ├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── og-image.png └── portfolioLogo.png ├── src ├── app │ ├── about │ │ └── page.tsx │ ├── contact │ │ └── page.tsx │ ├── education │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── more │ │ └── page.tsx │ ├── page.tsx │ ├── projects │ │ └── page.tsx │ └── skills │ │ └── page.tsx ├── components │ ├── Aboutfooter.tsx │ ├── ContactForm.tsx │ ├── DownLoadResumeBtn.tsx │ ├── Heading.tsx │ ├── HeroImage.tsx │ ├── HeroTexts.tsx │ ├── Navbar.tsx │ ├── ProjectsCard.tsx │ ├── SendEmail.ts │ ├── SkillsFotter.tsx │ ├── SocialLinks.tsx │ ├── TextRotator.tsx │ ├── animation │ │ ├── DockAnimation.tsx │ │ ├── FramerWrapper.tsx │ │ ├── GithubBtn.tsx │ │ └── HackerBtn.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ └── tooltip.tsx ├── config │ └── portfolio.config.ts └── lib │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- 1 | RESEND_API_KEY= Your Render Api Key 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/portfolioLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/public/portfolioLogo.png -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/contact/page.tsx -------------------------------------------------------------------------------- /src/app/education/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/education/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/more/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/more/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/projects/page.tsx -------------------------------------------------------------------------------- /src/app/skills/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/app/skills/page.tsx -------------------------------------------------------------------------------- /src/components/Aboutfooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/Aboutfooter.tsx -------------------------------------------------------------------------------- /src/components/ContactForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ContactForm.tsx -------------------------------------------------------------------------------- /src/components/DownLoadResumeBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/DownLoadResumeBtn.tsx -------------------------------------------------------------------------------- /src/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/Heading.tsx -------------------------------------------------------------------------------- /src/components/HeroImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/HeroImage.tsx -------------------------------------------------------------------------------- /src/components/HeroTexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/HeroTexts.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/ProjectsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ProjectsCard.tsx -------------------------------------------------------------------------------- /src/components/SendEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/SendEmail.ts -------------------------------------------------------------------------------- /src/components/SkillsFotter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/SkillsFotter.tsx -------------------------------------------------------------------------------- /src/components/SocialLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/SocialLinks.tsx -------------------------------------------------------------------------------- /src/components/TextRotator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/TextRotator.tsx -------------------------------------------------------------------------------- /src/components/animation/DockAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/animation/DockAnimation.tsx -------------------------------------------------------------------------------- /src/components/animation/FramerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/animation/FramerWrapper.tsx -------------------------------------------------------------------------------- /src/components/animation/GithubBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/animation/GithubBtn.tsx -------------------------------------------------------------------------------- /src/components/animation/HackerBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/animation/HackerBtn.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/config/portfolio.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/config/portfolio.config.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldStar0103/next-portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------