diff --git a/src/partials/Header.jsx b/src/partials/Header.jsx
index 2562075..a9ac698 100644
--- a/src/partials/Header.jsx
+++ b/src/partials/Header.jsx
@@ -1,8 +1,5 @@
import React, { useState } from 'react';
-import SearchModal from '../components/ModalSearch';
-import Notifications from '../components/DropdownNotifications';
-import Help from '../components/DropdownHelp';
import UserMenu from '../components/DropdownProfile';
function Header({
@@ -39,22 +36,6 @@ function Header({
{/* Header: Right side */}
-
{ e.stopPropagation(); setSearchModalOpen(true); }}
- aria-controls="search-modal"
- >
- Search
-
-
-
-
-
-
-
-
- {/* Divider */}
-
diff --git a/src/partials/analytics/AnalyticsCard01.jsx b/src/partials/analytics/AnalyticsCard01.jsx
deleted file mode 100644
index 95a1375..0000000
--- a/src/partials/analytics/AnalyticsCard01.jsx
+++ /dev/null
@@ -1,123 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart03';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function AnalyticsCard01() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- label: 'Current',
- data: [
- 5000, 8700, 7500, 12000, 11000, 9500, 10500,
- 10000, 15000, 9000, 10000, 7000, 22000, 7200,
- 9800, 9000, 10000, 8000, 15000, 12000, 11000,
- 13000, 11000, 15000, 17000, 18000,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.indigo[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Gray line
- {
- label: 'Previous',
- data: [
- 8000, 5000, 6500, 5000, 6500, 12000, 8000,
- 9000, 8000, 8000, 12500, 10000, 10000, 12000,
- 11000, 16000, 12000, 10000, 10000, 14000, 9000,
- 10000, 15000, 12500, 14000, 11000,
- ],
- borderColor: tailwindConfig().theme.colors.slate[300],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.slate[300],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
-
- {/* Unique Visitors */}
-
- {/* Total Pageviews */}
-
- {/* Bounce Rate */}
-
- {/* Visit Duration*/}
-
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default AnalyticsCard01;
diff --git a/src/partials/analytics/AnalyticsCard02.jsx b/src/partials/analytics/AnalyticsCard02.jsx
deleted file mode 100644
index ab05157..0000000
--- a/src/partials/analytics/AnalyticsCard02.jsx
+++ /dev/null
@@ -1,139 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart04';
-import { Link } from 'react-router-dom';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function AnalyticsCard02() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- data: [
- 732, 610, 610, 504, 504, 504, 349,
- 349, 504, 342, 504, 610, 391, 192,
- 154, 273, 191, 191, 126, 263, 349,
- 252, 423, 622, 470, 532,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.indigo[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
- Active Users Right Now
-
- {/* Card content */}
-
- {/* Live visitors number */}
-
-
- {/* Red dot */}
-
- {/* Vistors number */}
-
-
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- {/* Table */}
-
-
-
- {/* Table header */}
-
-
-
- Top pages
-
-
- Active users
-
-
-
- {/* Table body */}
-
- {/* Row */}
-
-
- preview.cruip.com/open-pro/
-
-
- 94
-
-
- {/* Row */}
-
-
- preview.cruip.com/simple/
-
-
- 42
-
-
- {/* Row */}
-
-
- cruip.com/unlimited/
-
-
- 12
-
-
- {/* Row */}
-
-
- preview.cruip.com/twist/
-
-
- 4
-
-
-
-
-
-
-
- {/* Card footer */}
-
- Real-Time Report ->
-
-
-
- );
-}
-
-export default AnalyticsCard02;
diff --git a/src/partials/analytics/AnalyticsCard03.jsx b/src/partials/analytics/AnalyticsCard03.jsx
deleted file mode 100644
index e388d06..0000000
--- a/src/partials/analytics/AnalyticsCard03.jsx
+++ /dev/null
@@ -1,74 +0,0 @@
-import React from 'react';
-import BarChart from '../../charts/BarChart03';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function AnalyticsCard03() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- ],
- datasets: [
- // Stack
- {
- label: 'Direct',
- data: [
- 5000, 4000, 4000, 3800, 5200, 5100,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[700],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[800],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- // Stack
- {
- label: 'Referral',
- data: [
- 2500, 2600, 4000, 4000, 4800, 3500,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[500],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- // Stack
- {
- label: 'Organic Search',
- data: [
- 2300, 2000, 3100, 2700, 1300, 2600,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[300],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[400],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- // Stack
- {
- label: 'Social',
- data: [
- 4800, 4200, 4800, 1800, 3300, 3500,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[100],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[200],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default AnalyticsCard03;
diff --git a/src/partials/analytics/AnalyticsCard04.jsx b/src/partials/analytics/AnalyticsCard04.jsx
deleted file mode 100644
index 2a04b06..0000000
--- a/src/partials/analytics/AnalyticsCard04.jsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import React from 'react';
-import BarChart from '../../charts/BarChart04';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function AnalyticsCard04() {
-
- const chartData = {
- labels: [
- '02-01-2021', '03-01-2021', '04-01-2021', '05-01-2021',
- ],
- datasets: [
- // Blue bars
- {
- label: 'New Visitors',
- data: [
- 8000, 3800, 5350, 7800,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[500],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600],
- categoryPercentage: 0.66,
- },
- // Light blue bars
- {
- label: 'Returning Visitors',
- data: [
- 4000, 6500, 2200, 5800,
- ],
- backgroundColor: tailwindConfig().theme.colors.sky[400],
- hoverBackgroundColor: tailwindConfig().theme.colors.sky[500],
- categoryPercentage: 0.66,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default AnalyticsCard04;
diff --git a/src/partials/analytics/AnalyticsCard05.jsx b/src/partials/analytics/AnalyticsCard05.jsx
deleted file mode 100644
index 93f4007..0000000
--- a/src/partials/analytics/AnalyticsCard05.jsx
+++ /dev/null
@@ -1,96 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-
-function AnalyticsCard05() {
- return (
-
-
-
-
- {/* Card content */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
Indiehackers.com
-
4.2K
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
Madewithvuejs.com
-
1.7K
-
-
- {/* Item */}
-
-
-
-
Producthunt.com
-
924
-
-
- {/* Item */}
-
-
-
-
-
-
- {/* Card footer */}
-
- Channels Report ->
-
-
-
-
- );
-}
-
-export default AnalyticsCard05;
diff --git a/src/partials/analytics/AnalyticsCard06.jsx b/src/partials/analytics/AnalyticsCard06.jsx
deleted file mode 100644
index ee0ebcb..0000000
--- a/src/partials/analytics/AnalyticsCard06.jsx
+++ /dev/null
@@ -1,96 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-
-function AnalyticsCard06() {
- return (
-
-
-
-
- {/* Card content */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
preview.cruip.com/open-pro/
-
12K
-
-
- {/* Item */}
-
-
-
-
preview.cruip.com/appy/
-
9.7K
-
-
- {/* Item */}
-
-
-
-
cruip.com/unlimited/
-
9.2K
-
-
- {/* Item */}
-
-
-
-
preview.cruip.com/simple/
-
7K
-
-
- {/* Item */}
-
-
-
-
cruip.com/about-us/
-
6.4K
-
-
- {/* Item */}
-
-
-
-
docs.cruip.com/
-
5.4K
-
-
- {/* Item */}
-
-
-
-
preview.cruip.com/twist/
-
2.2K
-
-
-
-
- {/* Card footer */}
-
- Page Report ->
-
-
-
-
- );
-}
-
-export default AnalyticsCard06;
diff --git a/src/partials/analytics/AnalyticsCard07.jsx b/src/partials/analytics/AnalyticsCard07.jsx
deleted file mode 100644
index 11db7a2..0000000
--- a/src/partials/analytics/AnalyticsCard07.jsx
+++ /dev/null
@@ -1,96 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-
-function AnalyticsCard07() {
- return (
-
-
-
-
- {/* Card content */}
-
-
-
-
- {/* Item */}
-
-
-
-
๐จ๐ฎ Ireland
-
4.2K
-
-
- {/* Item */}
-
-
-
-
๐บ๐ธ United States
-
3.4K
-
-
- {/* Item */}
-
-
-
-
๐ฉ๐ช Germany
-
1.6k
-
-
- {/* Item */}
-
-
-
-
๐ฎ๐น Italy
-
1.2k
-
-
- {/* Item */}
-
-
-
-
๐ฌ๐ง United Kingdom
-
912
-
-
- {/* Item */}
-
-
-
-
๐ซ๐ท France
-
677
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
๐ธ๐ฌ Singapore
-
269
-
-
-
-
- {/* Card footer */}
-
- Countries Report ->
-
-
-
-
- );
-}
-
-export default AnalyticsCard07;
diff --git a/src/partials/analytics/AnalyticsCard08.jsx b/src/partials/analytics/AnalyticsCard08.jsx
deleted file mode 100644
index 2c543b3..0000000
--- a/src/partials/analytics/AnalyticsCard08.jsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import DoughnutChart from '../../charts/DoughnutChart';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function AnalyticsCard08() {
-
- const chartData = {
- labels: ['Desktop', 'Mobile', 'Tablet'],
- datasets: [
- {
- label: 'Sessions By Device',
- data: [
- 12, 50, 38,
- ],
- backgroundColor: [
- tailwindConfig().theme.colors.indigo[500],
- tailwindConfig().theme.colors.sky[400],
- tailwindConfig().theme.colors.indigo[800],
- ],
- hoverBackgroundColor: [
- tailwindConfig().theme.colors.indigo[600],
- tailwindConfig().theme.colors.sky[500],
- tailwindConfig().theme.colors.indigo[900],
- ],
- hoverBorderColor: tailwindConfig().theme.colors.white,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default AnalyticsCard08;
diff --git a/src/partials/analytics/AnalyticsCard09.jsx b/src/partials/analytics/AnalyticsCard09.jsx
deleted file mode 100644
index ddf2d70..0000000
--- a/src/partials/analytics/AnalyticsCard09.jsx
+++ /dev/null
@@ -1,46 +0,0 @@
-import React from 'react';
-import DoughnutChart from '../../charts/DoughnutChart';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function AnalyticsCard09() {
-
- const chartData = {
- labels: ['<18', '18-24', '24-36', '>35'],
- datasets: [
- {
- label: 'Visit By Age Category',
- data: [
- 30, 50, 5, 15,
- ],
- backgroundColor: [
- tailwindConfig().theme.colors.indigo[500],
- tailwindConfig().theme.colors.sky[400],
- tailwindConfig().theme.colors.rose[500],
- tailwindConfig().theme.colors.emerald[500],
- ],
- hoverBackgroundColor: [
- tailwindConfig().theme.colors.indigo[600],
- tailwindConfig().theme.colors.sky[500],
- tailwindConfig().theme.colors.rose[600],
- tailwindConfig().theme.colors.emerald[600],
- ],
- hoverBorderColor: tailwindConfig().theme.colors.white,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default AnalyticsCard09;
diff --git a/src/partials/analytics/AnalyticsCard10.jsx b/src/partials/analytics/AnalyticsCard10.jsx
deleted file mode 100644
index e65fa82..0000000
--- a/src/partials/analytics/AnalyticsCard10.jsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import PolarChart from '../../charts/PolarChart';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function AnalyticsCard10() {
-
- const chartData = {
- labels: ['Males', 'Females', 'Unknown'],
- datasets: [
- {
- label: 'Sessions By Gender',
- data: [
- 500, 326, 242,
- ],
- backgroundColor: [
- `rgba(${hexToRGB(tailwindConfig().theme.colors.indigo[500])}, 0.8)`,
- `rgba(${hexToRGB(tailwindConfig().theme.colors.sky[400])}, 0.8)`,
- `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.8)`,
- ],
- hoverBackgroundColor: [
- `rgba(${hexToRGB(tailwindConfig().theme.colors.indigo[600])}, 0.8)`,
- `rgba(${hexToRGB(tailwindConfig().theme.colors.sky[500])}, 0.8)`,
- `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[600])}, 0.8)`,
- ],
- hoverBorderColor: tailwindConfig().theme.colors.white,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default AnalyticsCard10;
diff --git a/src/partials/analytics/AnalyticsCard11.jsx b/src/partials/analytics/AnalyticsCard11.jsx
deleted file mode 100644
index 6954513..0000000
--- a/src/partials/analytics/AnalyticsCard11.jsx
+++ /dev/null
@@ -1,280 +0,0 @@
-import React from 'react';
-
-import Image01 from '../../images/user-28-01.jpg';
-import Image02 from '../../images/user-28-02.jpg';
-import Image03 from '../../images/user-28-03.jpg';
-import Image04 from '../../images/user-28-04.jpg';
-import Image05 from '../../images/user-28-05.jpg';
-import Image06 from '../../images/user-28-06.jpg';
-import Image07 from '../../images/user-28-07.jpg';
-import Image09 from '../../images/user-28-09.jpg';
-import Image11 from '../../images/user-28-11.jpg';
-
-function AnalyticsCard11() {
- return (
-
-
-
-
- {/* Table */}
-
-
- {/* Table header */}
-
-
-
- Product
-
-
- Created by
-
-
- Category
-
-
- Total impressions
-
-
- Top country
-
-
- CR
-
-
- Value
-
-
-
- {/* Table body */}
-
- {/* Row */}
-
-
-
-
-
-
-
-
-
-
-
- 20,929
-
-
- ๐บ๐ธ
-
-
- 27.4%
-
-
- $12,499.77
-
-
- {/* Row */}
-
-
-
-
-
Machine Learning A-Z
-
-
-
-
-
-
-
-
-
- 17,944
-
-
- ๐ฌ๐ง
-
-
- 22.6%
-
-
- $4,227.09
-
-
- {/* Row */}
-
-
-
-
-
-
-
-
-
-
-
- 16,097
-
-
- ๐ซ๐ท
-
-
- 22.4%
-
-
- $2,499.77
-
-
- {/* Row */}
-
-
-
-
-
Digital Marketing Course
-
-
-
-
-
-
-
-
-
- 12,996
-
-
- ๐ฎ๐น
-
-
- 22.1%
-
-
- $2,224.09
-
-
- {/* Row */}
-
-
-
-
-
-
-
-
-
-
-
- 7,097
-
-
- ๐ฉ๐ช
-
-
- 17.4%
-
-
- $1,949.72
-
-
-
-
-
-
-
-
- );
-}
-
-export default AnalyticsCard11;
diff --git a/src/partials/dashboard/DashboardAvatars.jsx b/src/partials/dashboard/DashboardAvatars.jsx
deleted file mode 100644
index a0ce901..0000000
--- a/src/partials/dashboard/DashboardAvatars.jsx
+++ /dev/null
@@ -1,43 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-import User01 from '../../images/user-36-01.jpg';
-import User02 from '../../images/user-36-02.jpg';
-import User03 from '../../images/user-36-03.jpg';
-import User04 from '../../images/user-36-04.jpg';
-
-function DashboardAvatars() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Add new user
-
-
-
-
-
-
- );
-}
-
-export default DashboardAvatars;
diff --git a/src/partials/dashboard/DashboardCard01.jsx b/src/partials/dashboard/DashboardCard01.jsx
deleted file mode 100644
index 543713d..0000000
--- a/src/partials/dashboard/DashboardCard01.jsx
+++ /dev/null
@@ -1,97 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-import LineChart from '../../charts/LineChart01';
-import Icon from '../../images/icon-01.svg';
-import EditMenu from '../../components/DropdownEditMenu';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function DashboardCard01() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- data: [
- 732, 610, 610, 504, 504, 504, 349,
- 349, 504, 342, 504, 610, 391, 192,
- 154, 273, 191, 191, 126, 263, 349,
- 252, 423, 622, 470, 532,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.indigo[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Gray line
- {
- data: [
- 532, 532, 532, 404, 404, 314, 314,
- 314, 314, 314, 234, 314, 234, 234,
- 314, 314, 314, 388, 314, 202, 202,
- 202, 202, 314, 720, 642,
- ],
- borderColor: tailwindConfig().theme.colors.slate[300],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.slate[300],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
- {/* Icon */}
-
- {/* Menu button */}
-
-
- Option 1
-
-
- Option 2
-
-
- Remove
-
-
-
-
Acme Plus
-
Sales
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default DashboardCard01;
diff --git a/src/partials/dashboard/DashboardCard02.jsx b/src/partials/dashboard/DashboardCard02.jsx
deleted file mode 100644
index ead6a64..0000000
--- a/src/partials/dashboard/DashboardCard02.jsx
+++ /dev/null
@@ -1,97 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-import LineChart from '../../charts/LineChart01';
-import Icon from '../../images/icon-02.svg';
-import EditMenu from '../../components/DropdownEditMenu';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function DashboardCard02() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- data: [
- 622, 622, 426, 471, 365, 365, 238,
- 324, 288, 206, 324, 324, 500, 409,
- 409, 273, 232, 273, 500, 570, 767,
- 808, 685, 767, 685, 685,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.indigo[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Gray line
- {
- data: [
- 732, 610, 610, 504, 504, 504, 349,
- 349, 504, 342, 504, 610, 391, 192,
- 154, 273, 191, 191, 126, 263, 349,
- 252, 423, 622, 470, 532,
- ],
- borderColor: tailwindConfig().theme.colors.slate[300],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.slate[300],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
- {/* Icon */}
-
- {/* Menu button */}
-
-
- Option 1
-
-
- Option 2
-
-
- Remove
-
-
-
-
Acme Advanced
-
Sales
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default DashboardCard02;
diff --git a/src/partials/dashboard/DashboardCard03.jsx b/src/partials/dashboard/DashboardCard03.jsx
deleted file mode 100644
index 522ce04..0000000
--- a/src/partials/dashboard/DashboardCard03.jsx
+++ /dev/null
@@ -1,97 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-import LineChart from '../../charts/LineChart01';
-import Icon from '../../images/icon-03.svg';
-import EditMenu from '../../components/DropdownEditMenu';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function DashboardCard03() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- data: [
- 540, 466, 540, 466, 385, 432, 334,
- 334, 289, 289, 200, 289, 222, 289,
- 289, 403, 554, 304, 289, 270, 134,
- 270, 829, 344, 388, 364,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.indigo[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Gray line
- {
- data: [
- 689, 562, 477, 477, 477, 477, 458,
- 314, 430, 378, 430, 498, 642, 350,
- 145, 145, 354, 260, 188, 188, 300,
- 300, 282, 364, 660, 554,
- ],
- borderColor: tailwindConfig().theme.colors.slate[300],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.slate[300],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
- {/* Icon */}
-
- {/* Menu button */}
-
-
- Option 1
-
-
- Option 2
-
-
- Remove
-
-
-
-
Acme Professional
-
Sales
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default DashboardCard03;
diff --git a/src/partials/dashboard/DashboardCard04.jsx b/src/partials/dashboard/DashboardCard04.jsx
deleted file mode 100644
index e6e0792..0000000
--- a/src/partials/dashboard/DashboardCard04.jsx
+++ /dev/null
@@ -1,52 +0,0 @@
-import React from 'react';
-import BarChart from '../../charts/BarChart01';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function DashboardCard04() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- ],
- datasets: [
- // Light blue bars
- {
- label: 'Direct',
- data: [
- 800, 1600, 900, 1300, 1950, 1700,
- ],
- backgroundColor: tailwindConfig().theme.colors.blue[400],
- hoverBackgroundColor: tailwindConfig().theme.colors.blue[500],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- // Blue bars
- {
- label: 'Indirect',
- data: [
- 4900, 2600, 5350, 4800, 5200, 4800,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[500],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default DashboardCard04;
diff --git a/src/partials/dashboard/DashboardCard05.jsx b/src/partials/dashboard/DashboardCard05.jsx
deleted file mode 100644
index d9040bc..0000000
--- a/src/partials/dashboard/DashboardCard05.jsx
+++ /dev/null
@@ -1,100 +0,0 @@
-import React, { useState, useEffect } from 'react';
-import Tooltip from '../../components/Tooltip';
-import RealtimeChart from '../../charts/RealtimeChart';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function DashboardCard05() {
-
- // IMPORTANT:
- // Code below is for demo purpose only, and it's not covered by support.
- // If you need to replace dummy data with real data,
- // refer to Chart.js documentation: https://www.chartjs.org/docs/latest
-
- // Fake real-time data
- const [counter, setCounter] = useState(0);
- const [increment, setIncrement] = useState(0);
- const [range, setRange] = useState(35);
-
- // Dummy data to be looped
- const data = [
- 57.81, 57.75, 55.48, 54.28, 53.14, 52.25, 51.04, 52.49, 55.49, 56.87,
- 53.73, 56.42, 58.06, 55.62, 58.16, 55.22, 58.67, 60.18, 61.31, 63.25,
- 65.91, 64.44, 65.97, 62.27, 60.96, 59.34, 55.07, 59.85, 53.79, 51.92,
- 50.95, 49.65, 48.09, 49.81, 47.85, 49.52, 50.21, 52.22, 54.42, 53.42,
- 50.91, 58.52, 53.37, 57.58, 59.09, 59.36, 58.71, 59.42, 55.93, 57.71,
- 50.62, 56.28, 57.37, 53.08, 55.94, 55.82, 53.94, 52.65, 50.25,
- ];
-
- const [slicedData, setSlicedData] = useState(data.slice(0, range));
-
- // Generate fake dates from now to back in time
- const generateDates = () => {
- const now = new Date();
- const dates = [];
- data.forEach((v, i) => {
- dates.push(new Date(now - 2000 - i * 2000));
- });
- return dates;
- };
-
- const [slicedLabels, setSlicedLabels] = useState(generateDates().slice(0, range).reverse());
-
- // Fake update every 2 seconds
- useEffect(() => {
- const interval = setInterval(() => {
- setCounter(counter + 1);
- }, 2000);
- return () => clearInterval(interval)
- }, [counter]);
-
- // Loop through data array and update
- useEffect(() => {
- setIncrement(increment + 1);
- if (increment + range < data.length) {
- setSlicedData(([x, ...slicedData]) => [...slicedData, data[increment + range]]);
- } else {
- setIncrement(0);
- setRange(0);
- }
- setSlicedLabels(([x, ...slicedLabels]) => [...slicedLabels, new Date()]);
- return () => setIncrement(0)
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [counter]);
-
- const chartData = {
- labels: slicedLabels,
- datasets: [
- // Indigo line
- {
- data: slicedData,
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.indigo[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
- Real Time Value
-
-
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default DashboardCard05;
diff --git a/src/partials/dashboard/DashboardCard06.jsx b/src/partials/dashboard/DashboardCard06.jsx
deleted file mode 100644
index 88e12a4..0000000
--- a/src/partials/dashboard/DashboardCard06.jsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import DoughnutChart from '../../charts/DoughnutChart';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function DashboardCard06() {
-
- const chartData = {
- labels: ['United States', 'Italy', 'Other'],
- datasets: [
- {
- label: 'Top Countries',
- data: [
- 35, 30, 35,
- ],
- backgroundColor: [
- tailwindConfig().theme.colors.indigo[500],
- tailwindConfig().theme.colors.blue[400],
- tailwindConfig().theme.colors.indigo[800],
- ],
- hoverBackgroundColor: [
- tailwindConfig().theme.colors.indigo[600],
- tailwindConfig().theme.colors.blue[500],
- tailwindConfig().theme.colors.indigo[900],
- ],
- hoverBorderColor: tailwindConfig().theme.colors.white,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default DashboardCard06;
diff --git a/src/partials/dashboard/DashboardCard07.jsx b/src/partials/dashboard/DashboardCard07.jsx
deleted file mode 100644
index 9b8f73d..0000000
--- a/src/partials/dashboard/DashboardCard07.jsx
+++ /dev/null
@@ -1,165 +0,0 @@
-import React from 'react';
-
-function DashboardCard07() {
- return (
-
-
-
-
- {/* Table */}
-
-
- {/* Table header */}
-
-
-
- Source
-
-
- Visitors
-
-
- Revenues
-
-
- Sales
-
-
- Conversion
-
-
-
- {/* Table body */}
-
- {/* Row */}
-
-
-
-
-
- 2.4K
-
-
- $3,877
-
-
- 267
-
-
- 4.7%
-
-
- {/* Row */}
-
-
-
-
-
- 2.2K
-
-
- $3,426
-
-
- 249
-
-
- 4.4%
-
-
- {/* Row */}
-
-
-
-
-
-
-
-
Google (organic)
-
-
-
- 2.0K
-
-
- $2,444
-
-
- 224
-
-
- 4.2%
-
-
- {/* Row */}
-
-
-
-
-
- 1.9K
-
-
- $2,236
-
-
- 220
-
-
- 4.2%
-
-
- {/* Row */}
-
-
-
-
-
-
-
-
Indiehackers.com
-
-
-
- 1.7K
-
-
- $2,034
-
-
- 204
-
-
- 3.9%
-
-
-
-
-
-
-
-
- );
-}
-
-export default DashboardCard07;
diff --git a/src/partials/dashboard/DashboardCard08.jsx b/src/partials/dashboard/DashboardCard08.jsx
deleted file mode 100644
index cb60be2..0000000
--- a/src/partials/dashboard/DashboardCard08.jsx
+++ /dev/null
@@ -1,91 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart02';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function DashboardCard08() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- label: 'Current',
- data: [
- 73, 64, 73, 69, 104, 104, 164,
- 164, 120, 120, 120, 148, 142, 104,
- 122, 110, 104, 152, 166, 233, 268,
- 252, 284, 284, 333, 323,
- ],
- borderColor: tailwindConfig().theme.colors.indigo[500],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Blue line
- {
- label: 'Previous',
- data: [
- 184, 86, 42, 378, 42, 243, 38,
- 120, 0, 0, 42, 0, 84, 0,
- 276, 0, 124, 42, 124, 88, 88,
- 215, 156, 88, 124, 64,
- ],
- borderColor: tailwindConfig().theme.colors.blue[400],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.blue[400],
- clip: 20,
- },
- // emerald line
- {
- label: 'Average',
- data: [
- 122, 170, 192, 86, 102, 124, 115,
- 115, 56, 104, 0, 72, 208, 186,
- 223, 188, 114, 162, 200, 150, 118,
- 118, 76, 122, 230, 268,
- ],
- borderColor: tailwindConfig().theme.colors.emerald[500],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.emerald[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
- Sales Over Time (all stores)
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default DashboardCard08;
diff --git a/src/partials/dashboard/DashboardCard09.jsx b/src/partials/dashboard/DashboardCard09.jsx
deleted file mode 100644
index bb99304..0000000
--- a/src/partials/dashboard/DashboardCard09.jsx
+++ /dev/null
@@ -1,64 +0,0 @@
-import React from 'react';
-import Tooltip from '../../components/Tooltip';
-import BarChart from '../../charts/BarChart02';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function DashboardCard09() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- ],
- datasets: [
- // Light blue bars
- {
- label: 'Stack 1',
- data: [
- 6200, 9200, 6600, 8800, 5200, 9200,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[500],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- // Blue bars
- {
- label: 'Stack 2',
- data: [
- -4000, -2600, -5350, -4000, -7500, -2000,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[200],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[300],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- ],
- };
-
- return (
-
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default DashboardCard09;
diff --git a/src/partials/dashboard/DashboardCard10.jsx b/src/partials/dashboard/DashboardCard10.jsx
deleted file mode 100644
index 8d23bef..0000000
--- a/src/partials/dashboard/DashboardCard10.jsx
+++ /dev/null
@@ -1,110 +0,0 @@
-import React from 'react';
-
-function DashboardCard10() {
- return (
-
-
-
-
- {/* Card content */}
- {/* "Today" group */}
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
-
-
- {/* "Yesterday" group */}
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
-
-
-
-
-
- );
-}
-
-export default DashboardCard10;
diff --git a/src/partials/dashboard/DashboardCard11.jsx b/src/partials/dashboard/DashboardCard11.jsx
deleted file mode 100644
index 61b0d94..0000000
--- a/src/partials/dashboard/DashboardCard11.jsx
+++ /dev/null
@@ -1,120 +0,0 @@
-import React from 'react';
-
-function DashboardCard11() {
- return (
-
-
-
-
- {/* Card content */}
- {/* "Today" group */}
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
- {/* Item */}
-
-
-
-
-
App.com Market Ltd 70 Wilson St London
-
- +$99.99
-
-
-
-
- {/* Item */}
-
-
-
-
-
App.com Market Ltd 70 Wilson St London
-
- -$49.88
-
-
-
-
-
-
-
-
-
- );
-}
-
-export default DashboardCard11;
diff --git a/src/partials/dashboard/WelcomeBanner.jsx b/src/partials/dashboard/WelcomeBanner.jsx
deleted file mode 100644
index 71107e2..0000000
--- a/src/partials/dashboard/WelcomeBanner.jsx
+++ /dev/null
@@ -1,59 +0,0 @@
-import React from 'react';
-
-function WelcomeBanner() {
- return (
-
-
- {/* Background illustration */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Content */}
-
-
Good afternoon, Acme Inc. ๐
-
Here is whatโs happening with your projects today:
-
-
-
- );
-}
-
-export default WelcomeBanner;
diff --git a/src/partials/fintech/FintechCard01.jsx b/src/partials/fintech/FintechCard01.jsx
deleted file mode 100644
index d094e18..0000000
--- a/src/partials/fintech/FintechCard01.jsx
+++ /dev/null
@@ -1,101 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart05';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard01() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023', '02-01-2023',
- '03-01-2023', '04-01-2023', '05-01-2023',
- '06-01-2023', '07-01-2023', '08-01-2023',
- '09-01-2023', '10-01-2023', '11-01-2023',
- '12-01-2023', '01-01-2024', '02-01-2024',
- '03-01-2024', '04-01-2024',
- ],
- datasets: [
- // Indigo line
- {
- label: 'Mosaic Portfolio',
- data: [
- 0, 2.5, 2.5, 4, 2.5, 3.8, 5, 9, 7.5, 11,
- 14, 15, 17, 15, 14, 9, 15, 26, 16, 18,
- 15, 20, 18, 19, 19, 24, 29, 26, 39, 27,
- 35, 32, 29, 35, 36, 34, 39, 36, 41, 41,
- 48,
- ],
- borderColor: tailwindConfig().theme.colors.indigo[500],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Yellow line
- {
- label: 'Expected Return',
- data: [
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
- 40,
- ],
- borderColor: tailwindConfig().theme.colors.yellow[400],
- borderDash: [4, 4],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.yellow[400],
- clip: 20,
- },
- // gray line
- {
- label: 'Competitors',
- data: [
- 0.7, 3.5, 4.5, 3.5, 4.2, 4.6, 6, 7, 6, 6,
- 11, 13, 14, 18, 17, 15, 13, 16, 20, 21,
- 24, 22, 20, 22, 25, 18, 21, 23, 24, 32,
- 28, 29, 35, 37, 42, 32, 32, 33, 33, 37,
- 32,
- ],
- borderColor: tailwindConfig().theme.colors.slate[300],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.slate[300],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default FintechCard01;
diff --git a/src/partials/fintech/FintechCard02.jsx b/src/partials/fintech/FintechCard02.jsx
deleted file mode 100644
index abe361d..0000000
--- a/src/partials/fintech/FintechCard02.jsx
+++ /dev/null
@@ -1,133 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-import EditMenu from '../../components/DropdownEditMenu';
-
-function FintechCard02() {
- return (
-
-
-
- {/* CC container */}
-
- {/* Credit Card */}
-
- {/* Gradients */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Logo on card */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Card number */}
-
- ****
- ****
- ****
- 7328
-
- {/* Card footer */}
-
- {/* Card expiration */}
-
- EXP 12/24
- CVC ***
-
-
- {/* Mastercard logo */}
-
-
-
-
-
-
- {/* Options button */}
-
-
-
- Option 1
-
-
-
-
- Option 2
-
-
-
-
- Remove
-
-
-
-
- {/* Details */}
-
-
Details
-
-
-
-
Payment Limits
-
- $780,00 / $1,500.00
-
-
-
-
-
-
-
ATM Limits
-
- $179,00 / $1,000.00
-
-
-
-
-
-
-
-
- );
-}
-
-export default FintechCard02;
diff --git a/src/partials/fintech/FintechCard03.jsx b/src/partials/fintech/FintechCard03.jsx
deleted file mode 100644
index b6146bf..0000000
--- a/src/partials/fintech/FintechCard03.jsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import React from 'react';
-import BarChart from '../../charts/BarChart05';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function FintechCard03() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021'
- ],
- datasets: [
- // Indigo bars
- {
- label: 'Inflow',
- data: [800, 2600, 4000, 1200, 3200, 1700],
- backgroundColor: tailwindConfig().theme.colors.indigo[500],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- // Grey bars
- {
- label: 'Outflow',
- data: [2800, 1700, 900, 2900, 1950, 3100],
- backgroundColor: tailwindConfig().theme.colors.slate[300],
- hoverBackgroundColor: tailwindConfig().theme.colors.slate[400],
- barPercentage: 0.66,
- categoryPercentage: 0.66,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default FintechCard03;
diff --git a/src/partials/fintech/FintechCard04.jsx b/src/partials/fintech/FintechCard04.jsx
deleted file mode 100644
index b77f7dd..0000000
--- a/src/partials/fintech/FintechCard04.jsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import React from 'react';
-import BarChart from '../../charts/BarChart06';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function FintechCard04() {
-
- const chartData = {
- labels: [
- '02-01-2021', '03-01-2021', '04-01-2021', '05-01-2021',
- ],
- datasets: [
- // Indigo bars
- {
- label: 'Inflow',
- data: [
- 4100, 1900, 2700, 3900,
- ],
- backgroundColor: tailwindConfig().theme.colors.indigo[500],
- hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600],
- categoryPercentage: 0.66,
- },
- // Gray bars
- {
- label: 'Outflow',
- data: [
- 2000, 1000, 1100, 2600,
- ],
- backgroundColor: tailwindConfig().theme.colors.slate[300],
- hoverBackgroundColor: tailwindConfig().theme.colors.slate[400],
- categoryPercentage: 0.66,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default FintechCard04;
diff --git a/src/partials/fintech/FintechCard05.jsx b/src/partials/fintech/FintechCard05.jsx
deleted file mode 100644
index c01d4e8..0000000
--- a/src/partials/fintech/FintechCard05.jsx
+++ /dev/null
@@ -1,155 +0,0 @@
-import React from 'react';
-
-function FintechCard05() {
- return (
-
-
-
- {/* Table */}
-
-
- {/* Table header */}
-
-
-
- Counterparty
-
-
- Account
-
-
- Date
-
-
- Amount
-
-
-
- {/* Table body */}
-
- {/* Row */}
-
-
-
-
-
- Revolut
-
-
- 22/01/2022
-
-
- -$1,299.22
-
-
- {/* Row */}
-
-
-
-
-
- Qonto
-
-
- 22/01/2022
-
-
- -$272.88
-
-
- {/* Row */}
-
-
-
-
-
Imperial Hotel ****
-
-
-
- Revolut
-
-
- 22/01/2022
-
-
- -$999.44
-
-
- {/* Row */}
-
-
-
-
-
- N26
-
-
- 22/01/2022
-
-
- -$1,029.77
-
-
- {/* Row */}
-
-
-
-
-
- N26
-
-
- 22/01/2022
-
-
- -$1,921.26
-
-
-
-
-
-
-
-
- );
-}
-
-export default FintechCard05;
diff --git a/src/partials/fintech/FintechCard06.jsx b/src/partials/fintech/FintechCard06.jsx
deleted file mode 100644
index 5c01515..0000000
--- a/src/partials/fintech/FintechCard06.jsx
+++ /dev/null
@@ -1,155 +0,0 @@
-import React from 'react';
-
-import UserImage from '../../images/user-36-05.jpg';
-
-function FintechCard06() {
- return (
-
-
-
- {/* Table */}
-
-
- {/* Table header */}
-
-
-
- Counterparty
-
-
- Account
-
-
- Date
-
-
- Amount
-
-
-
- {/* Table body */}
-
- {/* Row */}
-
-
-
-
-
- Revolut
-
-
- 22/01/2022
-
-
- +$1,299.22
-
-
- {/* Row */}
-
-
-
-
-
- Qonto
-
-
- 22/01/2022
-
-
- +$1,200.88
-
-
- {/* Row */}
-
-
-
-
-
- N26
-
-
- 22/01/2022
-
-
- +$499.99
-
-
- {/* Row */}
-
-
-
-
-
-
-
Aprilynne Pills
-
-
-
- Revolut
-
-
- 22/01/2022
-
-
- +$2,179.36
-
-
- {/* Row */}
-
-
-
-
-
- Revolut
-
-
- 22/01/2022
-
-
- +$249.88
-
-
-
-
-
-
-
-
- );
-}
-
-export default FintechCard06;
diff --git a/src/partials/fintech/FintechCard07.jsx b/src/partials/fintech/FintechCard07.jsx
deleted file mode 100644
index d807102..0000000
--- a/src/partials/fintech/FintechCard07.jsx
+++ /dev/null
@@ -1,78 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart06';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard07() {
-
- const chartData = {
- labels: [
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023', '02-01-2023',
- '03-01-2023', '04-01-2023',
- ],
- datasets: [
- // Indigo line
- {
- label: 'Mosaic Portfolio',
- data: [
- 1500, 2000, 1800, 1900, 1900, 2400, 2900, 2600, 3900, 2700,
- 3500, 3200, 2900, 3500, 3600, 3400, 3900, 3600, 4100, 4100,
- ],
- borderColor: tailwindConfig().theme.colors.indigo[500],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.indigo[500],
- clip: 20,
- },
- // Gray line
- {
- label: 'Expected Return',
- data: [
- 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
- 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
- ],
- borderColor: tailwindConfig().theme.colors.slate[300],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.slate[300],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
-
Hey Mark, you're very close to your goal:
-
-
Out of $6,000
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default FintechCard07;
diff --git a/src/partials/fintech/FintechCard08.jsx b/src/partials/fintech/FintechCard08.jsx
deleted file mode 100644
index f66b98a..0000000
--- a/src/partials/fintech/FintechCard08.jsx
+++ /dev/null
@@ -1,61 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart07';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard08() {
-
- const chartData = {
- labels: ['2010', 'Age 65'],
- datasets: [
- // Dark green line
- {
- label: 'Growth 1',
- data: [0, 3500000],
- borderColor: tailwindConfig().theme.colors.emerald[500],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.08)`,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.emerald[500],
- clip: 20,
- },
- // Light green line
- {
- label: 'Growth 2',
- data: [0, 2000000],
- borderColor: tailwindConfig().theme.colors.emerald[200],
- fill: false,
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.emerald[200],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
-
Hey Mark, by age 65 you could have:
-
$2M - $3.5M
-
Risk level 8
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default FintechCard08;
diff --git a/src/partials/fintech/FintechCard09.jsx b/src/partials/fintech/FintechCard09.jsx
deleted file mode 100644
index 7df13ad..0000000
--- a/src/partials/fintech/FintechCard09.jsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import React from 'react';
-import PieChart from '../../charts/PieChart';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function FintechCard09() {
-
- const chartData = {
- labels: ['Cash', 'Commodities', 'Bonds', 'Stock'],
- datasets: [
- {
- label: 'Sessions By Device',
- data: [12, 13, 10, 65],
- backgroundColor: [
- tailwindConfig().theme.colors.emerald[400],
- tailwindConfig().theme.colors.yellow[400],
- tailwindConfig().theme.colors.sky[400],
- tailwindConfig().theme.colors.indigo[500],
- ],
- hoverBackgroundColor: [
- tailwindConfig().theme.colors.emerald[500],
- tailwindConfig().theme.colors.yellow[500],
- tailwindConfig().theme.colors.sky[500],
- tailwindConfig().theme.colors.indigo[600],
- ],
- borderWidth: 0,
- },
- ],
- };
-
- return (
-
-
-
-
Hey Mark, here is the value of your portfolio:
-
$224,807.27
-
- {/* Chart built with Chart.js 3 */}
- {/* Change the height attribute to adjust the chart height */}
-
-
- );
-}
-
-export default FintechCard09;
diff --git a/src/partials/fintech/FintechCard10.jsx b/src/partials/fintech/FintechCard10.jsx
deleted file mode 100644
index 50abd79..0000000
--- a/src/partials/fintech/FintechCard10.jsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart08';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard10() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Line
- {
- data: [
- 732, 610, 610, 504, 504, 504, 349,
- 349, 504, 342, 504, 610, 391, 192,
- 154, 273, 191, 191, 126, 263, 349,
- 252, 323, 322, 270, 232,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.rose[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.rose[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.rose[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
-
- Google - Alphabet
-
- $2,860.96
-
- -$49 (4,7%) - Today
-
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default FintechCard10;
diff --git a/src/partials/fintech/FintechCard11.jsx b/src/partials/fintech/FintechCard11.jsx
deleted file mode 100644
index ddfe906..0000000
--- a/src/partials/fintech/FintechCard11.jsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart08';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard11() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Line
- {
- data: [
- 222, 222, 226, 271, 365, 365, 238,
- 324, 288, 206, 324, 324, 500, 409,
- 409, 273, 232, 273, 500, 570, 767,
- 808, 685, 767, 685, 685,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.emerald[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.emerald[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
-
- Amzn - Amazon Inc.
-
- $3,400.35
-
- +$142 (3,7%) - Today
-
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default FintechCard11;
diff --git a/src/partials/fintech/FintechCard12.jsx b/src/partials/fintech/FintechCard12.jsx
deleted file mode 100644
index 34db40b..0000000
--- a/src/partials/fintech/FintechCard12.jsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart08';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard12() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Line
- {
- data: [
- 540, 466, 540, 466, 385, 432, 334,
- 334, 289, 289, 200, 289, 222, 289,
- 289, 403, 554, 304, 289, 270, 134,
- 270, 829, 644, 688, 664,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.emerald[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.emerald[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default FintechCard12;
diff --git a/src/partials/fintech/FintechCard13.jsx b/src/partials/fintech/FintechCard13.jsx
deleted file mode 100644
index 79c2f3e..0000000
--- a/src/partials/fintech/FintechCard13.jsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart08';
-
-// Import utilities
-import { tailwindConfig, hexToRGB } from '../../utils/Utils';
-
-function FintechCard13() {
-
- const chartData = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Line
- {
- data: [
- 245, 288, 332, 404, 404, 314, 314,
- 314, 314, 314, 234, 314, 234, 234,
- 314, 314, 314, 388, 314, 202, 202,
- 202, 202, 514, 720, 642,
- ],
- fill: true,
- backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.08)`,
- borderColor: tailwindConfig().theme.colors.emerald[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: tailwindConfig().theme.colors.emerald[500],
- clip: 20,
- },
- ],
- };
-
- return (
-
-
-
-
- Facebook - Meta Inc.
-
- $333.79
-
- +$19,70 (4%) - Today
-
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
- );
-}
-
-export default FintechCard13;
diff --git a/src/partials/fintech/FintechCard14.jsx b/src/partials/fintech/FintechCard14.jsx
deleted file mode 100644
index 72fa3c4..0000000
--- a/src/partials/fintech/FintechCard14.jsx
+++ /dev/null
@@ -1,313 +0,0 @@
-import React from 'react';
-import LineChart from '../../charts/LineChart09';
-
-// Import utilities
-import { tailwindConfig } from '../../utils/Utils';
-
-function FintechCard14() {
-
- const miniCharts = [
- // Twitter
- {
- data: [
- 540, 466, 540, 466, 385, 432, 334,
- 334, 289, 289, 200, 289, 222, 289,
- 289, 403, 554, 304, 289, 270, 134,
- 270, 829, 644, 688, 664,
- ],
- growth: true,
- },
- // Facebook
- {
- data: [
- 245, 288, 332, 404, 404, 314, 314,
- 314, 314, 314, 234, 314, 234, 234,
- 314, 314, 314, 388, 314, 202, 202,
- 202, 202, 514, 720, 642,
- ],
- growth: true,
- },
- // Google
- {
- data: [
- 732, 610, 610, 504, 504, 504, 349,
- 349, 504, 342, 504, 610, 391, 192,
- 154, 273, 191, 191, 126, 263, 349,
- 252, 323, 322, 270, 232,
- ],
- growth: false,
- },
- // Apple
- {
- data: [
- 222, 222, 226, 271, 365, 365, 238,
- 324, 288, 206, 324, 324, 500, 409,
- 409, 273, 232, 273, 500, 570, 767,
- 808, 685, 767, 685, 685,
- ],
- growth: true,
- },
- // Coinbase
- {
- data: [
- 632, 510, 610, 404, 504, 404, 449,
- 349, 404, 542, 404, 410, 491, 392,
- 254, 273, 291, 191, 226, 363, 449,
- 252, 223, 222, 170, 132,
- ],
- growth: false,
- },
- ];
-
- const chartData = [];
-
- const buildChartData = (chart) => {
- var obj = {
- labels: [
- '12-01-2020', '01-01-2021', '02-01-2021',
- '03-01-2021', '04-01-2021', '05-01-2021',
- '06-01-2021', '07-01-2021', '08-01-2021',
- '09-01-2021', '10-01-2021', '11-01-2021',
- '12-01-2021', '01-01-2022', '02-01-2022',
- '03-01-2022', '04-01-2022', '05-01-2022',
- '06-01-2022', '07-01-2022', '08-01-2022',
- '09-01-2022', '10-01-2022', '11-01-2022',
- '12-01-2022', '01-01-2023',
- ],
- datasets: [
- // Line
- {
- data: chart.data,
- borderColor: chart.growth ? tailwindConfig().theme.colors.emerald[500] : tailwindConfig().theme.colors.rose[500],
- borderWidth: 2,
- tension: 0,
- pointRadius: 0,
- pointHoverRadius: 3,
- pointBackgroundColor: chart.growth ? tailwindConfig().theme.colors.emerald[500] : tailwindConfig().theme.colors.rose[500],
- clip: 20,
- },
- ],
- }
- return obj;
- };
-
- miniCharts.map((miniChart) => {
- chartData.push(buildChartData(miniChart));
- });
-
- return (
-
-
-
- {/* Table */}
-
-
- {/* Table header */}
-
-
-
- Market
-
-
- Mkt Cap
-
-
- Chart
-
-
- Price
-
-
- Chg. (24h)
-
-
-
- {/* Table body */}
-
- {/* Row */}
-
-
-
-
-
- 33.94B
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
-
- $43.07
-
-
- +$4.20 (4%)
-
-
- {/* Row */}
-
-
-
-
-
- 903.71B
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
-
- $324.81
-
-
- +$12.20 (3.7%)
-
-
- {/* Row */}
-
-
-
-
-
-
-
-
-
Googl
-
Alphabet Inc.
-
-
-
-
- 1.70T
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
-
- $2,860.96
-
-
- -$12.20 (3.7%)
-
-
- {/* Row */}
-
-
-
-
-
- 2.77T
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
-
- $168.55
-
-
- +$7.44 (1.4%)
-
-
- {/* Row */}
-
-
-
-
-
-
-
-
-
Coin
-
Coinbase Global Inc.
-
-
-
-
- 50.89B
-
-
- {/* Chart built with Chart.js 3 */}
-
- {/* Change the height attribute to adjust the chart height */}
-
-
-
-
- $236.48
-
-
- -$24,30 (6.2%)
-
-
-
-
-
-
-
- );
-}
-
-export default FintechCard14;
diff --git a/src/partials/fintech/FintechIntro.jsx b/src/partials/fintech/FintechIntro.jsx
deleted file mode 100644
index 76e4f5b..0000000
--- a/src/partials/fintech/FintechIntro.jsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from 'react';
-
-import UserImage from '../../images/user-64-14.jpg';
-import FintechIcon01 from '../../images/company-icon-01.svg';
-import FintechIcon02 from '../../images/company-icon-02.svg';
-import FintechIcon03 from '../../images/company-icon-03.svg';
-import FintechIcon04 from '../../images/company-icon-04.svg';
-
-function FintechIntro() {
- return (
-
-
-
- {/* Left side */}
-
- {/* Avatar */}
-
-
-
- {/* User info */}
-
-
- Hey Mary ๐, this is your current balance:
-
-
$47,347.09
-
-
- {/* Right side */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Add new user
-
-
-
-
-
-
-
-
-
- );
-}
-
-export default FintechIntro;
diff --git a/src/partials/messages/ChannelMenu.jsx b/src/partials/messages/ChannelMenu.jsx
deleted file mode 100644
index 5fb242c..0000000
--- a/src/partials/messages/ChannelMenu.jsx
+++ /dev/null
@@ -1,108 +0,0 @@
-import React, { useState, useRef, useEffect } from 'react';
-import Transition from '../../utils/Transition';
-
-import ChannelImage from '../../images/user-avatar-32.png';
-import ChannelImage01 from '../../images/channel-01.png';
-import ChannelImage02 from '../../images/channel-02.png';
-import ChannelImage03 from '../../images/channel-03.png';
-
-function ChannelMenu() {
-
- const [dropdownOpen, setDropdownOpen] = useState(false);
-
- const trigger = useRef(null);
- const dropdown = useRef(null);
-
- // close on click outside
- useEffect(() => {
- const clickHandler = ({ target }) => {
- if (!dropdown.current) return;
- if (!dropdownOpen || dropdown.current.contains(target) || trigger.current.contains(target)) return;
- setDropdownOpen(false);
- };
- document.addEventListener('click', clickHandler);
- return () => document.removeEventListener('click', clickHandler);
- });
-
- // close if the esc key is pressed
- useEffect(() => {
- const keyHandler = ({ keyCode }) => {
- if (!dropdownOpen || keyCode !== 27) return;
- setDropdownOpen(false);
- };
- document.addEventListener('keydown', keyHandler);
- return () => document.removeEventListener('keydown', keyHandler);
- });
-
- return (
-
-
setDropdownOpen(!dropdownOpen)}
- aria-expanded={dropdownOpen}
- >
-
-
- #Marketing
-
-
-
-
-
-
-
-
-
- )
-}
-
-export default ChannelMenu;
\ No newline at end of file
diff --git a/src/partials/messages/Channels.jsx b/src/partials/messages/Channels.jsx
deleted file mode 100644
index 75e3245..0000000
--- a/src/partials/messages/Channels.jsx
+++ /dev/null
@@ -1,45 +0,0 @@
-import React from 'react';
-
-function Channels({
- setMsgSidebarOpen
-}) {
- return (
-
-
Channels
-
-
- setMsgSidebarOpen(false)}>
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
- #Development Team
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
-
-
-
- )
-}
-
-export default Channels;
\ No newline at end of file
diff --git a/src/partials/messages/DirectMessages.jsx b/src/partials/messages/DirectMessages.jsx
deleted file mode 100644
index 34bb9cb..0000000
--- a/src/partials/messages/DirectMessages.jsx
+++ /dev/null
@@ -1,106 +0,0 @@
-import React from 'react';
-
-import UserImage01 from '../../images/user-32-01.jpg';
-import UserImage02 from '../../images/user-32-02.jpg';
-import UserImage03 from '../../images/user-32-03.jpg';
-import UserImage04 from '../../images/user-32-04.jpg';
-import UserImage05 from '../../images/user-32-05.jpg';
-import UserImage06 from '../../images/user-32-06.jpg';
-
-function DirectMessages({
- setMsgSidebarOpen
-}) {
- return (
-
-
Direct messages
-
-
- setMsgSidebarOpen(false)}>
-
-
-
- Dominik Lamakani
-
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
-
- Tisha Yanchev
-
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
-
- Jerzy Wierzy
-
-
-
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
-
- Adrian Przetocki
-
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
-
- Simona Lรผrwer
-
-
-
-
-
-
- setMsgSidebarOpen(false)}>
-
-
-
- Mary Roszczewski
-
-
-
-
-
-
-
- )
-}
-
-export default DirectMessages;
\ No newline at end of file
diff --git a/src/partials/messages/MessagesBody.jsx b/src/partials/messages/MessagesBody.jsx
deleted file mode 100644
index 8fc3a85..0000000
--- a/src/partials/messages/MessagesBody.jsx
+++ /dev/null
@@ -1,128 +0,0 @@
-import React from 'react';
-
-import User01 from '../../images/user-40-11.jpg';
-import User02 from '../../images/user-40-12.jpg';
-import ChatImage from '../../images/chat-image.jpg';
-
-function MessagesBody() {
- return (
-
- {/* Chat msg */}
-
-
-
-
- Can anyone help? I have a question about Acme Professional
-
-
-
-
- {/* Chat msg */}
-
-
-
-
- Hey Dominik Lamakani ๐
- Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est ๐
-
-
-
-
- {/* Chat msg */}
-
-
-
-
-
-
- Download
-
-
-
-
-
-
-
-
- {/* Chat msg */}
-
-
-
-
- What do you think? Duis aute irure dolor in reprehenderit ๐ฅ
-
-
-
-
- {/* Chat msg */}
-
-
-
-
- Sed euismod nisi porta lorem mollis. Tellus elementum sagittis vitae et leo duis. Viverra justo nec ultrices dui.
- Sed lectus vestibulum mattis ullamcorper velit sed. Ut sem nulla pharetra diam sit amet ๐
-
-
-
-
- {/* Date separator */}
-
-
- Tuesday, 20 January
-
-
- {/* Chat msg */}
-
-
-
-
- {/* Chat msg */}
-
-
-
-
-
- );
-}
-
-export default MessagesBody;
diff --git a/src/partials/messages/MessagesFooter.jsx b/src/partials/messages/MessagesFooter.jsx
deleted file mode 100644
index e0d4f2b..0000000
--- a/src/partials/messages/MessagesFooter.jsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-
-function MessagesFooter() {
- return (
-
-
- {/* Plus button */}
-
- Add
-
-
-
-
- {/* Message input */}
-
-
-
- );
-}
-
-export default MessagesFooter;
diff --git a/src/partials/messages/MessagesHeader.jsx b/src/partials/messages/MessagesHeader.jsx
deleted file mode 100644
index 3e96812..0000000
--- a/src/partials/messages/MessagesHeader.jsx
+++ /dev/null
@@ -1,55 +0,0 @@
-import React from 'react';
-
-import User01 from '../../images/user-32-01.jpg';
-import User02 from '../../images/user-32-07.jpg';
-
-function MessagesHeader({
- msgSidebarOpen,
- setMsgSidebarOpen
-}) {
- return (
-
-
- {/* People */}
-
- {/* Close button */}
-
setMsgSidebarOpen(!msgSidebarOpen)}
- aria-controls="messages-sidebar"
- aria-expanded={msgSidebarOpen}
- >
- Close sidebar
-
-
-
-
- {/* People list */}
-
-
- {/* Buttons on the right side */}
-
-
-
- );
-}
-
-export default MessagesHeader;
diff --git a/src/partials/messages/MessagesSidebar.jsx b/src/partials/messages/MessagesSidebar.jsx
deleted file mode 100644
index c4d0f11..0000000
--- a/src/partials/messages/MessagesSidebar.jsx
+++ /dev/null
@@ -1,59 +0,0 @@
-import React from 'react';
-import ChannelMenu from './ChannelMenu';
-import DirectMessages from './DirectMessages';
-import Channels from './Channels';
-
-function MessagesSidebar({
- msgSidebarOpen,
- setMsgSidebarOpen
-}) {
- return (
-
- );
-}
-
-export default MessagesSidebar;
diff --git a/src/partials/profile/ProfileTable.jsx b/src/partials/profile/ProfileTable.jsx
index a68ff80..f7307f2 100644
--- a/src/partials/profile/ProfileTable.jsx
+++ b/src/partials/profile/ProfileTable.jsx
@@ -32,8 +32,8 @@ function ProfileTable({
{/* General */}
0 || 'hidden'}`}>
General ๐๏ธ
-
-
+
+
{generalData.map((data) => {
return (
@@ -58,8 +58,8 @@ function ProfileTable({
{/* Nationality */}
0 || 'hidden'}`}>
Nationality ๐๏ธ
-
-
+
+
{nationalityData.map(data => {
return (
@@ -84,8 +84,8 @@ function ProfileTable({
{/* Social */}
0 || 'hidden'}`}>
Social ๐๏ธ
-
-
+
+
{socialData.map(data => {
return (
@@ -110,8 +110,8 @@ function ProfileTable({
{/* Other */}
0 || 'hidden'}`}>
Other ๐๏ธ
-
-
+
+
{otherData.map(data => {
return (