Files
2026-02-19 22:13:11 +03:30

36 lines
780 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
// fontFamily: {
// sans: [
// "Dana",
// "Inter",
// "var(--font-geist-sans)",
// "system-ui",
// "sans-serif",
// ],
// },
// animation: {
// fadeInUp: "fadeInUp 0.6s ease-out",
// },
// keyframes: {
// fadeInUp: {
// "0%": { opacity: "0", transform: "translateY(30px)" },
// "100%": { opacity: "1", transform: "translateY(0)" },
// },
// },
},
},
plugins: [],
};
export default config;