commit 1b2908c5bcd301939145f98438da9cce702ccf52 Author: Lio Date: Wed Oct 2 19:57:25 2024 +0200 need a repo diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..abe5d05 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM node:alpine +WORKDIR / +COPY . . +RUN npm install --global serve +CMD ["serve", "/app"] diff --git a/app/.DS_Store b/app/.DS_Store new file mode 100644 index 0000000..53c9ede Binary files /dev/null and b/app/.DS_Store differ diff --git a/app/.htaccess b/app/.htaccess new file mode 100644 index 0000000..ad72d7f --- /dev/null +++ b/app/.htaccess @@ -0,0 +1,5 @@ +#remove html file extension-e.g. https://example.com/file.html will become https://example.com/file +RewriteEngine on +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME}\.html -f +RewriteRule ^(.*)$ $1.html [NC,L] \ No newline at end of file diff --git a/app/README.md b/app/README.md new file mode 100644 index 0000000..e69de29 diff --git a/app/android-icon-144x144.png b/app/android-icon-144x144.png new file mode 100644 index 0000000..7521eb5 Binary files /dev/null and b/app/android-icon-144x144.png differ diff --git a/app/android-icon-192x192.png b/app/android-icon-192x192.png new file mode 100644 index 0000000..9e14f35 Binary files /dev/null and b/app/android-icon-192x192.png differ diff --git a/app/android-icon-36x36.png b/app/android-icon-36x36.png new file mode 100644 index 0000000..d7fcf5c Binary files /dev/null and b/app/android-icon-36x36.png differ diff --git a/app/android-icon-48x48.png b/app/android-icon-48x48.png new file mode 100644 index 0000000..332e53c Binary files /dev/null and b/app/android-icon-48x48.png differ diff --git a/app/android-icon-72x72.png b/app/android-icon-72x72.png new file mode 100644 index 0000000..7ea69f4 Binary files /dev/null and b/app/android-icon-72x72.png differ diff --git a/app/android-icon-96x96.png b/app/android-icon-96x96.png new file mode 100644 index 0000000..90baa27 Binary files /dev/null and b/app/android-icon-96x96.png differ diff --git a/app/apple-icon-114x114.png b/app/apple-icon-114x114.png new file mode 100644 index 0000000..6515110 Binary files /dev/null and b/app/apple-icon-114x114.png differ diff --git a/app/apple-icon-120x120.png b/app/apple-icon-120x120.png new file mode 100644 index 0000000..36eade1 Binary files /dev/null and b/app/apple-icon-120x120.png differ diff --git a/app/apple-icon-144x144.png b/app/apple-icon-144x144.png new file mode 100644 index 0000000..7521eb5 Binary files /dev/null and b/app/apple-icon-144x144.png differ diff --git a/app/apple-icon-152x152.png b/app/apple-icon-152x152.png new file mode 100644 index 0000000..e1f256b Binary files /dev/null and b/app/apple-icon-152x152.png differ diff --git a/app/apple-icon-180x180.png b/app/apple-icon-180x180.png new file mode 100644 index 0000000..407e59d Binary files /dev/null and b/app/apple-icon-180x180.png differ diff --git a/app/apple-icon-57x57.png b/app/apple-icon-57x57.png new file mode 100644 index 0000000..33ee817 Binary files /dev/null and b/app/apple-icon-57x57.png differ diff --git a/app/apple-icon-60x60.png b/app/apple-icon-60x60.png new file mode 100644 index 0000000..5a1a3a1 Binary files /dev/null and b/app/apple-icon-60x60.png differ diff --git a/app/apple-icon-72x72.png b/app/apple-icon-72x72.png new file mode 100644 index 0000000..7ea69f4 Binary files /dev/null and b/app/apple-icon-72x72.png differ diff --git a/app/apple-icon-76x76.png b/app/apple-icon-76x76.png new file mode 100644 index 0000000..4741549 Binary files /dev/null and b/app/apple-icon-76x76.png differ diff --git a/app/apple-icon-precomposed.png b/app/apple-icon-precomposed.png new file mode 100644 index 0000000..23ac480 Binary files /dev/null and b/app/apple-icon-precomposed.png differ diff --git a/app/apple-icon.png b/app/apple-icon.png new file mode 100644 index 0000000..23ac480 Binary files /dev/null and b/app/apple-icon.png differ diff --git a/app/browserconfig.xml b/app/browserconfig.xml new file mode 100644 index 0000000..c554148 --- /dev/null +++ b/app/browserconfig.xml @@ -0,0 +1,2 @@ + +#ffffff \ No newline at end of file diff --git a/app/contact.html b/app/contact.html new file mode 100644 index 0000000..dcdf3c7 --- /dev/null +++ b/app/contact.html @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + Arte Et Labore + + + + +
+
+
Contact Us
+
Arte Et Labore is available for commissions.

Please contact us at ael@artelabore.online and we will get back to you as soon as possible.

