Skip to content

Commit 3ebfc26

Browse files
authored
Merge branch 'max-programming:main' into OpenIssues
2 parents 1070d1c + 3d08303 commit 3ebfc26

File tree

5 files changed

+36
-29
lines changed

5 files changed

+36
-29
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
@@ -5,7 +5,7 @@ A Web app that lets you find eligible repositories for Hacktoberfest 2022!
55
Use it here - https://finder.usmans.me
66

77
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
8-
[![All Contributors](https://img.shields.io/badge/all_contributors-36-orange.svg?style=flat-square)](#contributors-)
8+
[![All Contributors](https://img.shields.io/badge/all_contributors-37-orange.svg?style=flat-square)](#contributors-)
99
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1010
<a href="https://gitmoji.dev">
1111
<img src="https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=flat-square" alt="Gitmoji">
@@ -121,6 +121,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
121121
</tr>
122122
<tr>
123123
<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>
124+
<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>
124125
</tr>
125126
</tbody>
126127
</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 & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,30 @@ function Hero() {
2323
<div className="text-center hero-content">
2424
<div className="max-w-md">
2525
<h1 className="mb-5 text-2023-manga-3 text-5xl font-bold uppercase">
26-
Select your language
26+
Search your language
2727
</h1>
28+
<form
29+
className="form-control w-full max-w-xs mx-auto items-center mt-10 mb-12"
30+
onSubmit={handleSubmit}
31+
>
32+
<div className="flex w-full">
33+
<input
34+
type="text"
35+
placeholder="Search for your language"
36+
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"
37+
name="search"
38+
/>
39+
<button
40+
type="submit"
41+
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"
42+
>
43+
<SearchIcon />
44+
</button>
45+
</div>
46+
</form>
2847
<p className="mb-5 text-2023-manga-3 font-semibold uppercase">
29-
Select the programming language you would like to find repositories
30-
for.
48+
Or select the programming language you would like to find
49+
repositories for.
3150
</p>
3251

3352
{mainLanguages.map(language => (
@@ -52,29 +71,6 @@ function Hero() {
5271
))}
5372
</ul>
5473
</div>
55-
<form
56-
className="form-control w-full max-w-xs mx-auto items-center"
57-
onSubmit={handleSubmit}
58-
>
59-
<label className="label">
60-
<span className="label-text text-2023-manga-3">Can&apos;t find your language?</span>
61-
</label>
62-
<div className="flex">
63-
<input
64-
type="text"
65-
placeholder="Search for your language"
66-
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"
67-
name="search"
68-
autoComplete="off"
69-
/>
70-
<button
71-
type="submit"
72-
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"
73-
>
74-
<SearchIcon />
75-
</button>
76-
</div>
77-
</form>
7874
{/* <a href="https://github.com/max-programming/hacktoberfest-projects/">
7975
<button className="m-2 border-0 hover:bg-primary-2 hover:text-black btn btn-lg">
8076
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)