Skip to content

Commit 5173c1a

Browse files
committed
chore
1 parent 6021612 commit 5173c1a

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/components/Developing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const Developing = () => {
1212
>
1313
{
1414
colors.map((color,index)=>(
15-
<rect x={index * 25} width="25" height="50" fill={color} />
15+
<rect key={index} x={index * 25} width="25" height="50" fill={color} />
1616
))
1717
}
1818
<animateTransform

src/data/labs/data.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"origin_url": "https://x.com/sovpal/status/1828542375372656894",
2828
"title": "cd小组件",
2929
"tags": [
30-
"Tailwind",
31-
"Motion"
30+
"Motion",
31+
"Tailwind"
3232
]
3333
},
3434
"3d-hover-card": {
@@ -38,9 +38,8 @@
3838
"origin_url": "",
3939
"title": "3d浮动卡片",
4040
"tags": [
41-
"Tailwind",
4241
"Motion",
43-
"TypeScript"
42+
"Tailwind"
4443
]
4544
},
4645
"css-toast": {
@@ -60,8 +59,8 @@
6059
"origin_url": "",
6160
"title": "拖放和堆叠",
6261
"tags": [
63-
"Tailwind",
64-
"Motion"
62+
"Motion",
63+
"Tailwind"
6564
]
6665
}
6766
}

src/layouts/default.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Layout: React.FC = () => {
2020
const Bg = () => {
2121
return (
2222
<div className="fixed w-[60vw] h-[60vw] left-1/4 -top-10 blur-2xl">
23-
<p className="w-1/3 h-1/3 rounded-full bg-gradient-to-br from-sky-500 to-sky-400/2 opacity-40 blur-2xl"></p>
23+
<p className="w-1/3 h-1/3 rounded-full bg-gradient-to-br from-sky-500 to-sky-400/2 opacity-40 blur-2xl animate-pulse"></p>
2424
<p style={{ transform: 'rotate3d(1,1,1,230deg)' }} className="absolute -top-1/3 -left-1/3 w-full h-full rounded-full border-[300px] border-sky-400 opacity-30"></p>
2525
</div>
2626
)

0 commit comments

Comments
 (0)