Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
Older version on again
Browse files Browse the repository at this point in the history
  • Loading branch information
paolodelfino committed Mar 13, 2024
1 parent 588b4bb commit 73a671b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel
Expand Down
7 changes: 5 additions & 2 deletions src/app/_components/Update.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ import {
ModalHeader,
Spacer,
} from "@nextui-org/react";
import { useState } from "react";

export default function Update() {
const [isOpen, setIsOpen] = useState(true);

return (
<Modal isOpen hideCloseButton>
<Modal isOpen={isOpen} onClose={() => setIsOpen(false)}>
<ModalContent>
<ModalHeader className="flex flex-col gap-1">
Update is coming
</ModalHeader>
<ModalBody>
Silly is getting updated, please stay tuned.
Silly is getting updated, please stay tuned. Press 'X' to use the older version.
<Spacer />
</ModalBody>
</ModalContent>
Expand Down

0 comments on commit 73a671b

Please sign in to comment.