diff --git a/components/Hero.tsx b/components/Hero.tsx index 51bcd9b..c47224f 100644 --- a/components/Hero.tsx +++ b/components/Hero.tsx @@ -96,131 +96,100 @@ export function Hero() { Jump in with a ready-made stack template, explore the full wizard, or drop a GitHub repo for an automatic scan. - - {featureHighlights.map((feature) => ( - - - {feature} - - ))} - + -
-
+
+

Start fast with popular stacks

- -
-
- {popularStacks.map((stack) => { - const descriptor = getIconDescriptor(stack.icon ?? stack.value) - const iconHex = descriptor ? iconColorOverrides[descriptor.slug] ?? descriptor.hex : undefined - const iconColor = iconHex ? getAccessibleIconColor(iconHex) : undefined - const iconBackground = iconColor ? hexToRgba(iconColor, 0.18) ?? undefined : undefined - const iconRing = iconColor ? hexToRgba(iconColor, 0.32) ?? undefined : undefined - const initials = getFallbackInitials(stack.label) - - return ( - - ) - })} + + {descriptor ? ( + + ) : ( + + {initials} + + )} + + + {stack.label} + + + + ) + })} + + +
-
-
-
- - or - -
+
+
+

+ Scan a GitHub repository +

+

+ Paste an owner/repo or URL and we'll prefill the wizard with detected tech and tooling. +

+
+
+ setGithubRepo(event.target.value)} + placeholder="github.com/owner/repo" + className="w-full rounded-xl border border-border/70 bg-background px-4 py-2 text-sm text-foreground shadow-sm transition focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/60 sm:min-w-[260px]" + /> + +
+
- -
-
-

- Scan a GitHub repository -

-

- Paste an owner/repo or URL and we'll prefill the wizard with detected tech and tooling. -

-
-
- setGithubRepo(event.target.value)} - placeholder="github.com/owner/repo" - className="w-full rounded-xl border border-border/70 bg-background px-4 py-2 text-sm text-foreground shadow-sm transition focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/60 sm:min-w-[260px]" - /> - -
-