GodUIGodUI
109Follow on X

Modern design systems standardize on OKLCH for perceptually uniform theming1, and Tailwind v4 ships a CSS-first config that makes tokens first-class2. Motion is now treated as a core craft, not a finishing touch3.

Source Citations

tsx
import {SourceCitation,SourceList,} from "@/components/godui/source-citations";const sources = [{ title: "GodUI", url: "https://github.com/LucasBassetti/godui", snippet: "Motion components for modern interfaces." },{ title: "Tailwind v4", url: "https://tailwindcss.com/blog/tailwindcss-v4" },];export function SourceCitationsDemo() {return (  <div>    <p>      Design systems standardize on OKLCH      <SourceCitation index={1} source={sources[0]} /> and Tailwind v4      <SourceCitation index={2} source={sources[1]} />.    </p>    <SourceList sources={sources} />  </div>);}