We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d031a42 commit 8aa785aCopy full SHA for 8aa785a
app/page.tsx
@@ -17,10 +17,10 @@ const Home: React.FC = () => {
17
return (
18
<main className="grid h-screen place-content-center">
19
<motion.h1
20
- initial={{ translateY: 20, opacity: 0 }}
21
- animate={{ translateY: 0, opacity: 1 }}
+ initial={{ translateY: 20, opacity: 0, filter: `blur(10px)` }}
+ animate={{ translateY: 0, opacity: 1, filter: "none" }}
22
transition={{ delay: 0, ...BASE_TRANSITION }}
23
- className="text-5xl font-semibold tracking-tighter text-zinc-800 dark:text-zinc-300"
+ className="text-5xl font-bold tracking-tighter text-zinc-800 dark:text-zinc-300"
24
>
25
Welcome to the Next.js starter!
26
</motion.h1>
0 commit comments