新規作成

This commit is contained in:
admin
2026-01-23 14:34:45 +09:00
commit e32ff0d9f6
28 changed files with 2739 additions and 0 deletions

25
tailwind.config.ts Normal file
View File

@@ -0,0 +1,25 @@
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: {
dark: '#0a0a0a',
},
typography: {
DEFAULT: {
css: {
color: '#e5e7eb',
},
},
},
},
},
plugins: [],
};
export default config;