<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>MyLifeTracker - Coming Soon</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            padding: 50px;

            background-color: #f4f4f4;

        }

        .container {

            max-width: 600px;

            margin: auto;

            background: white;

            padding: 30px;

            border-radius: 10px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }

        h1 {

            color: #333;

        }

        p {

            font-size: 18px;

            color: #666;

        }

        .footer {

            margin-top: 20px;

            font-size: 14px;

            color: #999;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Welcome to MyLifeTracker</h1>

        <p>Your personal assistant for managing life’s important things.</p>

        <p>We're working hard to bring you something amazing. Stay tuned!</p>

        <div class="footer">

            &copy; 2025 MyLifeTracker. All rights reserved.

        </div>

    </div>

</body>

</html>