Update src/app/page.tsx

This commit is contained in:
2026-02-10 05:06:45 +00:00
parent bc60a5ec07
commit 31d4011b15

View File

@@ -113,12 +113,12 @@ export default function LandingPage() {
<div className="brand-scroll-container w-full overflow-x-hidden"> <div className="brand-scroll-container w-full overflow-x-hidden">
<div className="flex gap-8 md:gap-12 whitespace-nowrap"> <div className="flex gap-8 md:gap-12 whitespace-nowrap">
{brands.map((brand, index) => ( {brands.map((brand, index) => (
<div key={`${index}-1`} className="brand-item flex items-center justify-center h-12 min-w-max px-4 text-foreground/60 font-medium text-sm flex-shrink-0"> <div key={`${index}-1`} className="brand-item flex items-center justify-center h-12 min-w-max px-4 py-2 text-foreground/60 font-medium text-sm flex-shrink-0 rounded-theme border border-card bg-card/40 backdrop-blur-sm">
{brand} {brand}
</div> </div>
))} ))}
{brands.map((brand, index) => ( {brands.map((brand, index) => (
<div key={`${index}-2`} className="brand-item flex items-center justify-center h-12 min-w-max px-4 text-foreground/60 font-medium text-sm flex-shrink-0"> <div key={`${index}-2`} className="brand-item flex items-center justify-center h-12 min-w-max px-4 py-2 text-foreground/60 font-medium text-sm flex-shrink-0 rounded-theme border border-card bg-card/40 backdrop-blur-sm">
{brand} {brand}
</div> </div>
))} ))}