8 changed files with 57 additions and 34 deletions
-
13src/app/layout.tsx
-
26src/components/Calendar.tsx
-
12src/components/CalendarHeader.tsx
-
4src/components/DayColumn.tsx
-
6src/components/DraggableEvent.tsx
-
8src/components/EventModal.tsx
-
7src/styles/fonts.ts
-
15tailwind.config.js
@ -0,0 +1,7 @@ |
|||||
|
import { Inter } from 'next/font/google'; |
||||
|
|
||||
|
export const inter = Inter({ |
||||
|
subsets: ['latin'], |
||||
|
variable: '--font-inter', |
||||
|
display: 'swap', |
||||
|
}); |
@ -0,0 +1,15 @@ |
|||||
|
const { fontFamily } = require('tailwindcss/defaultTheme') |
||||
|
|
||||
|
module.exports = { |
||||
|
content: [ |
||||
|
// ... existing content ...
|
||||
|
], |
||||
|
theme: { |
||||
|
extend: { |
||||
|
fontFamily: { |
||||
|
sans: ['var(--font-inter)', ...fontFamily.sans], |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
plugins: [], |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue