Initial Commit

This commit is contained in:
2022-07-29 01:36:18 +02:00
commit 6c49c0a8c5
32 changed files with 4398 additions and 0 deletions

36
frontend/index.html Executable file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- stylesheets -->
<link data-trunk data-inline rel="scss" href="/static/styles/common.scss">
<link data-trunk data-inline rel="scss" href="/static/styles/penguin.scss">
<!-- fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu|Ubuntu+Mono&display=swap">
<!-- pwa manifest -->
<link data-trunk rel="copy-file" href="/static/manifest.json">
<link rel="manifest" href="/static/manifest.json">
<!-- copy image directory -->
<link data-trunk rel="copy-dir" href="/static/images">
<!-- image preloading -->
<link rel="preload" href="/images/penguin1.svg" as="image">
<link rel="preload" href="/images/penguin2.svg" as="image">
<link rel="preload" href="/images/penguin3.svg" as="image">
<!-- icon -->
<link rel="icon" type="image/png" href="/images/icon.png">
<title>hemma</title>
<meta name="description" content="Home automation and information">
</head>
<body>
<div id="app", style="width: 100%;"></div>
</body>
</html>