Back to main page
+
+
+ + \ No newline at end of file diff --git a/app/countdown/css/main.css b/app/countdown/css/main.css new file mode 100644 index 0000000..6d8f992 --- /dev/null +++ b/app/countdown/css/main.css @@ -0,0 +1,20 @@ +*, :root, body { + padding: 0; + margin: 0; + background-color:#8487eb; + height: 100%; +} + +object { + outline: none; + width: 100%; +} +object:focus { + outline: none; + } + +.clock-container{ + display: flex; + align-items: center; + justify-content: flex-start; +} \ No newline at end of file diff --git a/app/countdown/fsh/f-count.swf b/app/countdown/fsh/f-count.swf new file mode 100644 index 0000000..3a9c3ce Binary files /dev/null and b/app/countdown/fsh/f-count.swf differ diff --git a/app/countdown/index.html b/app/countdown/index.html new file mode 100644 index 0000000..41c6e31 --- /dev/null +++ b/app/countdown/index.html @@ -0,0 +1,22 @@ + + + + + + Flash Player Death Countdown + + + + +
+ + + + + + + +
+ + + diff --git a/app/ecosystem.config.js b/app/ecosystem.config.js new file mode 100644 index 0000000..8526926 --- /dev/null +++ b/app/ecosystem.config.js @@ -0,0 +1,8 @@ +module.exports = { + script: "serve", + env: { + PM2_SERVE_PATH: '.', + PM2_SERVE_PORT: 8080 + } +} + diff --git a/app/favicon-16x16.png b/app/favicon-16x16.png new file mode 100644 index 0000000..f55aa8e Binary files /dev/null and b/app/favicon-16x16.png differ diff --git a/app/favicon-32x32.png b/app/favicon-32x32.png new file mode 100644 index 0000000..c73d4e1 Binary files /dev/null and b/app/favicon-32x32.png differ diff --git a/app/favicon-96x96.png b/app/favicon-96x96.png new file mode 100644 index 0000000..90baa27 Binary files /dev/null and b/app/favicon-96x96.png differ diff --git a/app/favicon.ico b/app/favicon.ico new file mode 100644 index 0000000..065dad9 Binary files /dev/null and b/app/favicon.ico differ diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..9eb40ad --- /dev/null +++ b/app/index.html @@ -0,0 +1,90 @@ + + + + Arte Et Labore + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + diff --git a/app/manifest.json b/app/manifest.json new file mode 100644 index 0000000..013d4a6 --- /dev/null +++ b/app/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "\/android-icon-36x36.png", + "sizes": "36x36", + "type": "image\/png", + "density": "0.75" + }, + { + "src": "\/android-icon-48x48.png", + "sizes": "48x48", + "type": "image\/png", + "density": "1.0" + }, + { + "src": "\/android-icon-72x72.png", + "sizes": "72x72", + "type": "image\/png", + "density": "1.5" + }, + { + "src": "\/android-icon-96x96.png", + "sizes": "96x96", + "type": "image\/png", + "density": "2.0" + }, + { + "src": "\/android-icon-144x144.png", + "sizes": "144x144", + "type": "image\/png", + "density": "3.0" + }, + { + "src": "\/android-icon-192x192.png", + "sizes": "192x192", + "type": "image\/png", + "density": "4.0" + } + ] +} \ No newline at end of file diff --git a/app/ms-icon-144x144.png b/app/ms-icon-144x144.png new file mode 100644 index 0000000..7521eb5 Binary files /dev/null and b/app/ms-icon-144x144.png differ diff --git a/app/ms-icon-150x150.png b/app/ms-icon-150x150.png new file mode 100644 index 0000000..af0ccff Binary files /dev/null and b/app/ms-icon-150x150.png differ diff --git a/app/ms-icon-310x310.png b/app/ms-icon-310x310.png new file mode 100644 index 0000000..e894ec5 Binary files /dev/null and b/app/ms-icon-310x310.png differ diff --git a/app/ms-icon-70x70.png b/app/ms-icon-70x70.png new file mode 100644 index 0000000..81e1148 Binary files /dev/null and b/app/ms-icon-70x70.png differ diff --git a/app/roster/index.html b/app/roster/index.html new file mode 100644 index 0000000..89c9a39 --- /dev/null +++ b/app/roster/index.html @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + Arte Et Labore + + + + +
+
+
Arte Et Labore Roster

+
+
Arte Et Labore is a design group established in 2019 to promote discussion, collaboration, and passion in design.

Please note that not all members listed are contributing at all times.

Back to main page
+
+
+ + \ No newline at end of file diff --git a/app/roster/sinclair-logo.ttf b/app/roster/sinclair-logo.ttf new file mode 100644 index 0000000..08e79ae Binary files /dev/null and b/app/roster/sinclair-logo.ttf differ diff --git a/app/sinclair-logo.ttf b/app/sinclair-logo.ttf new file mode 100644 index 0000000..08e79ae Binary files /dev/null and b/app/sinclair-logo.ttf differ