This commit is contained in:
Daniel Ledda
2024-10-31 23:46:23 +01:00
parent 314ccaa677
commit bcb820f35e
36 changed files with 4427 additions and 61 deletions

18
public/home/index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>G'day</title>
<link rel="icon" href="icon.webp" />
<link rel="stylesheet" href="/static/styles.css" />
<!-- SSR HEAD OUTLET -->
<script type="module" src="/static/app.js"></script>
</head>
<body>
<main class="container">
<h1>G'day, mate!</h1>
<h2>YOUR SITE GOES HERE</h2>
<img src="/static/image.jpeg" alt="KANGAROO" />
<div id="app-root"><!-- SSR OUTLET --></div>
</main>
</body>
</html>

View File

@@ -0,0 +1,4 @@
import { createSSRApp } from "vue";
import App from "@/App.tsx";
createSSRApp(App).mount("#app-root");

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1,22 @@
.container {
margin: auto;
text-align: center;
width: 100%;
background-color: #fffafa;
box-shadow: #000000;
padding-top: 10px;
min-height: calc(100vh - 10px);
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
@media (min-width: 992px) {
width: 900px;
}
h1 {
margin: 0;
}
}
body {
margin: 0;
}