ShowcaseBackgroundsRetro GridAn animated scrolling retro grid effectPreviewCodeRetro Grid Installation CLIManualnpx spectraui-cli add globeUpdate tailwind.config.tsAdd the following animations to your tailwind.config.ts file:/** @type {import('tailwindcss').Config} */ module.exports = { theme: { extend: { animation: { grid: "grid 15s linear infinite", }, keyframes: { grid: { "0%": { transform: "translateY(-50%)" }, "100%": { transform: "translateY(0)" }, }, }, }, }, }; Props PropTypeDefaultclassNamestring-PreviousGrid Pattern