Revert "Migrate to HeroUI v3 and Tailwind CSS v4"

This reverts commit 6a9296f33d.
This commit is contained in:
2026-01-23 02:43:56 +08:00
parent 6a9296f33d
commit ce4245c148
14 changed files with 1342 additions and 3434 deletions

View File

@@ -4,7 +4,6 @@ import type { Post } from 'contentlayer2/generated';
import { siteConfig } from '@/lib/config';
import { FiCalendar, FiTag } from 'react-icons/fi';
import { MetaItem } from './meta-item';
import { Card } from '@heroui/react';
interface PostCardProps {
post: Post;
@@ -18,8 +17,7 @@ export function PostCard({ post, showTags = true }: PostCardProps) {
: undefined;
return (
<article>
<Card className="motion-card group relative overflow-hidden rounded-xl border dark:border-slate-800">
<article className="motion-card group relative overflow-hidden rounded-xl border bg-white shadow-sm dark:border-slate-800 dark:bg-slate-900">
<div className="pointer-events-none absolute inset-x-0 top-0 h-1 origin-left scale-x-0 bg-gradient-to-r from-blue-500 via-sky-400 to-indigo-500 opacity-80 transition-transform duration-300 ease-out group-hover:scale-x-100 dark:from-blue-400 dark:via-sky-300 dark:to-indigo-400" />
{cover && (
<div className="relative w-full bg-slate-100 dark:bg-slate-800">
@@ -34,7 +32,7 @@ export function PostCard({ post, showTags = true }: PostCardProps) {
/>
</div>
)}
<Card.Content className="space-y-3 px-4 py-4">
<div className="space-y-3 px-4 py-4">
<div className="flex flex-wrap items-center gap-3 text-xs">
{post.published_at && (
<MetaItem icon={FiCalendar}>
@@ -49,23 +47,20 @@ export function PostCard({ post, showTags = true }: PostCardProps) {
</MetaItem>
)}
</div>
<Card.Header className="p-0">
<Card.Title className="text-lg font-semibold leading-snug">
<Link
href={post.url}
className="hover:text-blue-600 dark:hover:text-blue-400"
>
{post.title}
</Link>
</Card.Title>
</Card.Header>
<h2 className="text-lg font-semibold leading-snug">
<Link
href={post.url}
className="hover:text-blue-600 dark:hover:text-blue-400"
>
{post.title}
</Link>
</h2>
{post.description && (
<Card.Description className="line-clamp-3 text-sm text-slate-700 dark:text-slate-100">
<p className="line-clamp-3 text-sm text-slate-700 dark:text-slate-100">
{post.description}
</Card.Description>
</p>
)}
</Card.Content>
</Card>
</div>
</article>
);
}