File tree Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export function Hero() {
27
27
< div className = "w-0 hero-overlay bg-opacity-60" > </ div >
28
28
< div className = "text-center hero-content" >
29
29
< div className = "max-w-md" >
30
- < h1 className = "mb-5 text-5xl font-bold uppercase text-2023-manga-3" >
30
+ < h1 className = "mb-5 text-5xl font-medium uppercase text-2023-manga-3" >
31
31
Search your language
32
32
</ h1 >
33
33
< form
@@ -51,7 +51,7 @@ export function Hero() {
51
51
</ button >
52
52
</ div >
53
53
</ form >
54
- < p className = "mb-5 font-semibold uppercase text-2023-manga-3" >
54
+ < p className = "mb-5 font-medium uppercase text-2023-manga-3" >
55
55
Or select the programming language you would like to find
56
56
repositories for.
57
57
</ p >
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export function ContributorCard({ contributor }: ContributorCardProps) {
51
51
</ figure >
52
52
</ div >
53
53
< div className = "w-full gap-3 text-center card-body" >
54
- < h2 className = "text-2xl font-bold text-center text-2023-bavarian-blue-1" >
54
+ < h2 className = "text-2xl font-medium text-center text-2023-bavarian-blue-1" >
55
55
{ contributor . name }
56
56
</ h2 >
57
57
< a
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default async function ContributorsPage() {
18
18
< div >
19
19
< Header />
20
20
< div className = "container mx-auto mb-5" >
21
- < h1 className = "my-5 text-5xl font-bold text-center text-neutral-100" >
21
+ < h1 className = "my-5 text-5xl font-medium text-center text-neutral-100" >
22
22
Contributors ✨
23
23
</ h1 >
24
24
< div className = "grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-4" >
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export function RepoCard({ repo }: RepoCardProps) {
76
76
>
77
77
< GoStar className = "text-2xl text-yellow-200" />
78
78
< div className = "flex flex-col" >
79
- < div className = "text-lg xl:text-2xl font-semibold mb-0.5" >
79
+ < div className = "text-lg xl:text-2xl font-medium mb-0.5" >
80
80
{ repo . stargazers_count }
81
81
</ div >
82
82
< div className = "text-xs text-neutral-300 lg:text-sm" > Stars</ div >
@@ -95,7 +95,7 @@ export function RepoCard({ repo }: RepoCardProps) {
95
95
>
96
96
< GoRepoForked className = "text-2xl text-yellow-200" />
97
97
< div className = "flex flex-col" >
98
- < div className = "text-lg xl:text-2xl font-semibold mb-0.5" >
98
+ < div className = "text-lg xl:text-2xl font-medium mb-0.5" >
99
99
{ repo . forks }
100
100
</ div >
101
101
< div className = "text-xs text-neutral-300 lg:text-sm" > Forks</ div >
@@ -114,7 +114,7 @@ export function RepoCard({ repo }: RepoCardProps) {
114
114
>
115
115
< GoIssueOpened className = "text-2xl text-yellow-200" />
116
116
< div className = "flex flex-col" >
117
- < div className = "text-lg xl:text-2xl font-semibold mb-0.5" >
117
+ < div className = "text-lg xl:text-2xl font-medium mb-0.5" >
118
118
{ repo . open_issues_count }
119
119
</ div >
120
120
< div className = "text-xs text-neutral-300 lg:text-sm" > Issues</ div >
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export default async function ReposPage({
32
32
< div className = "min-h-screen pt-5" >
33
33
< div className = "text-center" >
34
34
< div className = "w-5/6 max-w-md mx-auto" >
35
- < h1 className = "mb-5 text-5xl font-bold uppercase text-neutral-100" >
35
+ < h1 className = "mb-5 text-5xl font-medium uppercase text-neutral-100" >
36
36
{ repos . total_count } repositories for{ ' ' }
37
37
< span className = "font-mono text-2023-bavarian-gold-2" >
38
38
{ searchParams . q
Original file line number Diff line number Diff line change 1
1
import '@/styles/globals.css' ;
2
2
import type { Metadata , Viewport } from 'next' ;
3
- import { Poppins } from 'next/font/google' ;
3
+ import { Space_Grotesk } from 'next/font/google' ;
4
4
import { Toaster } from 'react-hot-toast' ;
5
5
import { SessionProvider } from 'next-auth/react' ;
6
6
import { Footer } from '@/components/footer' ;
7
7
import { ReportModal } from '@/components/report-modal' ;
8
8
9
- const poppins = Poppins ( {
9
+ const spaceGrotesk = Space_Grotesk ( {
10
10
subsets : [ 'latin' ] ,
11
- weight : ' 500',
11
+ weight : [ '400' , ' 500'] ,
12
12
display : 'swap' ,
13
- variable : '--font-poppins '
13
+ variable : '--font-space-grotesk '
14
14
} ) ;
15
15
16
16
export default function RootLayout ( { children } : React . PropsWithChildren ) {
17
17
return (
18
- < html className = { poppins . variable } >
19
- < body className = "font-sans" >
18
+ < html className = { spaceGrotesk . variable } >
19
+ < body className = "font-sans font-normal " >
20
20
{ children }
21
21
< Footer />
22
22
< SessionProvider >
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export function ReportModal() {
59
59
return (
60
60
< dialog id = "modal" className = "modal modal-bottom sm:modal-middle" >
61
61
< div className = "w-full max-w-2xl modal-box md:w-11/12" >
62
- < h3 className = "block mb-2 text-2xl font-bold text-center text-2023-manga-2" >
62
+ < h3 className = "block mb-2 text-2xl font-medium text-center text-2023-manga-2" >
63
63
Report This Repository
64
64
</ h3 >
65
65
{ session . data ? (
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const config = {
9
9
theme : {
10
10
extend : {
11
11
fontFamily : {
12
- sans : [ 'var(--font-poppins )' , 'ui-sans-serif' , 'system-ui' ]
12
+ sans : [ 'var(--font-space-grotesk )' , 'ui-sans-serif' , 'system-ui' ]
13
13
} ,
14
14
backgroundImage : {
15
15
'gradient-radial' :
You can’t perform that action at this time.
0 commit comments