aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/header.tsx6
-rw-r--r--components/post-card.tsx9
2 files changed, 6 insertions, 9 deletions
diff --git a/components/header.tsx b/components/header.tsx
index afc2a99..f447677 100644
--- a/components/header.tsx
+++ b/components/header.tsx
@@ -16,12 +16,6 @@ export function Header() {
>
Blog
</Link>
- <Link
- href="/projects"
- className="text-muted-foreground hover:text-foreground transition-colors"
- >
- Projects
- </Link>
</nav>
</div>
diff --git a/components/post-card.tsx b/components/post-card.tsx
index 4990188..25a79ae 100644
--- a/components/post-card.tsx
+++ b/components/post-card.tsx
@@ -5,12 +5,15 @@ import Link from "next/link"
export function PostCard(post: Post) {
return (
<div className="mb-8">
- <Link href={post.url} className="no-underline">
- <h2 className="mb-1.5 mt-3 text-xl font-bold text-foreground">
+ <Link
+ href={post.url}
+ className="group no-underline inline-block"
+ >
+ <h2 className="text-xl font-bold relative before:content-['#'] before:absolute before:-left-5 before:font-normal before:text-muted-foreground before:opacity-0 before:transition group-hover:before:opacity-100">
{post.title}
</h2>
</Link>
- <div className="flex gap-1.5 font-medium text-muted-foreground/60">
+ <div className="text-muted-foreground/60">
<time dateTime={post.date} title={format(parseISO(post.date), 'yyyy/MM/dd')}>
{format(parseISO(post.date), 'do MMM yyyy')}
</time>