-
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
5 changed files
with
84 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<template> | ||
<div class="flex flex-col ml-4"> | ||
<p class="text-lg font-medium">Genine</p> | ||
<div | ||
class="justify-center py-4 rounded-tr-xl px-3 rounded-bl-xl rounded-br-xl bg-[#fefefe] border border-[#e6e8eb]" | ||
> | ||
์๋ ํ์ธ์ Genine์ ใ ใ ใ ใ | ||
</div> | ||
</div> | ||
</template> |
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,9 @@ | ||
<template> | ||
<div class="flex flex-col ml-4"> | ||
<div | ||
class="justify-center py-4 px-3 rounded-bl-xl rounded-br-xl rounded-tl-xl bg-[#1f8ce6] text-white" | ||
> | ||
์๋ ํ์ธ์ Genine์ ใ ใ ใ ใ | ||
</div> | ||
</div> | ||
</template> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,64 @@ | ||
<template> | ||
<div> | ||
<TopBarApp /> | ||
|
||
<div class="flex h-screen flex-col"> | ||
<div class="flex flex-grow flex-row"> | ||
<SideNavigation :active-button="1" class="mt-20"></SideNavigation> | ||
<main class="mt-20 flex flex-grow bg-[#F4F6F8] ml-48"> | ||
<div class="flex flex-grow flex-col m-20"> | ||
<div> | ||
<button | ||
class="flex flex-row justify-start items-center h-8 pl-2 pr-4 rounded-lg hover:bg-[#e9ecef]" | ||
@click="$router.back()" | ||
> | ||
<svg | ||
width="20" | ||
height="20" | ||
viewBox="0 0 20 20" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
class="w-5 h-5" | ||
preserveAspectRatio="xMidYMid meet" | ||
> | ||
<path | ||
d="M12.5 15L7.5 10L12.5 5" | ||
stroke="#1F8CE6" | ||
stroke-width="1.66667" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
></path> | ||
</svg> | ||
<p class="text-sm font-medium text-center ml-2 text-[#1f8ce6]"> | ||
์ด์ ์ผ๋ก ๋์๊ฐ๊ธฐ | ||
</p> | ||
</button> | ||
</div> | ||
|
||
<div | ||
class="flex w-full h-full justify-between rounded-2xl bg-white border border-[#e6e8eb] mt-3 flex-col" | ||
> | ||
<div class="flex flex-col justify-start items-start gap-1"> | ||
<GenineBotChat /> | ||
<GenineUserChat /> | ||
</div> | ||
|
||
<div class="flex items-end bottom-0 content-end h-12 mx-10 mb-9"> | ||
<input | ||
class="flex pl-4 items-center flex-grow h-12 rounded-lg bg-[#f4f6f8] border border-[#e6e8eb]" | ||
type="text" | ||
placeholder="๊ถ๊ธํ์ ๋ด์ฉ์ ์ ๋ ฅํด์ฃผ์ธ์" | ||
/> | ||
<button | ||
class="flex items-center justify-center h-12 w-24 rounded-lg text-[#646f7c] text-sm bg-[#E0E0E0] ml-2" | ||
> | ||
์ ์กํ๊ธฐ | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |