Initial commit: static site + Dockerfile

This commit is contained in:
Keyvan Ebrahimpour 2025-04-09 22:48:11 +00:00
commit 667e6e388e
4 changed files with 43 additions and 0 deletions

2
Dockerfile Normal file
View file

@ -0,0 +1,2 @@
FROM nginx:alpine
COPY . /usr/share/nginx/html

12
index.html Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Avisenna Engineering</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>🚧 This site is under construction. Stay tuned!</h1>
<script src="script.js"></script>
</body>
</html>

7
script.js Normal file
View file

@ -0,0 +1,7 @@
console.log("Avisenna Engineering landing page loaded!");
window.addEventListener('DOMContentLoaded', () => {
const message = document.createElement('p');
message.innerText = "Were glad youre here.";
document.body.appendChild(message);
});

22
style.css Normal file
View file

@ -0,0 +1,22 @@
body {
background-color: #0f172a;
color: #facc15;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
text-align: center;
flex-direction: column;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
font-size: 1.25rem;
}