Add aesthetic timeline to post lists

This commit is contained in:
2025-11-19 00:54:58 +08:00
parent 10e4e7e21e
commit fe191752da
5 changed files with 26 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
import { ReactNode } from 'react';
import clsx from 'clsx';
interface TimelineWrapperProps {
children: ReactNode;
className?: string;
}
export function TimelineWrapper({ children, className }: TimelineWrapperProps) {
return (
<div className={clsx('relative pl-8', className)}>
<div className="pointer-events-none absolute left-3 top-0 h-full w-px bg-gradient-to-b from-transparent via-slate-200 to-transparent dark:via-slate-700" aria-hidden="true" />
<div className="space-y-4">
{children}
</div>
</div>
);
}