import type { Config } from "tailwindcss"; const config: Config = { content: [ "./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", ], theme: { extend: { fontFamily: { sans: ["Lahze", "sans-serif"], }, animation: { "bounce-once": "bounce 0.6s ease-in-out 1", }, }, }, plugins: [], }; export default config;