Skip to content

Commit b9e6187

Browse files
committed
chore:adjust a few data
1 parent e03ca95 commit b9e6187

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

src/components/ProjectCard.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ export const ProjectCard: React.FC<ProjectCardProps> = ({ logo, name, descriptio
1717
return (
1818
<HoverMotion.Root>
1919
<HoverMotion.Tilt strength={{
20-
x: 0.2,
21-
y: 2
20+
x: 0.4,
21+
y: 1
2222
}} onClick={jumpLink} className={cn(
2323
"group p-3 border bg-zinc-900 border-zinc-800 rounded-2xl select-none",
2424
(link ? "cursor-pointer" : "")
2525
)}>
2626
<HoverMotion.Magnetic strength={{
27-
x: 1,
28-
y: 1
27+
x: 0.25,
28+
y: 0.25
2929
}} className="relative flex gap-2 items-center">
3030
<img className="pointer-events-none absolute h-full scale-150 w-auto top-0 -left-2 blur-lg opacity-0 transition-opacity group-hover:opacity-50" src={logo} />
3131
<img className="relative w-14 h-14" src={logo} />

src/data/labs/cd-widget/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function CdWidget() {
3434
<div className="flex justify-between items-center">
3535
<div className="flex flex-col">
3636
<p className="text-zinc-700 text-xs leading-none">Perfectionism</p>
37-
<p className="text-zinc-500 text-xs leading-none">Jaychou</p>
37+
<p className="text-zinc-500 text-xs leading-none">Jay Chou</p>
3838
</div>
3939
<motion.div className="cursor-pointer"
4040
whileTap={{

src/data/labs/data.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"SVG"
1010
]
1111
},
12-
"google-login": {
13-
"name": "google-login",
14-
"en_title": "GoogleLogin",
12+
"login": {
13+
"name": "login",
14+
"en_title": "Login",
1515
"origin_url": "https://x.com/guerriero_se/status/1780963026918637653",
1616
"title": "谷歌登录",
1717
"tags": [

src/layouts/default.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Layout: React.FC = () => {
1111
<Bg />
1212
<MineInfos />
1313
<Projects />
14-
<Labs />
14+
<Lab />
1515
</main>
1616
</>
1717
)
@@ -36,13 +36,13 @@ const MineInfos = () => {
3636
<h2 className="text-2xl font-bold leading-none">Web & software developer</h2>
3737
<p className="text-md font-thin text-zinc-400 leading-none">Building is My Passion!</p>
3838
<div className="flex items-center gap-2">
39-
<a href="https://x.com/oopserian" target="_blank">
39+
<a className="opacity-50 hover:opacity-100 transition-opacity" href="https://x.com/oopserian" target="_blank">
4040
<IconBrandX size={20} />
4141
</a>
42-
<a href="https://github.com/oopserian" target="_blank">
42+
<a className="opacity-50 hover:opacity-100 transition-opacity" href="https://github.com/oopserian" target="_blank">
4343
<IconBrandGithub size={20} />
4444
</a>
45-
<a href="mailto:oopserian@gmail.com" target="_blank">
45+
<a className="opacity-50 hover:opacity-100 transition-opacity" href="mailto:oopserian@gmail.com" target="_blank">
4646
<IconMail size={20} />
4747
</a>
4848
</div>
@@ -67,11 +67,11 @@ const Projects = () => {
6767
)
6868
};
6969

70-
const Labs = () => {
70+
const Lab = () => {
7171
const labDataList = Object.values(labData);
7272
return (
7373
<div className="flex flex-col gap-2.5">
74-
<h2 className="text-xl font-bold">Labs</h2>
74+
<h2 className="text-xl font-bold">Lab</h2>
7575
<div className="grid grid-cols-[repeat(auto-fill,minmax(250px,1fr))] gap-2.5">
7676
{
7777
labDataList.map(lab => (

0 commit comments

Comments
 (0)