2024-04-04 14:46:14 +00:00
|
|
|
import { useState } from 'react';
|
|
|
|
|
2024-03-20 16:36:45 +00:00
|
|
|
import { CircleGreenBackground, Heart } from '../assets';
|
2024-04-04 14:46:14 +00:00
|
|
|
import PageDetails from '../components/PageDetails';
|
|
|
|
import PageSideBar from '../components/PageSideBar';
|
2024-03-20 16:36:45 +00:00
|
|
|
import './Dashboard.css';
|
2024-05-02 19:30:25 +00:00
|
|
|
import ChatBot from '../components/ChatBot';
|
2024-03-20 16:36:45 +00:00
|
|
|
|
|
|
|
function Dashboard() {
|
|
|
|
return (
|
|
|
|
<div className='dashboard'>
|
2024-04-04 14:46:14 +00:00
|
|
|
<PageSideBar />
|
|
|
|
<PageDetails />
|
2024-05-02 19:30:25 +00:00
|
|
|
<ChatBot />
|
2024-03-20 16:36:45 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Dashboard;
|