import { motion } from "framer-motion"; import { Activity, ChevronRight, Clock, Eye, Heart, MessageSquare, Target, Trophy, Users, Zap, } from "lucide-react"; import { Footer } from "../components/Footer"; import { Navigation } from "../components/Navigation"; import { Badge } from "../components/ui/badge"; import { Button } from "../components/ui/button"; import { ShimmerButton } from "../components/ui/shimmer-button"; import { useNavigate } from "react-router-dom"; import { Helmet } from "react-helmet-async"; // Fitness & Wellness Hero Section const FitnessWellnessHero = () => { const navigate = useNavigate(); return (
{/* Page Title and Meta Description */} Fitness & Wellness Platforms | WDI – Digital Health Solutions {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */}
Industries • Healthcare

Fitness & Wellness Platforms

Inspire healthier living and build thriving communities with engaging, personalized, and data-driven fitness and wellness digital platforms.

navigate("/start-a-project")} >
Get a Free Consultation

Fitness Dashboard

Personal wellness tracking

Active
Today's Goal Progress
8,432 steps
Goal: 10,000 84% Complete
{[ { name: "Calories Burned", value: "420", unit: "kcal", icon: Zap, color: "orange", }, { name: "Workout Time", value: "45", unit: "min", icon: Clock, color: "blue", }, { name: "Heart Rate", value: "72", unit: "bpm", icon: Heart, color: "red", }, { name: "Sleep Score", value: "8.5", unit: "/10", icon: Activity, color: "green", }, ].map((metric, i) => (
{metric.name}
{metric.value}
{metric.unit}
))}
Recent Activities
{[ { activity: "Morning Yoga", detail: "30 min session completed", time: "2h ago", icon: Heart, color: "purple", }, { activity: "Evening Run", detail: "5K distance covered", time: "1 day ago", icon: Activity, color: "green", }, { activity: "Strength Training", detail: "Upper body workout", time: "2 days ago", icon: Trophy, color: "blue", }, ].map((activity, i) => (
{activity.activity}
{activity.detail}
{activity.time}
))}
Personalized Community Gamified
); }; // Main Fitness & Wellness Page export const FitnessWellnessPlatforms = () => { return (
{/* */}
{/* Additional sections would go here following the same pattern as other industry pages */}
{/*
); };