Skip to content

Commit 0cddcb0

Browse files
committed
remove unused state and animation variants from Personal component
1 parent 3300b54 commit 0cddcb0

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

app/page.tsx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { Spotlight } from '@/components/ui/spotlight'
44
import { Magnetic } from '@/components/ui/magnetic'
55
import Link from 'next/link'
66
import { AnimatedBackground } from '@/components/ui/animated-background'
7-
import { useState } from 'react'
87
import {
98
WORK_EXPERIENCE,
109
BLOG_POSTS,
@@ -64,25 +63,6 @@ function MagneticSocialLink({
6463
}
6564

6665
export default function Personal() {
67-
const [openProjectId, setOpenProjectId] = useState<string | null>(null)
68-
69-
const imageVariants = {
70-
collapsed: { scale: 1, filter: 'blur(0px)' },
71-
expanded: { scale: 1.1, filter: 'blur(3px)' },
72-
}
73-
74-
const contentVariants = {
75-
collapsed: { opacity: 0, y: 0 },
76-
expanded: { opacity: 1, y: 0 },
77-
}
78-
79-
const transition = {
80-
type: 'spring',
81-
stiffness: 26.7,
82-
damping: 4.1,
83-
mass: 0.2,
84-
}
85-
8666
return (
8767
<motion.main
8868
className="space-y-24"

0 commit comments

Comments
 (0)