Skip to content

Commit 8aa785a

Browse files
committed
H1 style updated
1 parent d031a42 commit 8aa785a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/page.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ const Home: React.FC = () => {
1717
return (
1818
<main className="grid h-screen place-content-center">
1919
<motion.h1
20-
initial={{ translateY: 20, opacity: 0 }}
21-
animate={{ translateY: 0, opacity: 1 }}
20+
initial={{ translateY: 20, opacity: 0, filter: `blur(10px)` }}
21+
animate={{ translateY: 0, opacity: 1, filter: "none" }}
2222
transition={{ delay: 0, ...BASE_TRANSITION }}
23-
className="text-5xl font-semibold tracking-tighter text-zinc-800 dark:text-zinc-300"
23+
className="text-5xl font-bold tracking-tighter text-zinc-800 dark:text-zinc-300"
2424
>
2525
Welcome to the Next.js starter!
2626
</motion.h1>

0 commit comments

Comments
 (0)