0. Hello World: Update Page Title (Points: 1)

To complete this challenge, please update the websites page title.

Checkout: client/index.html

And update the page title to be any name that you feel will better represent your project.

<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <link rel="icon" type="image/svg+xml" href="/vite.svg" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-   <title>Hack The Tunnels Project</title>
+   <title>Your New Project Title</title>
    </head>
    <body>
        <div id="root"></div>
        <script type="module" src="/src/main.tsx"></script>
    </body>
</html>

Acceptance Criteria:

This challenge will be considered complete if the title of the webpage / the name of their “tab” is anything but “Hack The Tunnels Project”.