Initial commit from Create Next App

This commit is contained in:
Patrick_Pluto 2024-09-18 10:38:54 +02:00
commit 8d296414eb
15 changed files with 5629 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: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
};
export default config;