Skip to content

Commit 17e2006

Browse files
committed
chore: style update for chatbox
1 parent 86ec481 commit 17e2006

File tree

2 files changed

+28
-10
lines changed

2 files changed

+28
-10
lines changed

src/app/(routes)/page.tsx

+25-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,30 @@ import dynamic from 'next/dynamic'
1010
import { Inter } from 'next/font/google'
1111
import { useRef, useState } from 'react'
1212

13-
const Spline = dynamic(() => import('@splinetool/react-spline'), { ssr: false, loading: () => <>Loading</> })
13+
const Spline = dynamic(() => import('@splinetool/react-spline'), {
14+
ssr: false,
15+
loading: () => (
16+
<div role="status">
17+
<svg
18+
aria-hidden="true"
19+
className="w-8 h-8 text-light/40 animate-spin fill-primary"
20+
viewBox="0 0 100 101"
21+
fill="none"
22+
xmlns="http://www.w3.org/2000/svg"
23+
>
24+
<path
25+
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
26+
fill="currentColor"
27+
/>
28+
<path
29+
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
30+
fill="currentFill"
31+
/>
32+
</svg>
33+
<span className="sr-only">Loading...</span>
34+
</div>
35+
)
36+
})
1437

1538
const inter = Inter({ variable: '--font-inter', subsets: ['latin'] })
1639

@@ -99,7 +122,7 @@ const Home = () => {
99122
</div>
100123

101124
<div
102-
className={`absolute w-full h-full max-w-[1020px] px-[24px] py-[100px] md:pb-[160px]
125+
className={`fixed w-full h-full max-w-[1020px] px-[24px] pt-4 pb-[40px] md:pb-[100px]
103126
flex justify-end items-center z-30 pointer-events-auto`}
104127
>
105128
<ChatBox isOpen={isBotChatOpened} />

src/components/common/chats/ChatBox.tsx

+3-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ interface Params {
88
const ChatBox = ({ isOpen, onClose }: Params) => {
99
return (
1010
<motion.div
11+
className={`w-[400px] max-w-full h-[480px] max-h-full bg-primary/20 end-0 rounded-[24px] p-4 shadow-xl backdrop-filter backdrop-blur-lg`}
1112
initial={{ opacity: 0 }}
1213
animate={!!isOpen ? 'open' : 'closed'}
1314
variants={{
@@ -23,14 +24,8 @@ const ChatBox = ({ isOpen, onClose }: Params) => {
2324
})
2425
}}
2526
>
26-
<div
27-
style={{ pointerEvents: isOpen ? 'auto' : 'none' }}
28-
className={`w-[400px] max-w-full h-[480px] bg-primary/20 end-0 rounded-[24px] p-4 shadow-xl backdrop-filter backdrop-blur-lg`}
29-
onClick={() => {}}
30-
>
31-
<div className="w-full h-full flex justify-center items-center text-light/60 font-semibold">
32-
Bot Chat Coming Soon...!
33-
</div>
27+
<div className="w-full h-full flex justify-center items-center text-light/60 font-semibold">
28+
Bot Chat Coming Soon...!
3429
</div>
3530
{/* </div> */}
3631
</motion.div>

0 commit comments

Comments
 (0)