+
{format(date, 'EEE, MMM d')}
diff --git a/src/components/DraggableEvent.tsx b/src/components/DraggableEvent.tsx
index d38b053..7e60a09 100644
--- a/src/components/DraggableEvent.tsx
+++ b/src/components/DraggableEvent.tsx
@@ -69,7 +69,7 @@ export default function DraggableEvent({
ref={ref}
layoutId={event.id}
onClick={() => !isDragging && onEventClick({ event, date })}
- className="bg-white p-4 rounded shadow mb-2 cursor-grab active:cursor-grabbing transition-all relative select-none"
+ className="bg-white p-4 rounded shadow-md mb-2 cursor-grab active:cursor-grabbing transition-all relative select-none"
whileHover={{ scale: 1.01 }}
style={{
opacity: isDragging ? 0.7 : 1,
@@ -87,11 +87,11 @@ export default function DraggableEvent({
draggable="false"
/>
)}
-
-
{event.title}
+
{event.title}
);
}
\ No newline at end of file
diff --git a/src/components/EventModal.tsx b/src/components/EventModal.tsx
index b3365b9..614d1aa 100644
--- a/src/components/EventModal.tsx
+++ b/src/components/EventModal.tsx
@@ -62,11 +62,11 @@ const EventModal = ({ event, date, onClose }: EventModalProps) => {
className="w-full h-48 object-cover rounded-lg mb-4"
/>
)}
-
{event.title}
-
Date: {formattedDate}
-
Time: {event.time}
+
{event.title}
+
Date: {formattedDate}
+
Time: {event.time}
{event.description && (
-
+
Description: {event.description}
)}
diff --git a/src/styles/fonts.ts b/src/styles/fonts.ts
new file mode 100644
index 0000000..6ac71a7
--- /dev/null
+++ b/src/styles/fonts.ts
@@ -0,0 +1,7 @@
+import { Inter } from 'next/font/google';
+
+export const inter = Inter({
+ subsets: ['latin'],
+ variable: '--font-inter',
+ display: 'swap',
+});
\ No newline at end of file
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..1f6fb29
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,15 @@
+const { fontFamily } = require('tailwindcss/defaultTheme')
+
+module.exports = {
+ content: [
+ // ... existing content ...
+ ],
+ theme: {
+ extend: {
+ fontFamily: {
+ sans: ['var(--font-inter)', ...fontFamily.sans],
+ },
+ },
+ },
+ plugins: [],
+}
\ No newline at end of file