From 9221bd9ec3846ddeeb3a77fab0e0e0b12a1bd8d9 Mon Sep 17 00:00:00 2001 From: Lumerel Deploy Date: Sat, 14 Feb 2026 22:47:58 +0000 Subject: [PATCH] Deploy from Lumerel --- .dockerignore | 3 +++ Dockerfile | 7 +++++++ public/css/custom.css | 29 +++++++++++++++++++++++++ public/includes/footer.php | 19 +++++++++++++++++ public/includes/header.php | 41 ++++++++++++++++++++++++++++++++++++ public/index.php | 43 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 142 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 public/css/custom.css create mode 100644 public/includes/footer.php create mode 100644 public/includes/header.php create mode 100644 public/index.php diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..17896fe --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.git +Dockerfile +.dockerignore diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e7469b7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM webdevops/php-nginx:8.3-alpine +ENV WEB_DOCUMENT_ROOT=/app/public +ARG CACHE_BUST=1771109278 +COPY . /app +RUN echo "index index.php index.html index.htm;" > /opt/docker/etc/nginx/vhost.common.d/01-index.conf \ + && echo "add_header Cache-Control 'no-cache, no-store, must-revalidate';" > /opt/docker/etc/nginx/vhost.common.d/02-no-cache.conf \ + && chown -R application:application /app diff --git a/public/css/custom.css b/public/css/custom.css new file mode 100644 index 0000000..aa1f788 --- /dev/null +++ b/public/css/custom.css @@ -0,0 +1,29 @@ +body { + background-color: #f4f6f9; +} + +.hero-section { + background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); + color: white; + padding: 100px 0; + text-align: center; +} + +.service-card { + transition: all 0.3s ease; + margin-bottom: 30px; +} + +.service-card:hover { + transform: translateY(-10px); + box-shadow: 0 10px 20px rgba(0,0,0,0.1); +} + +.social-icons a { + font-size: 1.5rem; + transition: color 0.3s ease; +} + +.social-icons a:hover { + color: #6a11cb !important; +} \ No newline at end of file diff --git a/public/includes/footer.php b/public/includes/footer.php new file mode 100644 index 0000000..494a7f1 --- /dev/null +++ b/public/includes/footer.php @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/public/includes/header.php b/public/includes/header.php new file mode 100644 index 0000000..62b527a --- /dev/null +++ b/public/includes/header.php @@ -0,0 +1,41 @@ + + + + + + Todd Low Media - Web Design & Development Services + + + + + + + + + + + + \ No newline at end of file diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..b18e9fb --- /dev/null +++ b/public/index.php @@ -0,0 +1,43 @@ + + +
+
+

Todd Low Media

+

Crafting Digital Experiences That Inspire

+ Get Started +
+
+ +
+
+
+
+
+ +

Web Development

+

Custom web solutions using modern technologies like PHP, Laravel, React, and Vue.

+
+
+
+
+
+
+ +

Responsive Design

+

Mobile-first, responsive websites that look great on all devices and screen sizes.

+
+
+
+
+
+
+ +

Performance Optimization

+

Fast, efficient websites optimized for speed and search engine performance.

+
+
+
+
+
+ + \ No newline at end of file