-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
"use client" | ||
|
||
import { useState } from "react" | ||
import Modal from "@/components/modal" | ||
|
||
export default function AnnounceModal() { | ||
const [isOpen, setIsOpen] = useState(true) | ||
return ( | ||
isOpen && ( | ||
<Modal onClickClose={() => setIsOpen(false)} description=""> | ||
<div className="px-8 py-32 max-md:py-24 max-md:text-sm flex flex-col gap-3"> | ||
<p className="">현재 foodie AI server는 비용 상의 문제로 운영되고 있지 않습니다.</p> | ||
|
||
<p>AI foodie와의 대화를 나누고 싶다면 개발자 이메일로 문의 부탁드립니다. 일정시간 foodie를 깨워드립니다!</p> | ||
<p> | ||
문의하기:{" "} | ||
<a className="text-blue-600 hover:text-blue-800" href="[email protected]"> | ||
[email protected] | ||
</a> | ||
</p> | ||
</div> | ||
</Modal> | ||
) | ||
) | ||
} |