initial commit

This commit is contained in:
2025-11-26 09:50:45 +00:00
commit 613dc0e9d0
8 changed files with 68 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM nginx:alpine
WORKDIR /app
COPY ./dist .
COPY ./nginx.conf /etc/nginx/nginx.conf

BIN
dist/images/mac-button.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
dist/images/play-flingue.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
dist/images/windows-button.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

20
dist/index.html vendored Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Play Flingue</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="title">
<img src="images/play-flingue.png" height="60px">
</div>
<div class="embed">
<iframe width="854" height="480" src="https://www.youtube-nocookie.com/embed/DradLhT92go?si=6I6uAQWvuWW5rNwK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div>
<a href="#"><img src="images/windows-button.png" width="250px"></a>
<a href="https://mega.nz/file/DNF20SQR#k28MZcmu1ub-4IZz_IllJEtXD1g1odf-95VNEAEgugY"><img src="images/mac-button.png" width="250px"></a>
</div>
</body>
</html>

10
dist/styles.css vendored Normal file
View File

@@ -0,0 +1,10 @@
body {
background-color: black;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 100vh;
margin: 0;
}

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
flingue-website:
image: lucaasmth/flingue-website
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
networks:
default:
name: scoobydoo
external: true

19
nginx.conf Normal file
View File

@@ -0,0 +1,19 @@
events {}
http {
include mime.types;
sendfile on;
server {
listen 80;
listen [::]:80;
resolver 127.0.0.1;
autoindex off;
server_name _;
server_tokens off;
root /app;
gzip_static on;
}
}