diff --git a/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx b/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx
index 7983d215..5b5a2acd 100644
--- a/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx
+++ b/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx
@@ -1,19 +1,19 @@
import { useSelector } from 'react-redux'
import { Stack, XStack, YStack } from 'tamagui'
import { CloseCircleIcon } from '@status-im/icons'
-import { Button, InformationBox } from '@status-im/components'
+import { InformationBox } from '@status-im/components'
import type { Property } from 'csstype'
-import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
-import NimbusLogo from '../../components/Logos/NimbusLogo'
-import Titles from '../../components/General/Titles'
import DeviceStorageHealth from '../../components/Charts/DeviceStorageHealth'
import DeviceCPULoad from '../../components/Charts/DeviceCPULoad'
import HealthInfoSection from '../../components/General/HealthInfoSection'
import DeviceMemory from '../../components/Charts/DeviceMemoryHealth'
import DeviceNetworkHealth from '../../components/Charts/DeviceNetworkHealth'
import { RootState } from '../../redux/store'
+import TitleLogo from '../../components/General/TitleLogo'
import { useWindowSize } from '../../hooks/useWindowSize'
+import RightSidebar from '../../components/General/RightSideBar/RightSidebar'
+import LeftSidebar from '../../components/General/LeftSidebar/LeftSidebar'
const DevicesHealthCheck = () => {
const deviceHealthState = useSelector(
@@ -34,24 +34,20 @@ const DevicesHealthCheck = () => {
}
return (
-
+
+
-
-
+ {
icon={}
message="The information provided in the Nodes Health Check is meant to utilized as a guide to guage the readiness of your device, however please do your own due diligence prior to commiting any funds. Read our Health Check Disclosure for more information."
/>
-
-
-
-
+
+
)
}