Initial commit from Create Next App

This commit is contained in:
Milo Schwartz 2024-09-27 19:48:49 -04:00
commit b7c1716fa7
No known key found for this signature in database
15 changed files with 5261 additions and 0 deletions

19
tailwind.config.ts Normal file
View file

@ -0,0 +1,19 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
};
export default config;