├── .env ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx ├── robots.ts └── sitemap.ts ├── components ├── About.tsx ├── Banner.tsx ├── Experience.tsx ├── Footer.tsx ├── Navbar.tsx ├── Projects.tsx └── main │ └── StarsBackground.tsx ├── constant └── index.tsx ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── Figma.svg ├── FirstProject.png ├── FourProject.png ├── Github.svg ├── Instagram.svg ├── LinkedIn.svg ├── Logo.svg ├── LooperGroup2.png ├── Me.png ├── OpenGraph.jpg ├── SecondProject.png ├── ThirdProject.png ├── Twitter.svg ├── WebHR.svg ├── next.svg ├── popcorn.gif ├── portfolio-thumbnail.png └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/app/robots.ts -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/About.tsx -------------------------------------------------------------------------------- /components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/Banner.tsx -------------------------------------------------------------------------------- /components/Experience.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/Experience.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/Projects.tsx -------------------------------------------------------------------------------- /components/main/StarsBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/components/main/StarsBackground.tsx -------------------------------------------------------------------------------- /constant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/constant/index.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/Figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/Figma.svg -------------------------------------------------------------------------------- /public/FirstProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/FirstProject.png -------------------------------------------------------------------------------- /public/FourProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/FourProject.png -------------------------------------------------------------------------------- /public/Github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/Github.svg -------------------------------------------------------------------------------- /public/Instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/Instagram.svg -------------------------------------------------------------------------------- /public/LinkedIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/LinkedIn.svg -------------------------------------------------------------------------------- /public/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/Logo.svg -------------------------------------------------------------------------------- /public/LooperGroup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/LooperGroup2.png -------------------------------------------------------------------------------- /public/Me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/Me.png -------------------------------------------------------------------------------- /public/OpenGraph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/OpenGraph.jpg -------------------------------------------------------------------------------- /public/SecondProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/SecondProject.png -------------------------------------------------------------------------------- /public/ThirdProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/ThirdProject.png -------------------------------------------------------------------------------- /public/Twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/Twitter.svg -------------------------------------------------------------------------------- /public/WebHR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/WebHR.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/popcorn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/popcorn.gif -------------------------------------------------------------------------------- /public/portfolio-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/portfolio-thumbnail.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimmemonn/Developer-Portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------