<!DOCTYPE html>

<html>

<head>

    <title>My Cabin</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            max-width: 600px;

            margin: 100px auto;

            text-align: center;

        }

        a {

            display: inline-block;

            padding: 15px 30px;

            background-color: #0066cc;

            color: white;

            text-decoration: none;

            border-radius: 5px;

            margin-top: 20px;

        }

        a:hover {

            background-color: #0052a3;

        }

    </style>

</head>

<body>

    <h1>Welcome to My Cabin</h1>

    <p>Control and monitor your cabin systems</p>

    <a href="https://ha.lacgoujon.com">Access Home Assistant</a>

</body>

</html>