From 6c8efe9fb723db415fdd0668a4bedeca5507875e Mon Sep 17 00:00:00 2001 From: Daniel Afonso Date: Mon, 9 Feb 2026 17:53:42 +0100 Subject: [PATCH] feat: add solid to framework list --- app/utils/frameworks.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/utils/frameworks.ts b/app/utils/frameworks.ts index cdfa8c6863..35cacca99b 100644 --- a/app/utils/frameworks.ts +++ b/app/utils/frameworks.ts @@ -51,6 +51,11 @@ export const SHOWCASED_FRAMEWORKS = [ package: '@angular/core', color: 'oklch(0.626 0.2663 310.4)', }, + { + name: 'solid', + package: 'solid-js', + color: 'oklch(0.4237 0.0857 255.45)', + }, ] export type FrameworkPackageName = (typeof SHOWCASED_FRAMEWORKS)[number]['package']