.
├── .github/
│ └── workflows/
│ ├── auto-readme.yml
│ ├── update-contributions.yml
│ └── update-leetcode-stats.yml
├── docs/
│ └── blueprint.md
├── public/
│ ├── adil-munawar-uploads/
│ │ └── eaf50e40-682a-4730-ac3c-407cf3e4896e.png
│ ├── blogpic/
│ │ ├── gameserverhack.jpg
│ │ └── publicwifi.jpg
│ ├── leetcode/
│ │ ├── 202508.gif
│ │ ├── 202509.gif
│ │ ├── 202510.gif
│ │ ├── 202511.gif
│ │ ├── 25100.gif
│ │ ├── 2550.gif
│ │ ├── Introduction_to_Pandas.gif
│ │ ├── temp
│ │ └── Top_SQL_50.gif
│ ├── testimonials/
│ │ ├── alice.png
│ │ ├── AmnaAli.jpg
│ │ ├── esha.jpg
│ │ └── zoya.jpg
│ ├── AdiCorp.png
│ ├── AdiFlux.png
│ ├── Adify.png
│ ├── AdiGon.png
│ ├── AdiNox.png
│ ├── AdiTron.png
│ ├── advance webhook concepts.png
│ ├── advanced performance measurements.png
│ ├── application modern.png
│ ├── aws.png
│ ├── CCAI frontend Integrations.png
│ ├── favicon.ico
│ ├── Google Ads apps.png
│ ├── Linkedin Content and creative design.png
│ ├── Microsoft-azure-professional.png
│ ├── MLOPS with vertex AI.png
│ ├── MLOPS.png
│ ├── placeholder.svg
│ ├── robots.txt
│ ├── RuntimeError43
│ ├── Screenshot 2025-05-28 213514.png
│ ├── Screenshot 2025-05-28 213528.png
│ └── zenith.png
├── scripts/
│ ├── templates/
│ │ └── GitHubStats.tsx.template
│ ├── generate-architecture.mjs
│ ├── scaffold-github-stats.mjs
│ ├── scaffold-leetcode-stats.mjs
│ └── update-github-stats.mjs
├── src/
│ ├── app/
│ │ ├── api/
│ │ │ └── chat/
│ │ │ └── route.ts
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components/
│ │ ├── ui/
│ │ │ ├── accordion.tsx
│ │ │ ├── alert-dialog.tsx
│ │ │ ├── alert.tsx
│ │ │ ├── aspect-ratio.tsx
│ │ │ ├── avatar.tsx
│ │ │ ├── badge.tsx
│ │ │ ├── breadcrumb.tsx
│ │ │ ├── button.tsx
│ │ │ ├── calendar.tsx
│ │ │ ├── card.tsx
│ │ │ ├── carousel.tsx
│ │ │ ├── chart.tsx
│ │ │ ├── checkbox.tsx
│ │ │ ├── collapsible.tsx
│ │ │ ├── command.tsx
│ │ │ ├── context-menu.tsx
│ │ │ ├── dialog.tsx
│ │ │ ├── drawer.tsx
│ │ │ ├── dropdown-menu.tsx
│ │ │ ├── form.tsx
│ │ │ ├── hover-card.tsx
│ │ │ ├── input-otp.tsx
│ │ │ ├── input.tsx
│ │ │ ├── label.tsx
│ │ │ ├── menubar.tsx
│ │ │ ├── minimal-testimonial.tsx
│ │ │ ├── navigation-menu.tsx
│ │ │ ├── neon-orbs.tsx
│ │ │ ├── pagination.tsx
│ │ │ ├── popover.tsx
│ │ │ ├── progress.tsx
│ │ │ ├── radio-group.tsx
│ │ │ ├── resizable.tsx
│ │ │ ├── scroll-area.tsx
│ │ │ ├── select.tsx
│ │ │ ├── separator.tsx
│ │ │ ├── sheet.tsx
│ │ │ ├── sidebar.tsx
│ │ │ ├── skeleton.tsx
│ │ │ ├── slider.tsx
│ │ │ ├── sonner.tsx
│ │ │ ├── switch.tsx
│ │ │ ├── table.tsx
│ │ │ ├── tabs.tsx
│ │ │ ├── testimonial-v2.tsx
│ │ │ ├── textarea.tsx
│ │ │ ├── toast.tsx
│ │ │ ├── toaster.tsx
│ │ │ ├── toggle-group.tsx
│ │ │ ├── toggle.tsx
│ │ │ └── tooltip.tsx
│ │ ├── Zenith/
│ │ │ ├── ZenithAssistant.tsx
│ │ │ ├── ZenithChat.tsx
│ │ │ └── ZenithOrb.tsx
│ │ ├── AboutSection.tsx
│ │ ├── Achievements.tsx
│ │ ├── BlogSection.tsx
│ │ ├── CertificationsSection.tsx
│ │ ├── ContactSection.tsx
│ │ ├── GitHubStats.tsx
│ │ ├── HeroSection.tsx
│ │ ├── LeetCodeStats.tsx
│ │ ├── LogoLoop.css
│ │ ├── LogoLoop.tsx
│ │ ├── Navigation.tsx
│ │ ├── ProfileCard.css
│ │ ├── ProfileCard.tsx
│ │ ├── ProjectsSection.tsx
│ │ ├── ServicesSection.tsx
│ │ ├── SkillsSection.tsx
│ │ ├── StatsSection.tsx
│ │ ├── TestimonialsSection.tsx
│ │ └── TextRoller.tsx
│ ├── hooks/
│ │ ├── use-mobile.tsx
│ │ └── use-toast.ts
│ ├── lib/
│ │ ├── blog-data.json
│ │ ├── github-contributions.json
│ │ ├── leetcode-stats.json
│ │ └── utils.ts
│ ├── globals.css
│ └── vite-env.d.ts
├── .gitignore
├── .modified
├── components.json
├── eslint.config.js
├── next-env.d.ts
├── next.config.js
├── next.config.mjs
├── package.json
├── postcss.config.mjs
├── README.md
├── tailwind.config.ts
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts.timestamp-1751098616751-1f5463cb8a393.mjs
-
Notifications
You must be signed in to change notification settings - Fork 0
My personal portfolio website, built with Next.js, TypeScript, and Tailwind CSS to showcase my projects and professional skills.
Adilmunawar/AdilPortfolio
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
My personal portfolio website, built with Next.js, TypeScript, and Tailwind CSS to showcase my projects and professional skills.