Skip to content

Commit 3962ce6

Browse files
committed
fix
1 parent b3ac452 commit 3962ce6

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

client/src/pages/community-highlights.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
ExternalLink,
66
Menu,
77
Moon,
8-
Package,
8+
Blocks,
99
Star,
1010
Sun,
1111
X
@@ -278,7 +278,7 @@ export default function CommunityHighlights() {
278278
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
279279
<div className="flex justify-between items-center h-16">
280280
<Link href="/" className="flex items-center space-x-2">
281-
<Package className="h-8 w-8 text-indigo-600" />
281+
<Blocks className="h-8 w-8 text-indigo-600" />
282282
<span className="text-xl font-bold text-gray-900 dark:text-white">Extensions and Tools</span>
283283
</Link>
284284

@@ -541,8 +541,8 @@ export default function CommunityHighlights() {
541541
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
542542
<div className="text-center">
543543
<div className="flex justify-center items-center space-x-2 mb-4">
544-
<Package className="h-8 w-8 text-indigo-400" />
545-
<span className="text-2xl font-bold">Parse Extensions and Tools</span>
544+
<Blocks className="h-8 w-8 text-indigo-400" />
545+
<span className="text-2xl font-bold">Extensions and Tools</span>
546546
</div>
547547
<p className="text-gray-400 mb-8">
548548
Building the future of backend development, together.

client/src/pages/home.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { fetchGitHubStats } from "@/lib/github-api";
99
import { calculateTotalForks, calculateTotalStars } from "@/lib/github-utils";
1010
import parseLogoPath from "@assets/parse-logo-vector.svg";
1111
import {
12+
Blocks,
1213
Book,
1314
Box,
1415
Check,
@@ -18,6 +19,7 @@ import {
1819
Github,
1920
HammerIcon,
2021
Heart,
22+
List,
2123
Menu,
2224
MessageCircle,
2325
Moon,
@@ -212,7 +214,7 @@ export default function Home() {
212214
},
213215
{
214216
name: "Extensions",
215-
icon: Plug,
217+
icon: Blocks,
216218
stars: null,
217219
color: "text-orange-500",
218220
communityHighlightsUrl: "/community-highlights#extensions",
@@ -443,7 +445,7 @@ export default function Home() {
443445
{api.communityHighlightsUrl && (
444446
<Button variant="link" className="p-0 h-auto text-primary justify-start" asChild>
445447
<Link href={api.communityHighlightsUrl}>
446-
<Users className="h-4 w-4 mr-2" />
448+
<List className="h-4 w-4 mr-2" />
447449
Explore Extensions
448450
</Link>
449451
</Button>

0 commit comments

Comments
 (0)