Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ screens/
.superpowers/
.claude/
.agents/
.worktrees/
skills-lock.json

.astro/
Expand Down
15 changes: 8 additions & 7 deletions apps/website/src/content.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { glob } from "astro/loaders";
import { defineCollection, z } from "astro:content";
import { glob } from 'astro/loaders';
import { defineCollection } from 'astro:content';
import { z } from 'astro/zod';

const icons = defineCollection({
loader: glob({ base: "./src/content/icons", pattern: "**/*.{md,mdx}" }),
loader: glob({ base: './src/content/icons', pattern: '**/*.{md,mdx}' }),
schema: z.object({
name: z.string(),
description: z.string().optional(),
Expand All @@ -28,19 +29,19 @@ const icons = defineCollection({
});

const docs = defineCollection({
loader: glob({ base: "./src/content/docs", pattern: "**/*.{md,mdx}" }),
loader: glob({ base: './src/content/docs', pattern: '**/*.{md,mdx}' }),
schema: z.object({
title: z.string(),
description: z.string().optional(),
order: z.number().default(0),
category: z.string().default("Getting Started"),
category: z.string().default('Getting Started'),
categoryOrder: z.number().default(0),
badge: z.enum(["new", "updated", "beta"]).optional(),
badge: z.enum(['new', 'updated', 'beta']).optional(),
}),
});

const packs = defineCollection({
loader: glob({ base: "./src/content/packs", pattern: "**/*.{md,mdx}" }),
loader: glob({ base: './src/content/packs', pattern: '**/*.{md,mdx}' }),
schema: z.object({
title: z.string(),
description: z.string(),
Expand Down
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/airtable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ tags: [
website: "https://airtable.com/"
aliases: []
version: "1.0.0"
license: "https://airtable.com/company/tos"
brandGuidelines: "https://www.airtable.com/company/trademark-guidelines"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/angular.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ tags: [
website: "https://angular.io/"
aliases: ["ng"]
version: "1.0.0"
license: "https://github.com/angular/angular/blob/main/LICENSE"
brandGuidelines: "https://angular.dev/press-kit"
popular: true
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/anthropic.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ tags: [
website: "https://www.anthropic.com/"
aliases: ["claude"]
version: "1.0.0"
license: "https://www.anthropic.com/legal/consumer-terms"
badInDark: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/astro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ tags: [
website: "https://astro.build/"
aliases: []
version: "1.0.0"
license: "https://github.com/withastro/astro/blob/main/LICENSE"
brandGuidelines: "https://astro.build/press/"
badInDark: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ tags: [
]
website: "https://aws.amazon.com/"
version: "1.0.0"
license: "https://aws.amazon.com/service-terms/"
brandGuidelines: "https://aws.amazon.com/trademark-guidelines/"
popular: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/bun.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ tags: [
]
website: "https://bun.sh/"
version: "1.0.0"
license: "https://github.com/oven-sh/bun/blob/main/LICENSE.md"
brandGuidelines: "https://bun.sh/press"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/chrome.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ recommended: true
tags: ["browser", "google"]
aliases: ["google-chrome"]
version: "1.0.0"
license: "https://www.google.com/chrome/terms/"
brandGuidelines: "https://www.google.com/permissions/logos-trademarks/"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/claude-code.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ featured: true
tags: ["ai", "coding-assistant", "cli", "anthropic", "terminal", "agent"]
website: "https://docs.anthropic.com/en/docs/claude-code"
version: "1.0.0"
license: "https://github.com/anthropics/claude-code/blob/main/LICENSE.md"
popular: true
recommended: true
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/claude.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ recommended: true
popular: true
tags: ["ai", "assistant", "anthropic", "chatbot", "language-model"]
version: "1.0.0"
license: "https://www.anthropic.com/legal/consumer-terms"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/clickhouse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["database", "analytics", "column-oriented", "big-data", "open-source"]
website: "https://clickhouse.com/"
aliases: ["ch"]
version: "1.0.0"
license: "https://github.com/ClickHouse/ClickHouse/blob/master/LICENSE"
brandGuidelines: "https://clickhouse.com/legal/trademark-policy"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/cloudflare.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["cdn", "security", "dns", "web-performance", "ddos-protection", "cloud"]
website: "https://www.cloudflare.com/"
aliases: ["cf"]
version: "1.0.0"
license: "https://www.cloudflare.com/website-terms/"
brandGuidelines: "https://www.cloudflare.com/trademark/"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/css.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ tags: ["frontend", "web-development", "styling"]
website: "https://www.w3.org/Style/CSS/"
aliases: []
version: "1.0.0"
license: "https://www.w3.org/Consortium/Legal/copyright-software"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/cursor.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ tags: ["editor", "ide", "ai", "developer-tools"]
website: "https://cursor.com/"
aliases: []
version: "1.0.0"
license: "https://cursor.com/terms-of-service"
badInDark: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/datadog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["monitoring", "observability", "devops", "cloud", "analytics"]
website: "https://datadoghq.com"
aliases: ["dd"]
version: "1.0.0"
license: "https://www.datadoghq.com/legal/terms/"
brandGuidelines: "https://www.datadoghq.com/about/resources/"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/deepseek.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ popular: true
tags: ["ai", "llm", "machine-learning", "open-source", "research"]
website: "https://www.deepseek.com/"
version: "1.0.0"
license: "https://github.com/deepseek-ai/DeepSeek-V3/blob/main/LICENSE-MODEL"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/discord.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["communication", "chat", "community", "voice-chat"]
website: "https://discord.com"
aliases: []
version: "1.0.0"
license: "https://discord.com/terms"
brandGuidelines: "https://discord.com/branding"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ tags: ["containerization", "devops", "infrastructure", "cloud"]
website: "https://docker.com"
aliases: []
version: "1.0.0"
license: "https://www.docker.com/legal/docker-terms-service/"
brandGuidelines: "https://www.docker.com/company/newsroom/media-resources/"
popular: true
recommended: true
---
Expand Down
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/elixir.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["programming-language", "functional", "backend", "erlang"]
website: "https://elixir-lang.org"
aliases: []
version: "1.0.0"
license: "https://github.com/elixir-lang/elixir/blob/main/LICENSE"
brandGuidelines: "https://elixir-lang.org/trademarks.html"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/ffmpeg.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ recommended: true
tags: ["multimedia", "video-processing", "audio-processing", "encoding"]
website: "https://ffmpeg.org"
version: "1.0.0"
license: "https://www.ffmpeg.org/legal.html"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/figma.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ popular: true
tags: ["design", "ui", "ux", "prototyping", "collaboration"]
website: "https://figma.com"
version: "1.0.0"
license: "https://www.figma.com/legal/tos/"
brandGuidelines: "https://www.figma.com/using-the-figma-brand/"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/firefox.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ recommended: true
tags: ["browser", "web", "mozilla", "privacy", "open-source"]
website: "https://blog.mozilla.org/opendesign/firefox-the-evolution-of-a-brand/"
version: "1.0.0"
license: "https://www.mozilla.org/en-US/about/legal/terms/firefox/"
brandGuidelines: "https://www.mozilla.org/en-US/foundation/trademarks/list/"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/git.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ aliases: []
icons: [git-icon, git]
tags: ["version-control", "scm", "development", "open-source"]
version: "1.0.0"
license: "https://github.com/git/git/blob/master/COPYING"
brandGuidelines: "https://git-scm.com/downloads/logos"
popular: true
recommended: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/github-copilot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ recommended: true
tags: ["ai", "code-assistant", "github", "developer-tools", "machine-learning"]
website: "https://copilot.github.com"
version: "1.0.0"
license: "https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features"
brandGuidelines: "https://github.com/logos"
badInDark: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/github.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ icons: [github-icon, github]
tags: ["version-control", "git", "collaboration", "open-source", "development"]
website: "https://github.com"
version: "1.0.0"
license: "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service"
brandGuidelines: "https://github.com/logos"
popular: true
recommended: true
badInDark: true
Expand Down
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ icons: [go]
tags: ["programming-language", "golang", "backend", "concurrent", "google"]
website: "https://go.dev"
version: "1.0.0"
license: "https://github.com/golang/go/blob/master/LICENSE"
brandGuidelines: "https://go.dev/brand"
popular: true
recommended: true
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/google-gemini.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ recommended: true
tags: ["ai", "language-model", "google", "artificial-intelligence", "nlp"]
website: "https://gemini.google.com"
version: "1.0.0"
license: "https://policies.google.com/terms"
brandGuidelines: "https://www.google.com/permissions/logos-trademarks/"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/hugging-face.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["machine-learning", "ai", "nlp", "open-source"]
website: "https://huggingface.co"
aliases: ["hf"]
version: "1.0.0"
license: "https://huggingface.co/terms-of-service"
brandGuidelines: "https://huggingface.co/brand"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/java.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ tags: ["programming-language", "backend", "jvm"]
website: "https://www.java.com"
aliases: []
version: "1.0.0"
license: "https://www.oracle.com/legal/terms.html"
brandGuidelines: "https://www.oracle.com/legal/trademarks.html"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/javascript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ tags: ["programming-language", "frontend", "backend", "scripting"]
website: "https://www.javascript.com"
aliases: ["js"]
version: "1.0.0"
license: "https://www.ecma-international.org/policies/by-ipr/ecma-text-copyright-policy/"
popular: true
recommended: true
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/jest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ tags: ["testing", "javascript", "frontend"]
website: "https://jestjs.io/"
aliases: []
version: "1.0.0"
license: "https://github.com/jestjs/jest/blob/main/LICENSE"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/kotlin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ popular: true
recommended: true
tags: ["programming-language", "jvm", "android", "jetbrains", "java"]
website: "https://kotlinlang.org/"
license: "https://github.com/JetBrains/kotlin/blob/master/license/LICENSE.txt"
brandGuidelines: "https://kotlinlang.org/foundation/guidelines.html"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ icons: [kubernetes]
tags: ["container", "orchestration", "devops", "cloud-native", "docker"]
website: "https://kubernetes.io/"
version: "1.0.0"
license: "https://github.com/kubernetes/kubernetes/blob/master/LICENSE"
brandGuidelines: "https://www.linuxfoundation.org/legal/trademark-usage"
popular: true
recommended: true
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/langchain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ popular: true
tags: ["ai", "llm", "framework", "python", "javascript", "agents"]
website: "https://www.langchain.com/"
version: "1.0.0"
license: "https://github.com/langchain-ai/langchain/blob/master/LICENSE"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/laravel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ recommended: true
tags: ["php", "web-framework", "backend", "mvc", "eloquent"]
website: "https://laravel.com/"
version: "1.0.0"
license: "https://github.com/laravel/framework/blob/12.x/LICENSE.md"
brandGuidelines: "https://laravel.com/legal/trademark"
---
1 change: 1 addition & 0 deletions apps/website/src/content/icons/mistral-ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ tags: ["ai", "machine-learning", "language-model", "artificial-intelligence", "n
website: "https://mistral.ai/"
aliases: ["mistral ai"]
version: "1.0.0"
license: "https://mistral.ai/terms"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/mongodb.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ recommended: true
tags: ["database", "nosql", "document-database", "json", "backend"]
website: "https://www.mongodb.com/"
version: "1.0.0"
license: "https://www.mongodb.com/legal/terms-of-use"
brandGuidelines: "https://www.mongodb.com/legal/trademark-usage-guidelines"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/mysql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ recommended: true
tags: ["database", "sql", "rdbms", "oracle"]
website: "https://www.mysql.com/"
version: "1.0.0"
license: "https://github.com/mysql/mysql-server/blob/trunk/LICENSE"
brandGuidelines: "https://www.oracle.com/legal/trademarks.html"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/netlify.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ recommended: true
tags: ["hosting", "deployment", "jamstack", "cloud", "ci-cd"]
website: "https://www.netlify.com/"
version: "1.0.0"
license: "https://www.netlify.com/legal/terms-of-use/"
brandGuidelines: "https://www.netlify.com/press/"
---
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/nextjs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ icons: [nextjs-icon, nextjs]
tags: ["react", "framework", "ssr", "frontend", "vercel", "fullstack"]
website: "https://nextjs.org/"
version: "1.0.0"
license: "https://github.com/vercel/next.js/blob/canary/license.md"
brandGuidelines: "https://vercel.com/design/brands"
popular: true
recommended: true
badInDark: true
Expand Down
2 changes: 2 additions & 0 deletions apps/website/src/content/icons/nodejs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ icons: [nodejs-icon, nodejs]
tags: ["javascript", "runtime", "server", "backend", "v8"]
website: "https://nodejs.org/"
version: "1.0.0"
license: "https://github.com/nodejs/node/blob/main/LICENSE"
brandGuidelines: "https://nodejs.org/en/about/branding/"
popular: true
recommended: true
---
22 changes: 22 additions & 0 deletions apps/website/src/layouts/Icon.astro
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,28 @@ const related = await getRelatedIcons(slug, tags, 8);
</a>
)
}
{
license && (
<a
href={license}
target="_blank"
rel="noopener noreferrer"
class="font-mono text-xs font-semibold uppercase tracking-caps leading-none text-accent hover:text-accent-hover transition-colors">
License
</a>
)
}
{
brandGuidelines && (
<a
href={brandGuidelines}
target="_blank"
rel="noopener noreferrer"
class="font-mono text-xs font-semibold uppercase tracking-caps leading-none text-accent hover:text-accent-hover transition-colors">
Brand
</a>
)
}
{
colorChips.map(({ hex, label }) => {
const bucket = bucketForHex(hex);
Expand Down
Loading