.
├── .github/
│ └── workflows/
│ ├── auto-readme.yml
│ ├── update-contributions.yml
│ ├── update-leetcode-stats.yml
│ └── update-year.yml
├── docs/
│ └── blueprint.md
├── public/
│ ├── adil-munawar-uploads/
│ │ ├── discord.svg
│ │ └── eaf50e40-682a-4730-ac3c-407cf3e4896e.png
│ ├── blogpic/
│ │ ├── gameserverhack.jpg
│ │ ├── publicwifi.jpg
│ │ └── recong.jpg
│ ├── casestudy/
│ │ ├── adigaze.jpg
│ │ ├── agent.jpg
│ │ └── supabase.jpg
│ ├── leetcode/
│ │ ├── 202508.png
│ │ ├── 202509.png
│ │ ├── 202510.png
│ │ ├── 202511.png
│ │ ├── 202512.png
│ │ ├── 202601.png
│ │ ├── 25100.png
│ │ ├── 2550.png
│ │ └── temp
│ ├── testimonials/
│ │ ├── alice.png
│ │ ├── AmnaAli.jpg
│ │ ├── esha.jpg
│ │ └── zoya.jpg
│ ├── adicorp.jpg
│ ├── adiflux.jpg
│ ├── adify.jpg
│ ├── adigaze.jpg
│ ├── adigon.jpg
│ ├── adinox.jpg
│ ├── aditron.jpg
│ ├── 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
│ ├── llm.txt
│ ├── llms.txt
│ ├── Microsoft-azure-professional.png
│ ├── MLOPS with vertex AI.png
│ ├── MLOPS.png
│ ├── placeholder.svg
│ ├── robots.txt
│ ├── RuntimeError43
│ └── 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
│ │ ├── manifest.ts
│ │ ├── page.tsx
│ │ ├── robots.ts
│ │ └── sitemap.ts
│ ├── 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
│ │ ├── CaseStudiesSection.tsx
│ │ ├── CertificationsSection.tsx
│ │ ├── ContactSection.tsx
│ │ ├── GitHubStats.tsx
│ │ ├── HeroSection.tsx
│ │ ├── LeetCodeBadges.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
│ │ ├── case-studies.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
├── tsconfig.tsbuildinfo
└── vite.config.ts.timestamp-1751098616751-1f5463cb8a393.mjs
Adilmunawar/AdilPortfolio
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|