File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,16 @@ import Member from './Member'
3
3
4
4
export default function Members ( { users } : { users : User [ ] } ) {
5
5
return (
6
- < div className = "mx-auto max-w-7xl" >
6
+ < div className = "mx-auto max-w-7xl space-y-8 sm:space-y-12" >
7
+ < div className = "space-y-5 sm:mx-auto sm:max-w-xl sm:space-y-4 lg:max-w-5xl" >
8
+ < h2 className = "text-black text-3xl font-extrabold tracking-tight sm:text-4xl" >
9
+ Coderplex Community
10
+ </ h2 >
11
+ < p className = "text-xl text-gray-500" >
12
+ < span className = "text-brand-600 font-bold" > { users . length } </ span > { ' ' }
13
+ people are a part of this amazing community.
14
+ </ p >
15
+ </ div >
7
16
< ul className = "grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-12" >
8
17
{ users . map ( ( user ) => (
9
18
< Member user = { user } key = { user . id } />
You can’t perform that action at this time.
0 commit comments