import type { Config } from "tailwindcss";
  
const config: Config = {
  content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
  theme: {},
  plugins: [],
};

export default config;
