Skip to content

Commit d3b7ac2

Browse files
author
Nabarun
committed
Code refactor by prettier
1 parent b5b2a94 commit d3b7ac2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

components/Card.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ function Card({ repo }: Props) {
3737
</h2>
3838
</div>
3939

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

4244
<div className="card-actions gap-y-3">
4345
{repo.topics.map((topic: string) => (
@@ -86,7 +88,9 @@ function Card({ repo }: Props) {
8688
>
8789
<GoRepoForked className="text-yellow-200 text-2xl" />
8890
<div className="flex flex-col">
89-
<div className="text-lg xl:text-2xl font-semibold mb-0.5">{repo.forks}</div>
91+
<div className="text-lg xl:text-2xl font-semibold mb-0.5">
92+
{repo.forks}
93+
</div>
9094
<div className="text-neutral-300 text-xs lg:text-sm">Forks</div>
9195
</div>
9296
<div

0 commit comments

Comments
 (0)