-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
import { Image } from 'astro:assets' | ||
import headshot from '@/assets/images/headshot.jpeg' | ||
import { ArrowUpRight } from 'lucide-react' | ||
--- | ||
|
||
<aside class="border-faint my-16 border-y py-8"> | ||
<h2 class="not-prose text-lg font-medium">Learn to build components like NumberFlow</h2> | ||
<blockquote class="text-pretty not-italic"> | ||
<!-- prettier-ignore --> | ||
<p>Emil Kowalski's Animations on the Web course taught me everything I know about UI animation. I can't | ||
imagine having built NumberFlow without it.</p> | ||
</blockquote> | ||
<p class="not-prose text-muted mb-6 flex items-center gap-2 text-sm"> | ||
<Image | ||
src={headshot} | ||
alt="Headshot of Maxwell Barvian" | ||
width={64} | ||
height={64} | ||
class="size-6 rounded-full" | ||
/> | ||
Maxwell Barvian, NumberFlow creator | ||
</p> | ||
<a href="https://animations.dev" rel="external" target="_blank" class="btn btn-callout not-prose"> | ||
Take the course | ||
<ArrowUpRight className="size-4" /> | ||
</a> | ||
</aside> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters