@@ -12,7 +12,7 @@ export type Project = {
12
12
link : string ;
13
13
} ;
14
14
15
- const ALL_LANGS = "All" ;
15
+ export const ALL_LANGS = "All" ;
16
16
17
17
type Props = {
18
18
projects : Project [ ] ; // get 6 projects
@@ -45,22 +45,24 @@ export default function RepositoriesSection({ projects }: Props) {
45
45
} , [ projects , searchTerm , selectedLanguage ] ) ;
46
46
47
47
return (
48
- < section className = "border-brand-green-5 border-y px-5 pb-16 pt-5" >
49
- < h2 className = "text-brand-gray-8 text- center text-[28px]/8 font-semibold md:text-[32px]/[38px]" >
48
+ < section className = "border-y border- brand-green-5 px-5 pb-16 pt-5" >
49
+ < h2 className = "text-center text-[28px]/8 font-semibold text-brand-gray-8 md:text-[32px]/[38px]" >
50
50
Access the largest directory of open-source projects
51
51
</ h2 >
52
- < p className = "text-sm/base text-brand-gray-1/80 mt-[10px] text-center" >
52
+ < p className = "text-sm/base mt-[10px] text-center text-brand-gray-1/80 " >
53
53
Use advanced filters to find a project you love and make your first
54
54
commit message.
55
55
</ p >
56
56
57
- < div className = "border-brand-green-5 bg-brand-1/20 mx-auto mt-[30px] w-full rounded-[12px] border px-5 py-10 lg:max-w-[1256px] lg:px-6 lg:py-[55px]" >
57
+ < div className = "mx-auto mt-[30px] w-full rounded-[12px] border border-brand-green-5 bg-brand-1/20 px-5 py-10 lg:max-w-[1256px] lg:px-6 lg:py-[55px]" >
58
58
< div className = "mx-auto max-w-[1030px]" >
59
- < div className = "border-brand-green-1/80 bg-brand-gray-3/15 mx-auto flex w-full max-w-[690px] items-center gap-3 rounded-[12px] border px-5 py-4 md:px-6" >
59
+ < div className = "mx-auto flex w-full max-w-[690px] items-center gap-3 rounded-[12px] border border-brand-green-1/80 bg-brand-gray-3/15 px-5 py-4 md:px-6" >
60
60
< CustomIcons . search className = "size-4 shrink-0" />
61
61
< input
62
62
type = "text"
63
- className = "text-brand-gray-2 flex-1 bg-transparent text-sm/[18px] focus:outline-none"
63
+ name = "project-search"
64
+ data-testid = "project-search"
65
+ className = "flex-1 bg-transparent text-sm/[18px] text-brand-gray-2 focus:outline-none"
64
66
placeholder = "Search project"
65
67
onChange = { ( e ) => {
66
68
const value = e . target . value . trim ( ) ;
@@ -76,8 +78,9 @@ export default function RepositoriesSection({ projects }: Props) {
76
78
{ filterLanguages . map ( ( lang ) => (
77
79
< button
78
80
key = { lang }
81
+ data-testid = { `btn-filter-${ lang } ` }
79
82
className = { cn (
80
- "min-w-[40px] shrink-0 whitespace-nowrap rounded-full border px-2.5 py-1 font-ff-poppins text-sm text-white" ,
83
+ "btn-filter min-w-[40px] shrink-0 whitespace-nowrap rounded-full border px-2.5 py-1 font-ff-poppins text-sm text-white" ,
81
84
lang === selectedLanguage
82
85
? "border-brand-green-2/80 bg-brand-gray-7"
83
86
: "border-brand-gray-9/80" ,
@@ -97,27 +100,28 @@ export default function RepositoriesSection({ projects }: Props) {
97
100
{ searchedProjects . map ( ( project , index ) => (
98
101
< div
99
102
key = { index }
100
- className = "border-brand-green-5/80 bg-brand-gray-4/[.53] relative isolate overflow-hidden rounded-[12px] border px-4 pb-5 pt-7"
103
+ className = "project relative isolate overflow-hidden rounded-[12px] border border -brand-green-5/80 bg-brand-gray-4/[.53] px-4 pb-5 pt-7"
101
104
>
102
105
< CustomIcons . ossIcon className = "absolute right-0 top-0 -z-[1]" />
103
106
< div className = "flex justify-end" >
104
- < span className = "border-brand-gray-9/80 rounded-full border px-2.5 py-1 font-ff-poppins text-sm text-white" >
107
+ < span className = "rounded-full border border -brand-gray-9/80 px-2.5 py-1 font-ff-poppins text-sm text-white" >
105
108
{ project . issuesCount } Issues
106
109
</ span >
107
110
</ div >
108
111
< div className = "mb-5 mt-[105px] space-y-2" >
109
- < p className = "text-brand-gray-5 text- lg/[21px] font-semibold" >
112
+ < p className = "text-lg/[21px] font-semibold text-brand-gray-5 " >
110
113
{ project . repository }
111
114
</ p >
112
115
< p className = "text-sm/4 text-white" > { project . description } </ p >
113
- < p className = "text-brand-gray-6 text-sm/4 " >
116
+ < p className = "text-sm/4 text- brand-gray-6" >
114
117
Lang: { project . languages . join ( ", " ) }
115
118
</ p >
116
119
</ div >
117
120
118
121
< Link
119
122
to = { project . link }
120
- className = "border-brand-green-3 bg-brand-green-4 block w-max rounded-[30px] border px-4 py-2"
123
+ data-testid = { "learn-more-link" }
124
+ className = "block w-max rounded-[30px] border border-brand-green-3 bg-brand-green-4 px-4 py-2"
121
125
>
122
126
Learn more
123
127
</ Link >
0 commit comments