Skip to content

Commit dcd943a

Browse files
committed
feat: 一些小修改
1 parent bef7b9c commit dcd943a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/friends.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const friendsList: FriendModel[] = [
99
name: 'CeazzZY',
1010
url: 'https://ceazzzy.github.io/',
1111
avatar: 'https://avatars.githubusercontent.com/u/60310690?v=4',
12-
desc: '字节架构师',
12+
desc: '',
1313
},
1414
{
1515
name: 'sunsunmonkey',

src/components/ui/focus-cards.tsx/FocusCards.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function FocusCards({ postCards }: { postCards: PostItemType[] }) {
7878

7979
return (
8080
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-14 max-w-[7xl] mx-auto md:px-8 w-full">
81-
{postCards.map((card, index) => (
81+
{postCards.slice(0.6).map((card, index) => (
8282
<Card
8383
key={card.title}
8484
card={card}

0 commit comments

Comments
 (0)