-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
f85f430
commit 7578f29
Showing
2 changed files
with
27 additions
and
2 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 |
---|---|---|
@@ -1,3 +1,24 @@ | ||
import { useState } from "react"; | ||
|
||
export default function Home() { | ||
return <></> | ||
} | ||
const [message, setMessage] = useState(""); | ||
|
||
return ( | ||
<> | ||
<div className="w-full flex flex-col h-[760px] justify-end gap-3"> | ||
<div className="px-48"> | ||
Deneme | ||
</div> | ||
<div className="w-full flex focus:outline-none gap-6 justify-center items-center"> | ||
<input | ||
className="flex gap-5 rounded-xl w-3/4 h-16 bg-white input-box px-4 text-[20px]" | ||
onChange={(e) => setMessage(e.currentTarget.value)} | ||
></input> | ||
<button className="w-[150px] h-[70px] bg-[#3DB9CF] rounded-xl"> | ||
Send | ||
</button> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |