Spaces:
Running
Running
Update README and width of window
Browse files- README.md +8 -0
- src/components/ConferenceDialog.tsx +1 -1
README.md
CHANGED
|
@@ -41,6 +41,8 @@ npm i
|
|
| 41 |
npm run dev
|
| 42 |
```
|
| 43 |
|
|
|
|
|
|
|
| 44 |
## Deploy with Docker
|
| 45 |
|
| 46 |
First build the Docker image as follows:
|
|
@@ -55,6 +57,8 @@ Next it can be run as follows:
|
|
| 55 |
docker run -it -p 7860:7860 ai-deadlines
|
| 56 |
```
|
| 57 |
|
|
|
|
|
|
|
| 58 |
## Technologies used
|
| 59 |
|
| 60 |
This project is built with:
|
|
@@ -64,3 +68,7 @@ This project is built with:
|
|
| 64 |
- React
|
| 65 |
- shadcn-ui
|
| 66 |
- Tailwind CSS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
npm run dev
|
| 42 |
```
|
| 43 |
|
| 44 |
+
This runs the app at http://localhost:8080/.
|
| 45 |
+
|
| 46 |
## Deploy with Docker
|
| 47 |
|
| 48 |
First build the Docker image as follows:
|
|
|
|
| 57 |
docker run -it -p 7860:7860 ai-deadlines
|
| 58 |
```
|
| 59 |
|
| 60 |
+
You can see it in your web browser at http://localhost:7860/.
|
| 61 |
+
|
| 62 |
## Technologies used
|
| 63 |
|
| 64 |
This project is built with:
|
|
|
|
| 68 |
- React
|
| 69 |
- shadcn-ui
|
| 70 |
- Tailwind CSS
|
| 71 |
+
|
| 72 |
+
## Maintainers
|
| 73 |
+
|
| 74 |
+
Feel free to just open an issue. Otherwise contact @nielsrogge
|
src/components/ConferenceDialog.tsx
CHANGED
|
@@ -171,7 +171,7 @@ END:VCALENDAR`;
|
|
| 171 |
|
| 172 |
return (
|
| 173 |
<Dialog open={open} onOpenChange={onOpenChange}>
|
| 174 |
-
<DialogContent className="max-w-
|
| 175 |
<DialogHeader>
|
| 176 |
<DialogTitle>{conference.title} {conference.year}</DialogTitle>
|
| 177 |
<DialogDescription>
|
|
|
|
| 171 |
|
| 172 |
return (
|
| 173 |
<Dialog open={open} onOpenChange={onOpenChange}>
|
| 174 |
+
<DialogContent className="max-w-xl">
|
| 175 |
<DialogHeader>
|
| 176 |
<DialogTitle>{conference.title} {conference.year}</DialogTitle>
|
| 177 |
<DialogDescription>
|