diff --git a/apps/app/src/components/custom-ui/hero-3d.tsx b/apps/app/src/components/custom-ui/hero-3d.tsx index 2ba51bf..562f016 100644 --- a/apps/app/src/components/custom-ui/hero-3d.tsx +++ b/apps/app/src/components/custom-ui/hero-3d.tsx @@ -7,6 +7,7 @@ import { Button } from "@/components/ui/button" import { cn } from "@/lib/utils" import HighlighterText from "./highlighter-text" import Logo3D from "./logo-3d" +import { ArrowUpRight } from "lucide-react" import { motion, useReducedMotion, @@ -83,22 +84,32 @@ const renderLogo = (logo: typeof SUPPORTED_BY_LOGOS[number], index?: number) => >
-
+ +
+ + {`${logo.name} - -
- SUPPORTED BY - - {/* Desktop: flex-wrap layout */} -
- {SUPPORTED_BY_LOGOS.map((logo) => renderLogo(logo))} -
+ +
+ BACKED BY + + {/* Desktop: grid layout - equal width logos */} +
+ {SUPPORTED_BY_LOGOS.map((logo) => renderLogo(logo))}
- - {/* Mobile: auto-scrolling carousel - full width to edge */} -
-
- {duplicatedLogos.map((logo, index) => renderLogo(logo, index))} + {/* Mobile: grid layout - 2 columns, Colosseum spans full width */} +
+ {SUPPORTED_BY_LOGOS.map((logo, index) => ( +
+ {renderLogo(logo)} +
+ ))}
- + ) }