Skip to content

Commit 76278fc

Browse files
Merge branch 'main' into main
2 parents ae5282e + 8536687 commit 76278fc

13 files changed

+27
-6
lines changed

.all-contributorsrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,26 @@
362362
"code",
363363
"design"
364364
]
365+
},
366+
{
367+
"login": "Mohit030802",
368+
"name": "Mohit",
369+
"avatar_url": "https://avatars.githubusercontent.com/u/80634689?v=4",
370+
"profile": "https://bright-ganache-eb99ae.netlify.app/",
371+
"contributions": [
372+
"code",
373+
"ideas"
374+
]
375+
},
376+
{
377+
"login": "tmsagarofficial",
378+
"name": "S A G A R",
379+
"avatar_url": "https://avatars.githubusercontent.com/u/110724849?v=4",
380+
"profile": "https://github.com/tmsagarofficial",
381+
"contributions": [
382+
"ideas",
383+
"code"
384+
]
365385
}
366386
],
367387
"contributorsPerLine": 7,

README.md

Lines changed: 3 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-37-orange.svg?style=flat-square)](#contributors-)
9+
[![All Contributors](https://img.shields.io/badge/all_contributors-39-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">
@@ -123,6 +123,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
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>
125125
<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>
126+
<td align="center" valign="top" width="14.28%"><a href="https://bright-ganache-eb99ae.netlify.app/"><img src="https://avatars.githubusercontent.com/u/80634689?v=4?s=100" width="100px;" alt="Mohit"/><br /><sub><b>Mohit</b></sub></a><br /><a href="https://github.com/max-programming/hacktoberfest-projects/commits?author=Mohit030802" title="Code">💻</a> <a href="#ideas-Mohit030802" title="Ideas, Planning, & Feedback">🤔</a></td>
127+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tmsagarofficial"><img src="https://avatars.githubusercontent.com/u/110724849?v=4?s=100" width="100px;" alt="S A G A R"/><br /><sub><b>S A G A R</b></sub></a><br /><a href="#ideas-tmsagarofficial" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/max-programming/hacktoberfest-projects/commits?author=tmsagarofficial" title="Code">💻</a></td>
126128
</tr>
127129
</tbody>
128130
</table>

components/Search.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ interface FormValues {
66
searchQuery: string;
77
}
88
export interface SearchProps {
9-
searchBarWrapperStyles?: string
9+
searchBarWrapperStyles?: string;
1010
}
1111

1212
export default function Search({ searchBarWrapperStyles }: SearchProps) {
@@ -43,7 +43,7 @@ export default function Search({ searchBarWrapperStyles }: SearchProps) {
4343
type="button"
4444
onClick={() => reset()}
4545
>
46-
<GoX color='white'/>
46+
<GoX color="lightgrey" />
4747
</button>
4848
</div>
4949
</form>

pages/_app.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import '@fontsource/poppins';
99
import '../styles/globals.css';
1010

1111
import type { AppProps } from 'next/app';
12+
import Footer from 'components/Footer';
1213

1314
function MyApp({ Component, pageProps, router }: AppProps) {
1415
return (
@@ -37,6 +38,7 @@ function MyApp({ Component, pageProps, router }: AppProps) {
3738
<DefaultSeo {...SEO} />
3839
<NextNProgress color="#ffd74d" options={{ showSpinner: false }} />
3940
<Component {...pageProps} />
41+
<Footer />
4042
</motion.div>
4143
);
4244
}

pages/contributors.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export default function Contrubutors({ contributors }: Props) {
4444
))}
4545
</div>
4646
</div>
47-
<Footer />
4847
</div>
4948
);
5049
}

pages/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ const Home: NextPage = () => {
2727

2828
<Header />
2929
<Hero />
30-
<Footer />
3130
</div>
3231
);
3332
};
34-
3533
export default Home;

public/android-chrome-192x192.png

-25.3 KB
Loading

public/android-chrome-256x256.png

-44.1 KB
Loading

public/apple-touch-icon.ico

8.48 KB
Binary file not shown.

public/favicon-16x16.ico

-256 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)