1
1
import React from "react" ;
2
+ import { cn } from "@/utils/classes" ;
2
3
import { FramerLogo } from "@/assets/images/brands/framer" ;
3
4
import { NextjsLogo } from "@/assets/images/brands/nextjs" ;
4
5
import { ShadcnLogo } from "@/assets/images/brands/shadcn" ;
@@ -7,27 +8,22 @@ import { UseHooksLogo } from "@/assets/images/brands/usehooks";
7
8
8
9
export const Brands = ( { className } : { className ?: string } ) => {
9
10
return (
10
- < div className = { className } >
11
- { /* <h2 className="text-center text-lg font-semibold text-muted-foreground/70">
12
- We use the latest technologies.
13
- </h2> */ }
14
- < div className = "mt-4 flex items-center justify-center space-x-8" >
15
- < TailwindLogo height = { 30 } className = "fill-muted-foreground" />
16
- < NextjsLogo height = { 25 } className = "fill-muted-foreground" />
17
- < div className = "flex items-center space-x-3" >
18
- < FramerLogo height = { 30 } className = "fill-muted-foreground" />
19
- < span className = "font-display text-2xl font-bold tracking-tighter text-muted-foreground" >
20
- Motion
21
- </ span >
22
- </ div >
23
- < div className = "flex items-center space-x-2" >
24
- < ShadcnLogo height = { 30 } className = "fill-muted-foreground" />
25
- < span className = "font-sans text-3xl font-bold text-muted-foreground" >
26
- shadcn/ui
27
- </ span >
28
- </ div >
29
- < UseHooksLogo height = { 25 } className = "fill-muted-foreground" />
11
+ < div className = { cn ( "flex flex-wrap items-center justify-center gap-8 " , className ) } >
12
+ < TailwindLogo className = "h-6 fill-muted-foreground md:h-8" />
13
+ < NextjsLogo className = "h-5 fill-muted-foreground md:h-7" />
14
+ < div className = "flex items-center space-x-3" >
15
+ < FramerLogo className = "h-6 fill-muted-foreground md:h-8" />
16
+ < span className = "font-display text-2xl font-bold tracking-tighter text-muted-foreground" >
17
+ Motion
18
+ </ span >
30
19
</ div >
20
+ < div className = "flex items-center space-x-2" >
21
+ < ShadcnLogo className = "h-6 fill-muted-foreground md:h-8" />
22
+ < span className = "font-sans text-3xl font-bold text-muted-foreground" >
23
+ shadcn/ui
24
+ </ span >
25
+ </ div >
26
+ < UseHooksLogo className = "h-5 fill-muted-foreground md:h-7" />
31
27
</ div >
32
28
) ;
33
29
} ;
0 commit comments