workerd 0.1.5

personal assistant running on local machine
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Workday is your company</title>
    <style>
        *{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .hello{
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            background: #282828;
            height: 100vh;
        }
    </style>
</head>
<body>
    <div class="hello">workerd is under construct</div>
</body>
</html>