├── .eslintrc.json ├── .gitignore ├── CI-CD ├── CircleCI.md ├── GitHub-Actions.md ├── GitLab-CI.md └── Jenkins.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cloud ├── AWS.md ├── Azure.md ├── GCP.md ├── Kubernetes-on-AWS.md └── Terraform-on-AWS.md ├── Containerization ├── CRI-O.md ├── Docker.md ├── Helm.md ├── Kubernetes.md ├── OpenShift.md └── Podman.md ├── Infrastructure-Management ├── Ansible.md ├── Chef.md ├── Puppet.md └── Terraform.md ├── LICENSE ├── Monitoring ├── CloudWatch.md ├── ELK-Stack.md ├── Grafana.md ├── Nagios.md └── Prometheus.md ├── Networking ├── Consul.md ├── Envoy.md ├── Istio.md └── Linkerd.md ├── README.md ├── Security ├── AquaSec.md ├── HashiCorp-Vault.md ├── SonarQube.md └── Trivy.md ├── Version-Control ├── Bitbucket.md ├── GitHub.md └── GitLab.md ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── grid-pattern.svg ├── icons │ └── README.md ├── logo.png ├── manifest.json ├── placeholder.svg ├── robots.txt ├── site.webmanifest ├── sitemap.xml └── static │ ├── cheatsheets-content.json │ └── cheatsheets-metadata.json ├── scripts ├── categories.js ├── categoryData.js └── process-markdown.mjs ├── src ├── app │ ├── [category] │ │ ├── CategoryPageClient.tsx │ │ ├── [slug] │ │ │ ├── CheatsheetPageClient.tsx │ │ │ ├── error.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── loading.tsx │ │ ├── not-found.tsx │ │ └── page.tsx │ ├── about │ │ └── page.tsx │ ├── api │ │ └── cheatsheets │ │ │ ├── [category] │ │ │ └── [slug] │ │ │ │ └── route.ts │ │ │ └── route.ts │ ├── categories │ │ └── page.tsx │ ├── contribute │ │ └── page.tsx │ ├── getting-started │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── page.tsx │ └── search │ │ └── page.tsx ├── components │ ├── CategoryActions.tsx │ ├── CategoryCard.tsx │ ├── CategoryIcon.tsx │ ├── CheatsheetTemplate.tsx │ ├── CopyButton.tsx │ ├── ExploreButton.tsx │ ├── Footer.tsx │ ├── GlobalLoader.tsx │ ├── Header.tsx │ ├── HomeFilters.tsx │ ├── MarkdownContent.tsx │ ├── OptimizedImage.tsx │ ├── ScrollToTop.tsx │ ├── SearchBar.tsx │ ├── ThemeToggle.tsx │ ├── ToolIcon.tsx │ └── ToolLogo.tsx ├── config │ └── toolIcons.ts ├── context │ └── ThemeContext.tsx ├── data │ └── cheatsheets.ts ├── hooks │ └── useOptimizedAnimation.ts └── utils │ ├── categoryData.ts │ ├── localStorage.ts │ ├── markdown.ts │ ├── performance.ts │ └── toolIcons.ts ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /CI-CD/CircleCI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/CI-CD/CircleCI.md -------------------------------------------------------------------------------- /CI-CD/GitHub-Actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/CI-CD/GitHub-Actions.md -------------------------------------------------------------------------------- /CI-CD/GitLab-CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/CI-CD/GitLab-CI.md -------------------------------------------------------------------------------- /CI-CD/Jenkins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/CI-CD/Jenkins.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cloud/AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Cloud/AWS.md -------------------------------------------------------------------------------- /Cloud/Azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Cloud/Azure.md -------------------------------------------------------------------------------- /Cloud/GCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Cloud/GCP.md -------------------------------------------------------------------------------- /Cloud/Kubernetes-on-AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Cloud/Kubernetes-on-AWS.md -------------------------------------------------------------------------------- /Cloud/Terraform-on-AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Cloud/Terraform-on-AWS.md -------------------------------------------------------------------------------- /Containerization/CRI-O.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Containerization/CRI-O.md -------------------------------------------------------------------------------- /Containerization/Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Containerization/Docker.md -------------------------------------------------------------------------------- /Containerization/Helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Containerization/Helm.md -------------------------------------------------------------------------------- /Containerization/Kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Containerization/Kubernetes.md -------------------------------------------------------------------------------- /Containerization/OpenShift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Containerization/OpenShift.md -------------------------------------------------------------------------------- /Containerization/Podman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Containerization/Podman.md -------------------------------------------------------------------------------- /Infrastructure-Management/Ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Infrastructure-Management/Ansible.md -------------------------------------------------------------------------------- /Infrastructure-Management/Chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Infrastructure-Management/Chef.md -------------------------------------------------------------------------------- /Infrastructure-Management/Puppet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Infrastructure-Management/Puppet.md -------------------------------------------------------------------------------- /Infrastructure-Management/Terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Infrastructure-Management/Terraform.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /Monitoring/CloudWatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Monitoring/CloudWatch.md -------------------------------------------------------------------------------- /Monitoring/ELK-Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Monitoring/ELK-Stack.md -------------------------------------------------------------------------------- /Monitoring/Grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Monitoring/Grafana.md -------------------------------------------------------------------------------- /Monitoring/Nagios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Monitoring/Nagios.md -------------------------------------------------------------------------------- /Monitoring/Prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Monitoring/Prometheus.md -------------------------------------------------------------------------------- /Networking/Consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Networking/Consul.md -------------------------------------------------------------------------------- /Networking/Envoy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Networking/Envoy.md -------------------------------------------------------------------------------- /Networking/Istio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Networking/Istio.md -------------------------------------------------------------------------------- /Networking/Linkerd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Networking/Linkerd.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /Security/AquaSec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Security/AquaSec.md -------------------------------------------------------------------------------- /Security/HashiCorp-Vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Security/HashiCorp-Vault.md -------------------------------------------------------------------------------- /Security/SonarQube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Security/SonarQube.md -------------------------------------------------------------------------------- /Security/Trivy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Security/Trivy.md -------------------------------------------------------------------------------- /Version-Control/Bitbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Version-Control/Bitbucket.md -------------------------------------------------------------------------------- /Version-Control/GitHub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Version-Control/GitHub.md -------------------------------------------------------------------------------- /Version-Control/GitLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/Version-Control/GitLab.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/grid-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/grid-pattern.svg -------------------------------------------------------------------------------- /public/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/icons/README.md -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/static/cheatsheets-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/static/cheatsheets-content.json -------------------------------------------------------------------------------- /public/static/cheatsheets-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/public/static/cheatsheets-metadata.json -------------------------------------------------------------------------------- /scripts/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/scripts/categories.js -------------------------------------------------------------------------------- /scripts/categoryData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/scripts/categoryData.js -------------------------------------------------------------------------------- /scripts/process-markdown.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/scripts/process-markdown.mjs -------------------------------------------------------------------------------- /src/app/[category]/CategoryPageClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/CategoryPageClient.tsx -------------------------------------------------------------------------------- /src/app/[category]/[slug]/CheatsheetPageClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/[slug]/CheatsheetPageClient.tsx -------------------------------------------------------------------------------- /src/app/[category]/[slug]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/[slug]/error.tsx -------------------------------------------------------------------------------- /src/app/[category]/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/[slug]/loading.tsx -------------------------------------------------------------------------------- /src/app/[category]/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/[category]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/loading.tsx -------------------------------------------------------------------------------- /src/app/[category]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/not-found.tsx -------------------------------------------------------------------------------- /src/app/[category]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/[category]/page.tsx -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/api/cheatsheets/[category]/[slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/api/cheatsheets/[category]/[slug]/route.ts -------------------------------------------------------------------------------- /src/app/api/cheatsheets/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/api/cheatsheets/route.ts -------------------------------------------------------------------------------- /src/app/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/categories/page.tsx -------------------------------------------------------------------------------- /src/app/contribute/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/contribute/page.tsx -------------------------------------------------------------------------------- /src/app/getting-started/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/getting-started/page.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/app/search/page.tsx -------------------------------------------------------------------------------- /src/components/CategoryActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/CategoryActions.tsx -------------------------------------------------------------------------------- /src/components/CategoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/CategoryCard.tsx -------------------------------------------------------------------------------- /src/components/CategoryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/CategoryIcon.tsx -------------------------------------------------------------------------------- /src/components/CheatsheetTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/CheatsheetTemplate.tsx -------------------------------------------------------------------------------- /src/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/ExploreButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/ExploreButton.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/GlobalLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/GlobalLoader.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/HomeFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/HomeFilters.tsx -------------------------------------------------------------------------------- /src/components/MarkdownContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/MarkdownContent.tsx -------------------------------------------------------------------------------- /src/components/OptimizedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/OptimizedImage.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/ScrollToTop.tsx -------------------------------------------------------------------------------- /src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/ToolIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/ToolIcon.tsx -------------------------------------------------------------------------------- /src/components/ToolLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/components/ToolLogo.tsx -------------------------------------------------------------------------------- /src/config/toolIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/config/toolIcons.ts -------------------------------------------------------------------------------- /src/context/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/context/ThemeContext.tsx -------------------------------------------------------------------------------- /src/data/cheatsheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/data/cheatsheets.ts -------------------------------------------------------------------------------- /src/hooks/useOptimizedAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/hooks/useOptimizedAnimation.ts -------------------------------------------------------------------------------- /src/utils/categoryData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/utils/categoryData.ts -------------------------------------------------------------------------------- /src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/utils/localStorage.ts -------------------------------------------------------------------------------- /src/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/utils/markdown.ts -------------------------------------------------------------------------------- /src/utils/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/utils/performance.ts -------------------------------------------------------------------------------- /src/utils/toolIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/src/utils/toolIcons.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/devops-cheatsheet/HEAD/tsconfig.json --------------------------------------------------------------------------------