diff --git a/src/app/(pages)/detox-zone/page.jsx b/src/app/(pages)/detox-zone/page.jsx new file mode 100644 index 0000000..cf84b3e --- /dev/null +++ b/src/app/(pages)/detox-zone/page.jsx @@ -0,0 +1,120 @@ +"use client" +import React from 'react'; + +const detoxTips = [ + { + id: 1, + title: "Unplug for an Hour a Day", + description: "Take an hour each day to disconnect from all your devices. Use this time to relax, read, or take a walk outside.", + }, + { + id: 2, + title: "Digital-Free Mornings", + description: "Start your mornings without screens. Use this time to meditate, do yoga, or write in a journal.", + }, + { + id: 3, + title: "Set Device-Free Zones", + description: "Create areas in your home where digital devices are not allowed. This can help you maintain a better work-life balance.", + }, + { + id: 4, + title: "Mindfulness Exercises", + description: "Practice mindfulness exercises such as deep breathing or body scans to stay present and reduce stress.", + }, + { + id: 5, + title: "Turn Off Notifications", + description: "Reduce digital stress by turning off non-essential notifications. This helps limit distractions and increases productivity.", + } +]; + +const mindfulnessExercises = [ + { + id: 1, + name: "Deep Breathing Exercise", + description: "Sit comfortably, inhale deeply through your nose for 4 counts, hold for 4 counts, and exhale slowly through your mouth for 4 counts. Repeat for 5 minutes.", + }, + { + id: 2, + name: "Body Scan Meditation", + description: "Lie down or sit comfortably. Focus on each part of your body, starting from your feet and moving up to your head. Notice sensations and release tension.", + }, + { + id: 3, + name: "Mindful Walking", + description: "Take a walk, paying attention to every step, the feeling of your feet on the ground, and the sights, sounds, and smells around you.", + } +]; + +const DigitalDetoxZone = () => { + return ( +
Encourage members to take breaks and care for their mental health with these digital detox tips and mindfulness exercises.
+{tip.description}
+{tip.description}
+{exercise.description}
+