Skip to content

Commit 42e3270

Browse files
Merge branch 'main' into main
2 parents f0e85da + 3d08303 commit 42e3270

File tree

5 files changed

+36
-34
lines changed

5 files changed

+36
-34
lines changed

.all-contributorsrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,16 @@
352352
"contributions": [
353353
"code"
354354
]
355+
},
356+
{
357+
"login": "nidble",
358+
"name": "Antonino Bertulla",
359+
"avatar_url": "https://avatars.githubusercontent.com/u/1447119?v=4",
360+
"profile": "https://dev.to/nidble/",
361+
"contributions": [
362+
"code",
363+
"design"
364+
]
355365
}
356366
],
357367
"contributorsPerLine": 7,

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A Web app that lets you find eligible repositories for Hacktoberfest!
66
Use it here - https://finder.usmans.me
77

88
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
9-
[![All Contributors](https://img.shields.io/badge/all_contributors-36-orange.svg?style=flat-square)](#contributors-)
9+
[![All Contributors](https://img.shields.io/badge/all_contributors-37-orange.svg?style=flat-square)](#contributors-)
1010
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1111
<a href="https://gitmoji.dev">
1212
<img src="https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=flat-square" alt="Gitmoji">
@@ -122,6 +122,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
122122
</tr>
123123
<tr>
124124
<td align="center" valign="top" width="14.28%"><a href="https://maitri-vv.github.io/Maitri-sPortfolio/"><img src="https://avatars.githubusercontent.com/u/87691594?v=4?s=100" width="100px;" alt="maitri-vv"/><br /><sub><b>maitri-vv</b></sub></a><br /><a href="https://github.com/max-programming/hacktoberfest-projects/commits?author=maitri-vv" title="Code">💻</a></td>
125+
<td align="center" valign="top" width="14.28%"><a href="https://dev.to/nidble/"><img src="https://avatars.githubusercontent.com/u/1447119?v=4?s=100" width="100px;" alt="Antonino Bertulla"/><br /><sub><b>Antonino Bertulla</b></sub></a><br /><a href="https://github.com/max-programming/hacktoberfest-projects/commits?author=nidble" title="Code">💻</a> <a href="#design-nidble" title="Design">🎨</a></td>
125126
</tr>
126127
</tbody>
127128
</table>

components/Card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function Card({ repo }: Props) {
3737
</h2>
3838
</div>
3939

40-
<h6 className="my-5 text-lg">{emojify(repo.description)}</h6>
40+
<h6 className="my-5 text-2023-manga-2 text-lg">{emojify(repo.description)}</h6>
4141

4242
<div className="card-actions gap-y-3">
4343
{repo.topics.map((topic: string) => (

components/Hero.tsx

Lines changed: 22 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,30 @@ function Hero() {
3232
<div className="text-center hero-content">
3333
<div className="max-w-md">
3434
<h1 className="mb-5 text-2023-manga-3 text-5xl font-bold uppercase">
35-
Select your language
35+
Search your language
3636
</h1>
37+
<form
38+
className="form-control w-full max-w-xs mx-auto items-center mt-10 mb-12"
39+
onSubmit={handleSubmit}
40+
>
41+
<div className="flex w-full">
42+
<input
43+
type="text"
44+
placeholder="Search for your language"
45+
className="input input-bordered w-full text-neutral-100 border-2023-bavarian-gold-2 focus:outline-2023-bavarian-gold-2 max-w-xs rounded-tr-none rounded-br-none bg-transparent"
46+
name="search"
47+
/>
48+
<button
49+
type="submit"
50+
className="btn btn-square rounded-tl-none rounded-bl-none bg-transparent border-2023-manga-3 hover:bg-2023-manga-2 hover:text-2023-void-2 hover:border-2023-manga-2"
51+
>
52+
<SearchIcon />
53+
</button>
54+
</div>
55+
</form>
3756
<p className="mb-5 text-2023-manga-3 font-semibold uppercase">
38-
Select the programming language you would like to find repositories
39-
for.
57+
Or select the programming language you would like to find
58+
repositories for.
4059
</p>
4160

4261
{mainLanguages.map(language => (
@@ -61,34 +80,6 @@ function Hero() {
6180
))}
6281
</ul>
6382
</div>
64-
<form
65-
className="form-control w-full max-w-xs mx-auto items-center"
66-
onSubmit={handleSubmit}
67-
>
68-
<label className="label">
69-
<span className="label-text text-2023-manga-3">Can&apos;t find your language?</span>
70-
</label>
71-
<div className="flex">
72-
<input
73-
type="text"
74-
placeholder="Search for your language"
75-
className="input input-bordered w-full text-neutral-100 border-2023-bavarian-gold-2 focus:outline-2023-bavarian-gold-2 max-w-xs rounded-tr-none rounded-br-none bg-transparent"
76-
name="search"
77-
autoComplete="off"
78-
/>
79-
<button
80-
type="submit"
81-
className="btn btn-square rounded-tl-none rounded-bl-none bg-transparent border-2023-manga-3 hover:bg-2023-manga-2 hover:text-2023-void-2 hover:border-2023-manga-2"
82-
>
83-
<SearchIcon />
84-
</button>
85-
</div>
86-
</form>
87-
{errorMessage && (
88-
<div
89-
className="text-red-500 animate-pulse"
90-
>
91-
{errorMessage}</div>)}
9283
{/* <a href="https://github.com/max-programming/hacktoberfest-projects/">
9384
<button className="m-2 border-0 hover:bg-primary-2 hover:text-black btn btn-lg">
9485
Add another language

components/StarsFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default function StarsFilter() {
7575
control={control}
7676
/>
7777

78-
<button className="btn btn-ghost ml-2 ring-1 ring-2023-manga-2" type="submit">
78+
<button className="btn btn-ghost ml-2 text-2023-manga-2 ring-1 ring-2023-manga-2" type="submit">
7979
Search
8080
</button>
8181
</div>

0 commit comments

Comments
 (0)