Skip to content

Commit

Permalink
๐ŸŽจ Design: ์ฑ—๋ด‡ ๊ธฐ๋ณธ๋””์ž์ธ
Browse files Browse the repository at this point in the history
#
  • Loading branch information
RipAGu committed Nov 3, 2023
1 parent cf91d26 commit c5235fe
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 2 deletions.
10 changes: 10 additions & 0 deletions components/genine/BotChat.vue
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>
9 changes: 9 additions & 0 deletions components/genine/UserChat.vue
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>
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pages/profile/edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<SideNavigation :active-button="4" class="mt-20"> </SideNavigation>
<div class="mt-20 w-full bg-[#F4F6F8] ml-48 flex-col">
<div class="flex relative flex-col mt-20 mx-20">
<div class="">
<div>
<button
class="flex flex-row justify-start items-center h-8 pl-2 pr-4 rounded-lg hover:bg-[#e9ecef]"
@click="$router.back()"
Expand Down
64 changes: 64 additions & 0 deletions pages/search/genine.vue
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>

0 comments on commit c5235fe

Please sign in to comment.