Tailwind v4とshadcn/uiをベースにした、
氷河のような淡いブルーと控えめなガラス効果が特徴のデザインシステム
デザインシステムとモダンな開発について



実装は驚くほどシンプル
import { PostCard } from '@/app/components/ui/post-card';
export function Example() {
return (
<PostCard
title="React Server Components入門"
description="Next.js 15とReact 19で変わる開発体験"
date="2024年11月16日"
tags={["React", "Next.js", "TypeScript"]}
readingTime={8}
/>
);
}