initial commit

This commit is contained in:
Jeffrey Morgan
2023-06-22 12:45:31 -04:00
commit 8fa91332fa
29 changed files with 5669 additions and 0 deletions

10
client/tailwind.config.js Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {},
plugins: [],
}