POC big step
Some checks failed
Build, Push and Run Container / build (push) Failing after 33s

This commit is contained in:
2025-08-12 15:37:07 +02:00
parent efbcbd0915
commit 183d71e203
12 changed files with 12644 additions and 13 deletions

View File

@@ -0,0 +1,40 @@
@page
@model ProofOfConcept.Pages.Index
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Launching soon!</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<link href="assets/css/style.min.css" rel="stylesheet" />
<style>
:root {
--masthead-bg-color: rgba(0, 0, 0, 0.8) ;
--body-bg-color: #455A64 ;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<!-- Background Video-->
<video class="bg-video" playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop"><source src="assets/mp4/bg.mp4" type="video/mp4" /></video>
<!-- Masthead-->
<div class="masthead">
<div class="masthead-content text-white">
<div class="container-fluid px-4 px-lg-0">
<h1 class="lh-1 mb-4">Our website is launching soon..</h1>
<p class="mb-5">We are working hard to finish the development of this site.</p>
<p class="footer"><a href='mailto:info@automatic-parking.app'>info@automatic-parking.app</a> | <a href='https://automatic-parking.app'>automatic-parking.app</a></p>
</div>
</div>
</div>
<script src="assets/js/main.min.js"></script>
</body>
</html>

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace ProofOfConcept.Pages;
public class Index : PageModel
{
public void OnGet()
{
}
}