// File: tailwind.config.ts // Path: apps/web/tailwind.config.ts // Project: AI Risk Index — airiskindex.io // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Copyright © 2026 Simon-Pierre Boucher. All rights reserved. // // Description: Tailwind configuration (content scan covers app/, components/, lib/, shared ui). import type { Config } from "tailwindcss"; export default { content: [ "./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}", "../../packages/ui/src/**/*.{ts,tsx}", ], theme: { extend: {}, }, plugins: [], } satisfies Config;