<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>OpenSmarts</title> <!-- Widgets and Main styles --> <link rel="stylesheet" href="styles/main.css" /> <link rel="stylesheet" href="styles/widgets.css" /> <!-- Google Fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet"> <!-- Theme --> <link id="theme" rel="stylesheet" href="styles/themes/base.css" /> </head> <body> <user> <a href="?page=user"> <img id="profile" src="assets/profile.png" /> </a> </user> <nav> <a class="nav-el" href="?page=dashboard">Dashboard</a> <a class="nav-el" href="?page=manage">Manage Devices</a> <a class="nav-el" href="?page=alerts">Alerts</a> <a class="nav-el" href="?page=settings">Settings</a> <a class="nav-el" href="?page=automation">Home Automation</a> </nav> <content style="height:300vh; flex-direction: column; justify-content: space-evenly;"> </content> <script src="scripts/gui-common/color.js"></script> <script src="scripts/gui-common/widgets.js"></script> <script src="scripts/main.js"></script> </body> </html>