-
+
diff --git a/components/utils/BodyHeader.tsx b/components/utils/BodyHeader.tsx
new file mode 100644
index 0000000..73a77cf
--- /dev/null
+++ b/components/utils/BodyHeader.tsx
@@ -0,0 +1,37 @@
+import Image from 'next/image'
+import {Fragment, useState} from 'react'
+import {VscEllipsis,VscDeviceCameraVideo} from 'react-icons/vsc';
+import { AiOutlineSearch} from "react-icons/ai";
+import { IoCallOutline } from "react-icons/io5";
+import { RxDividerVertical } from "react-icons/rx";
+
+
+
+function BodyHeader() {
+
+ return (
+
+
+
+
+ )
+}
+export default BodyHeader
\ No newline at end of file
diff --git a/components/utils/Main.tsx b/components/utils/Main.tsx
deleted file mode 100644
index 924931d..0000000
--- a/components/utils/Main.tsx
+++ /dev/null
@@ -1,43 +0,0 @@
-import Image from 'next/image'
-import {Fragment, useState} from 'react'
-import { VscAdd,VscEllipsis,VscListFilter,VscArrowLeft} from 'react-icons/vsc';
-import { TbCircleDotted } from "react-icons/tb";
-import { AiOutlineSearch } from "react-icons/ai";
-
-
-
-function Main() {
-
-// const [txF, setTxF] = useState
(false)
-// const focusTxf =() =>{
-// setTxF(true)
-// }
-// const blurTxf =() =>{
-// setTxF(false)
-// }
-
- return (
-
-
-
-
- {/* profile section */}
-
-
-
-
-
-
-
- )
-}
-export default Main
\ No newline at end of file
diff --git a/components/utils/chatWrapper.tsx b/components/utils/chatWrapper.tsx
index 3e5b039..c39bc7c 100644
--- a/components/utils/chatWrapper.tsx
+++ b/components/utils/chatWrapper.tsx
@@ -79,7 +79,7 @@ const ChatWrapper:FC =()=> {
))
return (
-
+
)
diff --git a/pages/App.tsx b/pages/App.tsx
index f8ecc9b..56466c1 100644
--- a/pages/App.tsx
+++ b/pages/App.tsx
@@ -1,14 +1,14 @@
import {Fragment}from 'react'
import Header from '../components/Header'
+import MainChat from '../components/MainChat'
import Sidebar from '../components/Sidebar'
-import Main from '../components/utils/Main'
export default function App() {
return (
-
+
)
}
diff --git a/styles/globals.css b/styles/globals.css
index 195163e..3f0e35b 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -1,9 +1,13 @@
+@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100&display=swap');
+
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components{
-
+ body{
+ @apply font-body
+ }
.headerLink {
@apply cursor-pointer mx-5 mt-3 text-[#ffffff] font-bold text-xl
}
diff --git a/tailwind.config.js b/tailwind.config.js
index 95b7c46..6967194 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -6,7 +6,11 @@ module.exports = {
'./app/**/*.{js,ts,jsx,tsx}',
],
theme: {
- extend: {},
+ extend: {
+ fontFamily:{
+ body:["Poppins", "sans-serif"]
+ }
+ },
},
plugins: [],
}