feat: html template for website display

This commit is contained in:
Ananth Venkatesh 2025-01-25 02:38:46 -05:00
parent 7dfab317a4
commit 5eb72eacb0
Signed by: ananthv
GPG key ID: 4BB578E748CFE4FF

17
src/index.html Normal file
View file

@ -0,0 +1,17 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>MacGregor House</title>
</head>
<body>
<div id="app"></div>
<script src="../result/Main.js"></script>
<script>
var app = Elm.Main.init({
node: document.getElementById("app"),
flags: [window.innerWidth, window.innerHeight],
});
</script>
</body>
</html>